@creator.co/creatorco-prisma-client 1.0.44-alpha-bafa2f4 → 1.0.45

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
@@ -7844,6 +7844,7 @@ export namespace Prisma {
7844
7844
  affiliateClicks: number
7845
7845
  productListItems: number
7846
7846
  ExternalAffiliateClick: number
7847
+ ImpactRadiusEvent: number
7847
7848
  }
7848
7849
 
7849
7850
  export type OptInCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
@@ -7854,6 +7855,7 @@ export namespace Prisma {
7854
7855
  affiliateClicks?: boolean | OptInCountOutputTypeCountAffiliateClicksArgs
7855
7856
  productListItems?: boolean | OptInCountOutputTypeCountProductListItemsArgs
7856
7857
  ExternalAffiliateClick?: boolean | OptInCountOutputTypeCountExternalAffiliateClickArgs
7858
+ ImpactRadiusEvent?: boolean | OptInCountOutputTypeCountImpactRadiusEventArgs
7857
7859
  }
7858
7860
 
7859
7861
  // Custom InputTypes
@@ -7916,6 +7918,13 @@ export namespace Prisma {
7916
7918
  where?: ExternalAffiliateClickWhereInput
7917
7919
  }
7918
7920
 
7921
+ /**
7922
+ * OptInCountOutputType without action
7923
+ */
7924
+ export type OptInCountOutputTypeCountImpactRadiusEventArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
7925
+ where?: ImpactRadiusEventWhereInput
7926
+ }
7927
+
7919
7928
 
7920
7929
  /**
7921
7930
  * Count Type SocialPostCountOutputType
@@ -46913,6 +46922,7 @@ export namespace Prisma {
46913
46922
  affiliateClicks?: boolean | OptIn$affiliateClicksArgs<ExtArgs>
46914
46923
  productListItems?: boolean | OptIn$productListItemsArgs<ExtArgs>
46915
46924
  ExternalAffiliateClick?: boolean | OptIn$ExternalAffiliateClickArgs<ExtArgs>
46925
+ ImpactRadiusEvent?: boolean | OptIn$ImpactRadiusEventArgs<ExtArgs>
46916
46926
  _count?: boolean | OptInCountOutputTypeDefaultArgs<ExtArgs>
46917
46927
  }, ExtArgs["result"]["optIn"]>
46918
46928
 
@@ -46973,6 +46983,7 @@ export namespace Prisma {
46973
46983
  affiliateClicks?: boolean | OptIn$affiliateClicksArgs<ExtArgs>
46974
46984
  productListItems?: boolean | OptIn$productListItemsArgs<ExtArgs>
46975
46985
  ExternalAffiliateClick?: boolean | OptIn$ExternalAffiliateClickArgs<ExtArgs>
46986
+ ImpactRadiusEvent?: boolean | OptIn$ImpactRadiusEventArgs<ExtArgs>
46976
46987
  _count?: boolean | OptInCountOutputTypeDefaultArgs<ExtArgs>
46977
46988
  }
46978
46989
  export type OptInIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
@@ -46995,6 +47006,7 @@ export namespace Prisma {
46995
47006
  affiliateClicks: Prisma.$AffiliateClickPayload<ExtArgs>[]
46996
47007
  productListItems: Prisma.$OptinToProductListItemPayload<ExtArgs>[]
46997
47008
  ExternalAffiliateClick: Prisma.$ExternalAffiliateClickPayload<ExtArgs>[]
47009
+ ImpactRadiusEvent: Prisma.$ImpactRadiusEventPayload<ExtArgs>[]
46998
47010
  }
46999
47011
  scalars: $Extensions.GetPayloadResult<{
47000
47012
  id: number
@@ -47427,6 +47439,8 @@ export namespace Prisma {
47427
47439
 
47428
47440
  ExternalAffiliateClick<T extends OptIn$ExternalAffiliateClickArgs<ExtArgs> = {}>(args?: Subset<T, OptIn$ExternalAffiliateClickArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ExternalAffiliateClickPayload<ExtArgs>, T, 'findMany'> | Null>;
47429
47441
 
47442
+ ImpactRadiusEvent<T extends OptIn$ImpactRadiusEventArgs<ExtArgs> = {}>(args?: Subset<T, OptIn$ImpactRadiusEventArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ImpactRadiusEventPayload<ExtArgs>, T, 'findMany'> | Null>;
47443
+
47430
47444
  /**
47431
47445
  * Attaches callbacks for the resolution and/or rejection of the Promise.
47432
47446
  * @param onfulfilled The callback to execute when the Promise is resolved.
@@ -47960,6 +47974,26 @@ export namespace Prisma {
47960
47974
  distinct?: ExternalAffiliateClickScalarFieldEnum | ExternalAffiliateClickScalarFieldEnum[]
47961
47975
  }
47962
47976
 
47977
+ /**
47978
+ * OptIn.ImpactRadiusEvent
47979
+ */
47980
+ export type OptIn$ImpactRadiusEventArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
47981
+ /**
47982
+ * Select specific fields to fetch from the ImpactRadiusEvent
47983
+ */
47984
+ select?: ImpactRadiusEventSelect<ExtArgs> | null
47985
+ /**
47986
+ * Choose, which related nodes to fetch as well
47987
+ */
47988
+ include?: ImpactRadiusEventInclude<ExtArgs> | null
47989
+ where?: ImpactRadiusEventWhereInput
47990
+ orderBy?: ImpactRadiusEventOrderByWithRelationAndSearchRelevanceInput | ImpactRadiusEventOrderByWithRelationAndSearchRelevanceInput[]
47991
+ cursor?: ImpactRadiusEventWhereUniqueInput
47992
+ take?: number
47993
+ skip?: number
47994
+ distinct?: ImpactRadiusEventScalarFieldEnum | ImpactRadiusEventScalarFieldEnum[]
47995
+ }
47996
+
47963
47997
  /**
47964
47998
  * OptIn without action
47965
47999
  */
@@ -75036,6 +75070,7 @@ export namespace Prisma {
75036
75070
  commission: number | null
75037
75071
  userId: number | null
75038
75072
  brandId: number | null
75073
+ optInId: number | null
75039
75074
  }
75040
75075
 
75041
75076
  export type ImpactRadiusEventSumAggregateOutputType = {
@@ -75044,6 +75079,7 @@ export namespace Prisma {
75044
75079
  commission: number | null
75045
75080
  userId: number | null
75046
75081
  brandId: number | null
75082
+ optInId: number | null
75047
75083
  }
75048
75084
 
75049
75085
  export type ImpactRadiusEventMinAggregateOutputType = {
@@ -75054,6 +75090,7 @@ export namespace Prisma {
75054
75090
  commission: number | null
75055
75091
  userId: number | null
75056
75092
  brandId: number | null
75093
+ optInId: number | null
75057
75094
  }
75058
75095
 
75059
75096
  export type ImpactRadiusEventMaxAggregateOutputType = {
@@ -75064,6 +75101,7 @@ export namespace Prisma {
75064
75101
  commission: number | null
75065
75102
  userId: number | null
75066
75103
  brandId: number | null
75104
+ optInId: number | null
75067
75105
  }
75068
75106
 
75069
75107
  export type ImpactRadiusEventCountAggregateOutputType = {
@@ -75075,6 +75113,7 @@ export namespace Prisma {
75075
75113
  metaData: number
75076
75114
  userId: number
75077
75115
  brandId: number
75116
+ optInId: number
75078
75117
  _all: number
75079
75118
  }
75080
75119
 
@@ -75085,6 +75124,7 @@ export namespace Prisma {
75085
75124
  commission?: true
75086
75125
  userId?: true
75087
75126
  brandId?: true
75127
+ optInId?: true
75088
75128
  }
75089
75129
 
75090
75130
  export type ImpactRadiusEventSumAggregateInputType = {
@@ -75093,6 +75133,7 @@ export namespace Prisma {
75093
75133
  commission?: true
75094
75134
  userId?: true
75095
75135
  brandId?: true
75136
+ optInId?: true
75096
75137
  }
75097
75138
 
75098
75139
  export type ImpactRadiusEventMinAggregateInputType = {
@@ -75103,6 +75144,7 @@ export namespace Prisma {
75103
75144
  commission?: true
75104
75145
  userId?: true
75105
75146
  brandId?: true
75147
+ optInId?: true
75106
75148
  }
75107
75149
 
75108
75150
  export type ImpactRadiusEventMaxAggregateInputType = {
@@ -75113,6 +75155,7 @@ export namespace Prisma {
75113
75155
  commission?: true
75114
75156
  userId?: true
75115
75157
  brandId?: true
75158
+ optInId?: true
75116
75159
  }
75117
75160
 
75118
75161
  export type ImpactRadiusEventCountAggregateInputType = {
@@ -75124,6 +75167,7 @@ export namespace Prisma {
75124
75167
  metaData?: true
75125
75168
  userId?: true
75126
75169
  brandId?: true
75170
+ optInId?: true
75127
75171
  _all?: true
75128
75172
  }
75129
75173
 
@@ -75222,6 +75266,7 @@ export namespace Prisma {
75222
75266
  metaData: JsonValue
75223
75267
  userId: number
75224
75268
  brandId: number | null
75269
+ optInId: number | null
75225
75270
  _count: ImpactRadiusEventCountAggregateOutputType | null
75226
75271
  _avg: ImpactRadiusEventAvgAggregateOutputType | null
75227
75272
  _sum: ImpactRadiusEventSumAggregateOutputType | null
@@ -75252,8 +75297,10 @@ export namespace Prisma {
75252
75297
  metaData?: boolean
75253
75298
  userId?: boolean
75254
75299
  brandId?: boolean
75300
+ optInId?: boolean
75255
75301
  user?: boolean | UserDefaultArgs<ExtArgs>
75256
75302
  brand?: boolean | ImpactRadiusEvent$brandArgs<ExtArgs>
75303
+ optIn?: boolean | ImpactRadiusEvent$optInArgs<ExtArgs>
75257
75304
  }, ExtArgs["result"]["impactRadiusEvent"]>
75258
75305
 
75259
75306
  export type ImpactRadiusEventSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
@@ -75265,8 +75312,10 @@ export namespace Prisma {
75265
75312
  metaData?: boolean
75266
75313
  userId?: boolean
75267
75314
  brandId?: boolean
75315
+ optInId?: boolean
75268
75316
  user?: boolean | UserDefaultArgs<ExtArgs>
75269
75317
  brand?: boolean | ImpactRadiusEvent$brandArgs<ExtArgs>
75318
+ optIn?: boolean | ImpactRadiusEvent$optInArgs<ExtArgs>
75270
75319
  }, ExtArgs["result"]["impactRadiusEvent"]>
75271
75320
 
75272
75321
  export type ImpactRadiusEventSelectScalar = {
@@ -75278,15 +75327,18 @@ export namespace Prisma {
75278
75327
  metaData?: boolean
75279
75328
  userId?: boolean
75280
75329
  brandId?: boolean
75330
+ optInId?: boolean
75281
75331
  }
75282
75332
 
75283
75333
  export type ImpactRadiusEventInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
75284
75334
  user?: boolean | UserDefaultArgs<ExtArgs>
75285
75335
  brand?: boolean | ImpactRadiusEvent$brandArgs<ExtArgs>
75336
+ optIn?: boolean | ImpactRadiusEvent$optInArgs<ExtArgs>
75286
75337
  }
75287
75338
  export type ImpactRadiusEventIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
75288
75339
  user?: boolean | UserDefaultArgs<ExtArgs>
75289
75340
  brand?: boolean | ImpactRadiusEvent$brandArgs<ExtArgs>
75341
+ optIn?: boolean | ImpactRadiusEvent$optInArgs<ExtArgs>
75290
75342
  }
75291
75343
 
75292
75344
  export type $ImpactRadiusEventPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
@@ -75294,6 +75346,7 @@ export namespace Prisma {
75294
75346
  objects: {
75295
75347
  user: Prisma.$UserPayload<ExtArgs>
75296
75348
  brand: Prisma.$BrandPayload<ExtArgs> | null
75349
+ optIn: Prisma.$OptInPayload<ExtArgs> | null
75297
75350
  }
75298
75351
  scalars: $Extensions.GetPayloadResult<{
75299
75352
  id: number
@@ -75304,6 +75357,7 @@ export namespace Prisma {
75304
75357
  metaData: Prisma.JsonValue
75305
75358
  userId: number
75306
75359
  brandId: number | null
75360
+ optInId: number | null
75307
75361
  }, ExtArgs["result"]["impactRadiusEvent"]>
75308
75362
  composites: {}
75309
75363
  }
@@ -75698,6 +75752,8 @@ export namespace Prisma {
75698
75752
 
75699
75753
  brand<T extends ImpactRadiusEvent$brandArgs<ExtArgs> = {}>(args?: Subset<T, ImpactRadiusEvent$brandArgs<ExtArgs>>): Prisma__BrandClient<$Result.GetResult<Prisma.$BrandPayload<ExtArgs>, T, 'findUniqueOrThrow'> | null, null, ExtArgs>;
75700
75754
 
75755
+ optIn<T extends ImpactRadiusEvent$optInArgs<ExtArgs> = {}>(args?: Subset<T, ImpactRadiusEvent$optInArgs<ExtArgs>>): Prisma__OptInClient<$Result.GetResult<Prisma.$OptInPayload<ExtArgs>, T, 'findUniqueOrThrow'> | null, null, ExtArgs>;
75756
+
75701
75757
  /**
75702
75758
  * Attaches callbacks for the resolution and/or rejection of the Promise.
75703
75759
  * @param onfulfilled The callback to execute when the Promise is resolved.
@@ -75734,6 +75790,7 @@ export namespace Prisma {
75734
75790
  readonly metaData: FieldRef<"ImpactRadiusEvent", 'Json'>
75735
75791
  readonly userId: FieldRef<"ImpactRadiusEvent", 'Int'>
75736
75792
  readonly brandId: FieldRef<"ImpactRadiusEvent", 'Int'>
75793
+ readonly optInId: FieldRef<"ImpactRadiusEvent", 'Int'>
75737
75794
  }
75738
75795
 
75739
75796
 
@@ -76066,6 +76123,21 @@ export namespace Prisma {
76066
76123
  where?: BrandWhereInput
76067
76124
  }
76068
76125
 
76126
+ /**
76127
+ * ImpactRadiusEvent.optIn
76128
+ */
76129
+ export type ImpactRadiusEvent$optInArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
76130
+ /**
76131
+ * Select specific fields to fetch from the OptIn
76132
+ */
76133
+ select?: OptInSelect<ExtArgs> | null
76134
+ /**
76135
+ * Choose, which related nodes to fetch as well
76136
+ */
76137
+ include?: OptInInclude<ExtArgs> | null
76138
+ where?: OptInWhereInput
76139
+ }
76140
+
76069
76141
  /**
76070
76142
  * ImpactRadiusEvent without action
76071
76143
  */
@@ -87411,7 +87483,8 @@ export namespace Prisma {
87411
87483
  commission: 'commission',
87412
87484
  metaData: 'metaData',
87413
87485
  userId: 'userId',
87414
- brandId: 'brandId'
87486
+ brandId: 'brandId',
87487
+ optInId: 'optInId'
87415
87488
  };
87416
87489
 
87417
87490
  export type ImpactRadiusEventScalarFieldEnum = (typeof ImpactRadiusEventScalarFieldEnum)[keyof typeof ImpactRadiusEventScalarFieldEnum]
@@ -91262,6 +91335,7 @@ export namespace Prisma {
91262
91335
  affiliateClicks?: AffiliateClickListRelationFilter
91263
91336
  productListItems?: OptinToProductListItemListRelationFilter
91264
91337
  ExternalAffiliateClick?: ExternalAffiliateClickListRelationFilter
91338
+ ImpactRadiusEvent?: ImpactRadiusEventListRelationFilter
91265
91339
  }
91266
91340
 
91267
91341
  export type OptInOrderByWithRelationAndSearchRelevanceInput = {
@@ -91294,6 +91368,7 @@ export namespace Prisma {
91294
91368
  affiliateClicks?: AffiliateClickOrderByRelationAggregateInput
91295
91369
  productListItems?: OptinToProductListItemOrderByRelationAggregateInput
91296
91370
  ExternalAffiliateClick?: ExternalAffiliateClickOrderByRelationAggregateInput
91371
+ ImpactRadiusEvent?: ImpactRadiusEventOrderByRelationAggregateInput
91297
91372
  _relevance?: OptInOrderByRelevanceInput
91298
91373
  }
91299
91374
 
@@ -91330,6 +91405,7 @@ export namespace Prisma {
91330
91405
  affiliateClicks?: AffiliateClickListRelationFilter
91331
91406
  productListItems?: OptinToProductListItemListRelationFilter
91332
91407
  ExternalAffiliateClick?: ExternalAffiliateClickListRelationFilter
91408
+ ImpactRadiusEvent?: ImpactRadiusEventListRelationFilter
91333
91409
  }, "id">
91334
91410
 
91335
91411
  export type OptInOrderByWithAggregationInput = {
@@ -93449,8 +93525,10 @@ export namespace Prisma {
93449
93525
  metaData?: JsonFilter<"ImpactRadiusEvent">
93450
93526
  userId?: IntFilter<"ImpactRadiusEvent"> | number
93451
93527
  brandId?: IntNullableFilter<"ImpactRadiusEvent"> | number | null
93528
+ optInId?: IntNullableFilter<"ImpactRadiusEvent"> | number | null
93452
93529
  user?: XOR<UserRelationFilter, UserWhereInput>
93453
93530
  brand?: XOR<BrandNullableRelationFilter, BrandWhereInput> | null
93531
+ optIn?: XOR<OptInNullableRelationFilter, OptInWhereInput> | null
93454
93532
  }
93455
93533
 
93456
93534
  export type ImpactRadiusEventOrderByWithRelationAndSearchRelevanceInput = {
@@ -93462,8 +93540,10 @@ export namespace Prisma {
93462
93540
  metaData?: SortOrder
93463
93541
  userId?: SortOrder
93464
93542
  brandId?: SortOrderInput | SortOrder
93543
+ optInId?: SortOrderInput | SortOrder
93465
93544
  user?: UserOrderByWithRelationAndSearchRelevanceInput
93466
93545
  brand?: BrandOrderByWithRelationAndSearchRelevanceInput
93546
+ optIn?: OptInOrderByWithRelationAndSearchRelevanceInput
93467
93547
  _relevance?: ImpactRadiusEventOrderByRelevanceInput
93468
93548
  }
93469
93549
 
@@ -93479,8 +93559,10 @@ export namespace Prisma {
93479
93559
  metaData?: JsonFilter<"ImpactRadiusEvent">
93480
93560
  userId?: IntFilter<"ImpactRadiusEvent"> | number
93481
93561
  brandId?: IntNullableFilter<"ImpactRadiusEvent"> | number | null
93562
+ optInId?: IntNullableFilter<"ImpactRadiusEvent"> | number | null
93482
93563
  user?: XOR<UserRelationFilter, UserWhereInput>
93483
93564
  brand?: XOR<BrandNullableRelationFilter, BrandWhereInput> | null
93565
+ optIn?: XOR<OptInNullableRelationFilter, OptInWhereInput> | null
93484
93566
  }, "id">
93485
93567
 
93486
93568
  export type ImpactRadiusEventOrderByWithAggregationInput = {
@@ -93492,6 +93574,7 @@ export namespace Prisma {
93492
93574
  metaData?: SortOrder
93493
93575
  userId?: SortOrder
93494
93576
  brandId?: SortOrderInput | SortOrder
93577
+ optInId?: SortOrderInput | SortOrder
93495
93578
  _count?: ImpactRadiusEventCountOrderByAggregateInput
93496
93579
  _avg?: ImpactRadiusEventAvgOrderByAggregateInput
93497
93580
  _max?: ImpactRadiusEventMaxOrderByAggregateInput
@@ -93511,6 +93594,7 @@ export namespace Prisma {
93511
93594
  metaData?: JsonWithAggregatesFilter<"ImpactRadiusEvent">
93512
93595
  userId?: IntWithAggregatesFilter<"ImpactRadiusEvent"> | number
93513
93596
  brandId?: IntNullableWithAggregatesFilter<"ImpactRadiusEvent"> | number | null
93597
+ optInId?: IntNullableWithAggregatesFilter<"ImpactRadiusEvent"> | number | null
93514
93598
  }
93515
93599
 
93516
93600
  export type CreatorSearchFilterWhereInput = {
@@ -97376,6 +97460,7 @@ export namespace Prisma {
97376
97460
  affiliateClicks?: AffiliateClickCreateNestedManyWithoutOptinInput
97377
97461
  productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
97378
97462
  ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
97463
+ ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
97379
97464
  }
97380
97465
 
97381
97466
  export type OptInUncheckedCreateInput = {
@@ -97405,6 +97490,7 @@ export namespace Prisma {
97405
97490
  affiliateClicks?: AffiliateClickUncheckedCreateNestedManyWithoutOptinInput
97406
97491
  productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
97407
97492
  ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
97493
+ ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
97408
97494
  }
97409
97495
 
97410
97496
  export type OptInUpdateInput = {
@@ -97433,6 +97519,7 @@ export namespace Prisma {
97433
97519
  affiliateClicks?: AffiliateClickUpdateManyWithoutOptinNestedInput
97434
97520
  productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
97435
97521
  ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
97522
+ ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
97436
97523
  }
97437
97524
 
97438
97525
  export type OptInUncheckedUpdateInput = {
@@ -97462,6 +97549,7 @@ export namespace Prisma {
97462
97549
  affiliateClicks?: AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
97463
97550
  productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
97464
97551
  ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
97552
+ ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
97465
97553
  }
97466
97554
 
97467
97555
  export type OptInCreateManyInput = {
@@ -99617,6 +99705,7 @@ export namespace Prisma {
99617
99705
  metaData?: JsonNullValueInput | InputJsonValue
99618
99706
  user: UserCreateNestedOneWithoutImpactRadiusEventsInput
99619
99707
  brand?: BrandCreateNestedOneWithoutImpactRadiusEventsInput
99708
+ optIn?: OptInCreateNestedOneWithoutImpactRadiusEventInput
99620
99709
  }
99621
99710
 
99622
99711
  export type ImpactRadiusEventUncheckedCreateInput = {
@@ -99628,6 +99717,7 @@ export namespace Prisma {
99628
99717
  metaData?: JsonNullValueInput | InputJsonValue
99629
99718
  userId: number
99630
99719
  brandId?: number | null
99720
+ optInId?: number | null
99631
99721
  }
99632
99722
 
99633
99723
  export type ImpactRadiusEventUpdateInput = {
@@ -99638,6 +99728,7 @@ export namespace Prisma {
99638
99728
  metaData?: JsonNullValueInput | InputJsonValue
99639
99729
  user?: UserUpdateOneRequiredWithoutImpactRadiusEventsNestedInput
99640
99730
  brand?: BrandUpdateOneWithoutImpactRadiusEventsNestedInput
99731
+ optIn?: OptInUpdateOneWithoutImpactRadiusEventNestedInput
99641
99732
  }
99642
99733
 
99643
99734
  export type ImpactRadiusEventUncheckedUpdateInput = {
@@ -99649,6 +99740,7 @@ export namespace Prisma {
99649
99740
  metaData?: JsonNullValueInput | InputJsonValue
99650
99741
  userId?: IntFieldUpdateOperationsInput | number
99651
99742
  brandId?: NullableIntFieldUpdateOperationsInput | number | null
99743
+ optInId?: NullableIntFieldUpdateOperationsInput | number | null
99652
99744
  }
99653
99745
 
99654
99746
  export type ImpactRadiusEventCreateManyInput = {
@@ -99660,6 +99752,7 @@ export namespace Prisma {
99660
99752
  metaData?: JsonNullValueInput | InputJsonValue
99661
99753
  userId: number
99662
99754
  brandId?: number | null
99755
+ optInId?: number | null
99663
99756
  }
99664
99757
 
99665
99758
  export type ImpactRadiusEventUpdateManyMutationInput = {
@@ -99679,6 +99772,7 @@ export namespace Prisma {
99679
99772
  metaData?: JsonNullValueInput | InputJsonValue
99680
99773
  userId?: IntFieldUpdateOperationsInput | number
99681
99774
  brandId?: NullableIntFieldUpdateOperationsInput | number | null
99775
+ optInId?: NullableIntFieldUpdateOperationsInput | number | null
99682
99776
  }
99683
99777
 
99684
99778
  export type CreatorSearchFilterCreateInput = {
@@ -104773,6 +104867,7 @@ export namespace Prisma {
104773
104867
  metaData?: SortOrder
104774
104868
  userId?: SortOrder
104775
104869
  brandId?: SortOrder
104870
+ optInId?: SortOrder
104776
104871
  }
104777
104872
 
104778
104873
  export type ImpactRadiusEventAvgOrderByAggregateInput = {
@@ -104781,6 +104876,7 @@ export namespace Prisma {
104781
104876
  commission?: SortOrder
104782
104877
  userId?: SortOrder
104783
104878
  brandId?: SortOrder
104879
+ optInId?: SortOrder
104784
104880
  }
104785
104881
 
104786
104882
  export type ImpactRadiusEventMaxOrderByAggregateInput = {
@@ -104791,6 +104887,7 @@ export namespace Prisma {
104791
104887
  commission?: SortOrder
104792
104888
  userId?: SortOrder
104793
104889
  brandId?: SortOrder
104890
+ optInId?: SortOrder
104794
104891
  }
104795
104892
 
104796
104893
  export type ImpactRadiusEventMinOrderByAggregateInput = {
@@ -104801,6 +104898,7 @@ export namespace Prisma {
104801
104898
  commission?: SortOrder
104802
104899
  userId?: SortOrder
104803
104900
  brandId?: SortOrder
104901
+ optInId?: SortOrder
104804
104902
  }
104805
104903
 
104806
104904
  export type ImpactRadiusEventSumOrderByAggregateInput = {
@@ -104809,6 +104907,7 @@ export namespace Prisma {
104809
104907
  commission?: SortOrder
104810
104908
  userId?: SortOrder
104811
104909
  brandId?: SortOrder
104910
+ optInId?: SortOrder
104812
104911
  }
104813
104912
 
104814
104913
  export type CreatorSearchFilterOrderByRelevanceInput = {
@@ -109280,6 +109379,13 @@ export namespace Prisma {
109280
109379
  connect?: ExternalAffiliateClickWhereUniqueInput | ExternalAffiliateClickWhereUniqueInput[]
109281
109380
  }
109282
109381
 
109382
+ export type ImpactRadiusEventCreateNestedManyWithoutOptInInput = {
109383
+ create?: XOR<ImpactRadiusEventCreateWithoutOptInInput, ImpactRadiusEventUncheckedCreateWithoutOptInInput> | ImpactRadiusEventCreateWithoutOptInInput[] | ImpactRadiusEventUncheckedCreateWithoutOptInInput[]
109384
+ connectOrCreate?: ImpactRadiusEventCreateOrConnectWithoutOptInInput | ImpactRadiusEventCreateOrConnectWithoutOptInInput[]
109385
+ createMany?: ImpactRadiusEventCreateManyOptInInputEnvelope
109386
+ connect?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
109387
+ }
109388
+
109283
109389
  export type OptInVariableUncheckedCreateNestedManyWithoutOptInInput = {
109284
109390
  create?: XOR<OptInVariableCreateWithoutOptInInput, OptInVariableUncheckedCreateWithoutOptInInput> | OptInVariableCreateWithoutOptInInput[] | OptInVariableUncheckedCreateWithoutOptInInput[]
109285
109391
  connectOrCreate?: OptInVariableCreateOrConnectWithoutOptInInput | OptInVariableCreateOrConnectWithoutOptInInput[]
@@ -109335,6 +109441,13 @@ export namespace Prisma {
109335
109441
  connect?: ExternalAffiliateClickWhereUniqueInput | ExternalAffiliateClickWhereUniqueInput[]
109336
109442
  }
109337
109443
 
109444
+ export type ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput = {
109445
+ create?: XOR<ImpactRadiusEventCreateWithoutOptInInput, ImpactRadiusEventUncheckedCreateWithoutOptInInput> | ImpactRadiusEventCreateWithoutOptInInput[] | ImpactRadiusEventUncheckedCreateWithoutOptInInput[]
109446
+ connectOrCreate?: ImpactRadiusEventCreateOrConnectWithoutOptInInput | ImpactRadiusEventCreateOrConnectWithoutOptInInput[]
109447
+ createMany?: ImpactRadiusEventCreateManyOptInInputEnvelope
109448
+ connect?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
109449
+ }
109450
+
109338
109451
  export type UserUpdateOneRequiredWithoutOptInsNestedInput = {
109339
109452
  create?: XOR<UserCreateWithoutOptInsInput, UserUncheckedCreateWithoutOptInsInput>
109340
109453
  connectOrCreate?: UserCreateOrConnectWithoutOptInsInput
@@ -109469,6 +109582,20 @@ export namespace Prisma {
109469
109582
  deleteMany?: ExternalAffiliateClickScalarWhereInput | ExternalAffiliateClickScalarWhereInput[]
109470
109583
  }
109471
109584
 
109585
+ export type ImpactRadiusEventUpdateManyWithoutOptInNestedInput = {
109586
+ create?: XOR<ImpactRadiusEventCreateWithoutOptInInput, ImpactRadiusEventUncheckedCreateWithoutOptInInput> | ImpactRadiusEventCreateWithoutOptInInput[] | ImpactRadiusEventUncheckedCreateWithoutOptInInput[]
109587
+ connectOrCreate?: ImpactRadiusEventCreateOrConnectWithoutOptInInput | ImpactRadiusEventCreateOrConnectWithoutOptInInput[]
109588
+ upsert?: ImpactRadiusEventUpsertWithWhereUniqueWithoutOptInInput | ImpactRadiusEventUpsertWithWhereUniqueWithoutOptInInput[]
109589
+ createMany?: ImpactRadiusEventCreateManyOptInInputEnvelope
109590
+ set?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
109591
+ disconnect?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
109592
+ delete?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
109593
+ connect?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
109594
+ update?: ImpactRadiusEventUpdateWithWhereUniqueWithoutOptInInput | ImpactRadiusEventUpdateWithWhereUniqueWithoutOptInInput[]
109595
+ updateMany?: ImpactRadiusEventUpdateManyWithWhereWithoutOptInInput | ImpactRadiusEventUpdateManyWithWhereWithoutOptInInput[]
109596
+ deleteMany?: ImpactRadiusEventScalarWhereInput | ImpactRadiusEventScalarWhereInput[]
109597
+ }
109598
+
109472
109599
  export type OptInVariableUncheckedUpdateManyWithoutOptInNestedInput = {
109473
109600
  create?: XOR<OptInVariableCreateWithoutOptInInput, OptInVariableUncheckedCreateWithoutOptInInput> | OptInVariableCreateWithoutOptInInput[] | OptInVariableUncheckedCreateWithoutOptInInput[]
109474
109601
  connectOrCreate?: OptInVariableCreateOrConnectWithoutOptInInput | OptInVariableCreateOrConnectWithoutOptInInput[]
@@ -109577,6 +109704,20 @@ export namespace Prisma {
109577
109704
  deleteMany?: ExternalAffiliateClickScalarWhereInput | ExternalAffiliateClickScalarWhereInput[]
109578
109705
  }
109579
109706
 
109707
+ export type ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput = {
109708
+ create?: XOR<ImpactRadiusEventCreateWithoutOptInInput, ImpactRadiusEventUncheckedCreateWithoutOptInInput> | ImpactRadiusEventCreateWithoutOptInInput[] | ImpactRadiusEventUncheckedCreateWithoutOptInInput[]
109709
+ connectOrCreate?: ImpactRadiusEventCreateOrConnectWithoutOptInInput | ImpactRadiusEventCreateOrConnectWithoutOptInInput[]
109710
+ upsert?: ImpactRadiusEventUpsertWithWhereUniqueWithoutOptInInput | ImpactRadiusEventUpsertWithWhereUniqueWithoutOptInInput[]
109711
+ createMany?: ImpactRadiusEventCreateManyOptInInputEnvelope
109712
+ set?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
109713
+ disconnect?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
109714
+ delete?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
109715
+ connect?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
109716
+ update?: ImpactRadiusEventUpdateWithWhereUniqueWithoutOptInInput | ImpactRadiusEventUpdateWithWhereUniqueWithoutOptInInput[]
109717
+ updateMany?: ImpactRadiusEventUpdateManyWithWhereWithoutOptInInput | ImpactRadiusEventUpdateManyWithWhereWithoutOptInInput[]
109718
+ deleteMany?: ImpactRadiusEventScalarWhereInput | ImpactRadiusEventScalarWhereInput[]
109719
+ }
109720
+
109580
109721
  export type OptInCreateNestedOneWithoutTrolleyPaymentsInput = {
109581
109722
  create?: XOR<OptInCreateWithoutTrolleyPaymentsInput, OptInUncheckedCreateWithoutTrolleyPaymentsInput>
109582
109723
  connectOrCreate?: OptInCreateOrConnectWithoutTrolleyPaymentsInput
@@ -110853,6 +110994,12 @@ export namespace Prisma {
110853
110994
  connect?: BrandWhereUniqueInput
110854
110995
  }
110855
110996
 
110997
+ export type OptInCreateNestedOneWithoutImpactRadiusEventInput = {
110998
+ create?: XOR<OptInCreateWithoutImpactRadiusEventInput, OptInUncheckedCreateWithoutImpactRadiusEventInput>
110999
+ connectOrCreate?: OptInCreateOrConnectWithoutImpactRadiusEventInput
111000
+ connect?: OptInWhereUniqueInput
111001
+ }
111002
+
110856
111003
  export type UserUpdateOneRequiredWithoutImpactRadiusEventsNestedInput = {
110857
111004
  create?: XOR<UserCreateWithoutImpactRadiusEventsInput, UserUncheckedCreateWithoutImpactRadiusEventsInput>
110858
111005
  connectOrCreate?: UserCreateOrConnectWithoutImpactRadiusEventsInput
@@ -110871,6 +111018,16 @@ export namespace Prisma {
110871
111018
  update?: XOR<XOR<BrandUpdateToOneWithWhereWithoutImpactRadiusEventsInput, BrandUpdateWithoutImpactRadiusEventsInput>, BrandUncheckedUpdateWithoutImpactRadiusEventsInput>
110872
111019
  }
110873
111020
 
111021
+ export type OptInUpdateOneWithoutImpactRadiusEventNestedInput = {
111022
+ create?: XOR<OptInCreateWithoutImpactRadiusEventInput, OptInUncheckedCreateWithoutImpactRadiusEventInput>
111023
+ connectOrCreate?: OptInCreateOrConnectWithoutImpactRadiusEventInput
111024
+ upsert?: OptInUpsertWithoutImpactRadiusEventInput
111025
+ disconnect?: OptInWhereInput | boolean
111026
+ delete?: OptInWhereInput | boolean
111027
+ connect?: OptInWhereUniqueInput
111028
+ update?: XOR<XOR<OptInUpdateToOneWithWhereWithoutImpactRadiusEventInput, OptInUpdateWithoutImpactRadiusEventInput>, OptInUncheckedUpdateWithoutImpactRadiusEventInput>
111029
+ }
111030
+
110874
111031
  export type BrandCreateNestedOneWithoutCreatorsearchfilterInput = {
110875
111032
  create?: XOR<BrandCreateWithoutCreatorsearchfilterInput, BrandUncheckedCreateWithoutCreatorsearchfilterInput>
110876
111033
  connectOrCreate?: BrandCreateOrConnectWithoutCreatorsearchfilterInput
@@ -112374,6 +112531,7 @@ export namespace Prisma {
112374
112531
  affiliateClicks?: AffiliateClickCreateNestedManyWithoutOptinInput
112375
112532
  productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
112376
112533
  ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
112534
+ ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
112377
112535
  }
112378
112536
 
112379
112537
  export type OptInUncheckedCreateWithoutUserInput = {
@@ -112402,6 +112560,7 @@ export namespace Prisma {
112402
112560
  affiliateClicks?: AffiliateClickUncheckedCreateNestedManyWithoutOptinInput
112403
112561
  productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
112404
112562
  ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
112563
+ ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
112405
112564
  }
112406
112565
 
112407
112566
  export type OptInCreateOrConnectWithoutUserInput = {
@@ -112791,6 +112950,7 @@ export namespace Prisma {
112791
112950
  commission?: number | null
112792
112951
  metaData?: JsonNullValueInput | InputJsonValue
112793
112952
  brand?: BrandCreateNestedOneWithoutImpactRadiusEventsInput
112953
+ optIn?: OptInCreateNestedOneWithoutImpactRadiusEventInput
112794
112954
  }
112795
112955
 
112796
112956
  export type ImpactRadiusEventUncheckedCreateWithoutUserInput = {
@@ -112801,6 +112961,7 @@ export namespace Prisma {
112801
112961
  commission?: number | null
112802
112962
  metaData?: JsonNullValueInput | InputJsonValue
112803
112963
  brandId?: number | null
112964
+ optInId?: number | null
112804
112965
  }
112805
112966
 
112806
112967
  export type ImpactRadiusEventCreateOrConnectWithoutUserInput = {
@@ -113708,6 +113869,7 @@ export namespace Prisma {
113708
113869
  metaData?: JsonFilter<"ImpactRadiusEvent">
113709
113870
  userId?: IntFilter<"ImpactRadiusEvent"> | number
113710
113871
  brandId?: IntNullableFilter<"ImpactRadiusEvent"> | number | null
113872
+ optInId?: IntNullableFilter<"ImpactRadiusEvent"> | number | null
113711
113873
  }
113712
113874
 
113713
113875
  export type UserCreateWithoutLogsInput = {
@@ -116954,6 +117116,7 @@ export namespace Prisma {
116954
117116
  commission?: number | null
116955
117117
  metaData?: JsonNullValueInput | InputJsonValue
116956
117118
  user: UserCreateNestedOneWithoutImpactRadiusEventsInput
117119
+ optIn?: OptInCreateNestedOneWithoutImpactRadiusEventInput
116957
117120
  }
116958
117121
 
116959
117122
  export type ImpactRadiusEventUncheckedCreateWithoutBrandInput = {
@@ -116964,6 +117127,7 @@ export namespace Prisma {
116964
117127
  commission?: number | null
116965
117128
  metaData?: JsonNullValueInput | InputJsonValue
116966
117129
  userId: number
117130
+ optInId?: number | null
116967
117131
  }
116968
117132
 
116969
117133
  export type ImpactRadiusEventCreateOrConnectWithoutBrandInput = {
@@ -119320,6 +119484,7 @@ export namespace Prisma {
119320
119484
  affiliateClicks?: AffiliateClickCreateNestedManyWithoutOptinInput
119321
119485
  productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
119322
119486
  ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
119487
+ ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
119323
119488
  }
119324
119489
 
119325
119490
  export type OptInUncheckedCreateWithoutChatInput = {
@@ -119348,6 +119513,7 @@ export namespace Prisma {
119348
119513
  affiliateClicks?: AffiliateClickUncheckedCreateNestedManyWithoutOptinInput
119349
119514
  productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
119350
119515
  ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
119516
+ ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
119351
119517
  }
119352
119518
 
119353
119519
  export type OptInCreateOrConnectWithoutChatInput = {
@@ -119422,6 +119588,7 @@ export namespace Prisma {
119422
119588
  affiliateClicks?: AffiliateClickUpdateManyWithoutOptinNestedInput
119423
119589
  productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
119424
119590
  ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
119591
+ ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
119425
119592
  }
119426
119593
 
119427
119594
  export type OptInUncheckedUpdateWithoutChatInput = {
@@ -119450,6 +119617,7 @@ export namespace Prisma {
119450
119617
  affiliateClicks?: AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
119451
119618
  productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
119452
119619
  ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
119620
+ ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
119453
119621
  }
119454
119622
 
119455
119623
  export type MessageUpsertWithWhereUniqueWithoutChatInput = {
@@ -119780,6 +119948,7 @@ export namespace Prisma {
119780
119948
  affiliateClicks?: AffiliateClickCreateNestedManyWithoutOptinInput
119781
119949
  productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
119782
119950
  ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
119951
+ ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
119783
119952
  }
119784
119953
 
119785
119954
  export type OptInUncheckedCreateWithoutCampaignInput = {
@@ -119808,6 +119977,7 @@ export namespace Prisma {
119808
119977
  affiliateClicks?: AffiliateClickUncheckedCreateNestedManyWithoutOptinInput
119809
119978
  productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
119810
119979
  ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
119980
+ ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
119811
119981
  }
119812
119982
 
119813
119983
  export type OptInCreateOrConnectWithoutCampaignInput = {
@@ -123329,6 +123499,7 @@ export namespace Prisma {
123329
123499
  trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
123330
123500
  affiliateClicks?: AffiliateClickCreateNestedManyWithoutOptinInput
123331
123501
  ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
123502
+ ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
123332
123503
  }
123333
123504
 
123334
123505
  export type OptInUncheckedCreateWithoutProductListItemsInput = {
@@ -123357,6 +123528,7 @@ export namespace Prisma {
123357
123528
  trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
123358
123529
  affiliateClicks?: AffiliateClickUncheckedCreateNestedManyWithoutOptinInput
123359
123530
  ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
123531
+ ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
123360
123532
  }
123361
123533
 
123362
123534
  export type OptInCreateOrConnectWithoutProductListItemsInput = {
@@ -123422,6 +123594,7 @@ export namespace Prisma {
123422
123594
  trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
123423
123595
  affiliateClicks?: AffiliateClickUpdateManyWithoutOptinNestedInput
123424
123596
  ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
123597
+ ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
123425
123598
  }
123426
123599
 
123427
123600
  export type OptInUncheckedUpdateWithoutProductListItemsInput = {
@@ -123450,6 +123623,7 @@ export namespace Prisma {
123450
123623
  trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
123451
123624
  affiliateClicks?: AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
123452
123625
  ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
123626
+ ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
123453
123627
  }
123454
123628
 
123455
123629
  export type ProductListItemUpsertWithoutOptinsInput = {
@@ -124208,6 +124382,7 @@ export namespace Prisma {
124208
124382
  affiliateClicks?: AffiliateClickCreateNestedManyWithoutOptinInput
124209
124383
  productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
124210
124384
  ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
124385
+ ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
124211
124386
  }
124212
124387
 
124213
124388
  export type OptInUncheckedCreateWithoutCurrentStepInput = {
@@ -124236,6 +124411,7 @@ export namespace Prisma {
124236
124411
  affiliateClicks?: AffiliateClickUncheckedCreateNestedManyWithoutOptinInput
124237
124412
  productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
124238
124413
  ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
124414
+ ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
124239
124415
  }
124240
124416
 
124241
124417
  export type OptInCreateOrConnectWithoutCurrentStepInput = {
@@ -124520,6 +124696,7 @@ export namespace Prisma {
124520
124696
  affiliateClicks?: AffiliateClickCreateNestedManyWithoutOptinInput
124521
124697
  productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
124522
124698
  ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
124699
+ ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
124523
124700
  }
124524
124701
 
124525
124702
  export type OptInUncheckedCreateWithoutOptInStepsInput = {
@@ -124548,6 +124725,7 @@ export namespace Prisma {
124548
124725
  affiliateClicks?: AffiliateClickUncheckedCreateNestedManyWithoutOptinInput
124549
124726
  productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
124550
124727
  ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
124728
+ ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
124551
124729
  }
124552
124730
 
124553
124731
  export type OptInCreateOrConnectWithoutOptInStepsInput = {
@@ -124623,6 +124801,7 @@ export namespace Prisma {
124623
124801
  affiliateClicks?: AffiliateClickUpdateManyWithoutOptinNestedInput
124624
124802
  productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
124625
124803
  ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
124804
+ ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
124626
124805
  }
124627
124806
 
124628
124807
  export type OptInUncheckedUpdateWithoutOptInStepsInput = {
@@ -124651,6 +124830,7 @@ export namespace Prisma {
124651
124830
  affiliateClicks?: AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
124652
124831
  productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
124653
124832
  ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
124833
+ ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
124654
124834
  }
124655
124835
 
124656
124836
  export type CampaignStepUpsertWithoutOptInStepsInput = {
@@ -125265,6 +125445,37 @@ export namespace Prisma {
125265
125445
  skipDuplicates?: boolean
125266
125446
  }
125267
125447
 
125448
+ export type ImpactRadiusEventCreateWithoutOptInInput = {
125449
+ type: string
125450
+ created?: Date | string
125451
+ amount?: number | null
125452
+ commission?: number | null
125453
+ metaData?: JsonNullValueInput | InputJsonValue
125454
+ user: UserCreateNestedOneWithoutImpactRadiusEventsInput
125455
+ brand?: BrandCreateNestedOneWithoutImpactRadiusEventsInput
125456
+ }
125457
+
125458
+ export type ImpactRadiusEventUncheckedCreateWithoutOptInInput = {
125459
+ id?: number
125460
+ type: string
125461
+ created?: Date | string
125462
+ amount?: number | null
125463
+ commission?: number | null
125464
+ metaData?: JsonNullValueInput | InputJsonValue
125465
+ userId: number
125466
+ brandId?: number | null
125467
+ }
125468
+
125469
+ export type ImpactRadiusEventCreateOrConnectWithoutOptInInput = {
125470
+ where: ImpactRadiusEventWhereUniqueInput
125471
+ create: XOR<ImpactRadiusEventCreateWithoutOptInInput, ImpactRadiusEventUncheckedCreateWithoutOptInInput>
125472
+ }
125473
+
125474
+ export type ImpactRadiusEventCreateManyOptInInputEnvelope = {
125475
+ data: ImpactRadiusEventCreateManyOptInInput | ImpactRadiusEventCreateManyOptInInput[]
125476
+ skipDuplicates?: boolean
125477
+ }
125478
+
125268
125479
  export type UserUpsertWithoutOptInsInput = {
125269
125480
  update: XOR<UserUpdateWithoutOptInsInput, UserUncheckedUpdateWithoutOptInsInput>
125270
125481
  create: XOR<UserCreateWithoutOptInsInput, UserUncheckedCreateWithoutOptInsInput>
@@ -125715,6 +125926,22 @@ export namespace Prisma {
125715
125926
  data: XOR<ExternalAffiliateClickUpdateManyMutationInput, ExternalAffiliateClickUncheckedUpdateManyWithoutOptinInput>
125716
125927
  }
125717
125928
 
125929
+ export type ImpactRadiusEventUpsertWithWhereUniqueWithoutOptInInput = {
125930
+ where: ImpactRadiusEventWhereUniqueInput
125931
+ update: XOR<ImpactRadiusEventUpdateWithoutOptInInput, ImpactRadiusEventUncheckedUpdateWithoutOptInInput>
125932
+ create: XOR<ImpactRadiusEventCreateWithoutOptInInput, ImpactRadiusEventUncheckedCreateWithoutOptInInput>
125933
+ }
125934
+
125935
+ export type ImpactRadiusEventUpdateWithWhereUniqueWithoutOptInInput = {
125936
+ where: ImpactRadiusEventWhereUniqueInput
125937
+ data: XOR<ImpactRadiusEventUpdateWithoutOptInInput, ImpactRadiusEventUncheckedUpdateWithoutOptInInput>
125938
+ }
125939
+
125940
+ export type ImpactRadiusEventUpdateManyWithWhereWithoutOptInInput = {
125941
+ where: ImpactRadiusEventScalarWhereInput
125942
+ data: XOR<ImpactRadiusEventUpdateManyMutationInput, ImpactRadiusEventUncheckedUpdateManyWithoutOptInInput>
125943
+ }
125944
+
125718
125945
  export type OptInCreateWithoutTrolleyPaymentsInput = {
125719
125946
  status?: string
125720
125947
  created?: Date | string
@@ -125740,6 +125967,7 @@ export namespace Prisma {
125740
125967
  affiliateClicks?: AffiliateClickCreateNestedManyWithoutOptinInput
125741
125968
  productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
125742
125969
  ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
125970
+ ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
125743
125971
  }
125744
125972
 
125745
125973
  export type OptInUncheckedCreateWithoutTrolleyPaymentsInput = {
@@ -125768,6 +125996,7 @@ export namespace Prisma {
125768
125996
  affiliateClicks?: AffiliateClickUncheckedCreateNestedManyWithoutOptinInput
125769
125997
  productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
125770
125998
  ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
125999
+ ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
125771
126000
  }
125772
126001
 
125773
126002
  export type OptInCreateOrConnectWithoutTrolleyPaymentsInput = {
@@ -125811,6 +126040,7 @@ export namespace Prisma {
125811
126040
  affiliateClicks?: AffiliateClickUpdateManyWithoutOptinNestedInput
125812
126041
  productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
125813
126042
  ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
126043
+ ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
125814
126044
  }
125815
126045
 
125816
126046
  export type OptInUncheckedUpdateWithoutTrolleyPaymentsInput = {
@@ -125839,6 +126069,7 @@ export namespace Prisma {
125839
126069
  affiliateClicks?: AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
125840
126070
  productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
125841
126071
  ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
126072
+ ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
125842
126073
  }
125843
126074
 
125844
126075
  export type OptInCreateWithoutVariablesInput = {
@@ -125866,6 +126097,7 @@ export namespace Prisma {
125866
126097
  affiliateClicks?: AffiliateClickCreateNestedManyWithoutOptinInput
125867
126098
  productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
125868
126099
  ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
126100
+ ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
125869
126101
  }
125870
126102
 
125871
126103
  export type OptInUncheckedCreateWithoutVariablesInput = {
@@ -125894,6 +126126,7 @@ export namespace Prisma {
125894
126126
  affiliateClicks?: AffiliateClickUncheckedCreateNestedManyWithoutOptinInput
125895
126127
  productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
125896
126128
  ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
126129
+ ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
125897
126130
  }
125898
126131
 
125899
126132
  export type OptInCreateOrConnectWithoutVariablesInput = {
@@ -125979,6 +126212,7 @@ export namespace Prisma {
125979
126212
  affiliateClicks?: AffiliateClickUpdateManyWithoutOptinNestedInput
125980
126213
  productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
125981
126214
  ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
126215
+ ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
125982
126216
  }
125983
126217
 
125984
126218
  export type OptInUncheckedUpdateWithoutVariablesInput = {
@@ -126007,6 +126241,7 @@ export namespace Prisma {
126007
126241
  affiliateClicks?: AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
126008
126242
  productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
126009
126243
  ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
126244
+ ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
126010
126245
  }
126011
126246
 
126012
126247
  export type VariableUpsertWithoutOptInVariablesInput = {
@@ -127315,6 +127550,7 @@ export namespace Prisma {
127315
127550
  trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
127316
127551
  affiliateClicks?: AffiliateClickCreateNestedManyWithoutOptinInput
127317
127552
  productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
127553
+ ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
127318
127554
  }
127319
127555
 
127320
127556
  export type OptInUncheckedCreateWithoutExternalAffiliateClickInput = {
@@ -127343,6 +127579,7 @@ export namespace Prisma {
127343
127579
  trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
127344
127580
  affiliateClicks?: AffiliateClickUncheckedCreateNestedManyWithoutOptinInput
127345
127581
  productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
127582
+ ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
127346
127583
  }
127347
127584
 
127348
127585
  export type OptInCreateOrConnectWithoutExternalAffiliateClickInput = {
@@ -127532,6 +127769,7 @@ export namespace Prisma {
127532
127769
  trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
127533
127770
  affiliateClicks?: AffiliateClickUpdateManyWithoutOptinNestedInput
127534
127771
  productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
127772
+ ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
127535
127773
  }
127536
127774
 
127537
127775
  export type OptInUncheckedUpdateWithoutExternalAffiliateClickInput = {
@@ -127560,6 +127798,7 @@ export namespace Prisma {
127560
127798
  trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
127561
127799
  affiliateClicks?: AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
127562
127800
  productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
127801
+ ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
127563
127802
  }
127564
127803
 
127565
127804
  export type CampaignUpsertWithoutExternalAffiliateClickInput = {
@@ -128273,6 +128512,7 @@ export namespace Prisma {
128273
128512
  trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
128274
128513
  productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
128275
128514
  ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
128515
+ ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
128276
128516
  }
128277
128517
 
128278
128518
  export type OptInUncheckedCreateWithoutAffiliateClicksInput = {
@@ -128301,6 +128541,7 @@ export namespace Prisma {
128301
128541
  trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
128302
128542
  productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
128303
128543
  ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
128544
+ ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
128304
128545
  }
128305
128546
 
128306
128547
  export type OptInCreateOrConnectWithoutAffiliateClicksInput = {
@@ -128397,6 +128638,7 @@ export namespace Prisma {
128397
128638
  trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
128398
128639
  productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
128399
128640
  ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
128641
+ ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
128400
128642
  }
128401
128643
 
128402
128644
  export type OptInUncheckedUpdateWithoutAffiliateClicksInput = {
@@ -128425,6 +128667,7 @@ export namespace Prisma {
128425
128667
  trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
128426
128668
  productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
128427
128669
  ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
128670
+ ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
128428
128671
  }
128429
128672
 
128430
128673
  export type AffiliateLinkUpsertWithoutAffiliateClicksInput = {
@@ -129010,6 +129253,7 @@ export namespace Prisma {
129010
129253
  affiliateClicks?: AffiliateClickCreateNestedManyWithoutOptinInput
129011
129254
  productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
129012
129255
  ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
129256
+ ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
129013
129257
  }
129014
129258
 
129015
129259
  export type OptInUncheckedCreateWithoutCampaignInvitesInput = {
@@ -129038,6 +129282,7 @@ export namespace Prisma {
129038
129282
  affiliateClicks?: AffiliateClickUncheckedCreateNestedManyWithoutOptinInput
129039
129283
  productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
129040
129284
  ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
129285
+ ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
129041
129286
  }
129042
129287
 
129043
129288
  export type OptInCreateOrConnectWithoutCampaignInvitesInput = {
@@ -129375,6 +129620,7 @@ export namespace Prisma {
129375
129620
  affiliateClicks?: AffiliateClickUpdateManyWithoutOptinNestedInput
129376
129621
  productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
129377
129622
  ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
129623
+ ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
129378
129624
  }
129379
129625
 
129380
129626
  export type OptInUncheckedUpdateWithoutCampaignInvitesInput = {
@@ -129403,6 +129649,7 @@ export namespace Prisma {
129403
129649
  affiliateClicks?: AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
129404
129650
  productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
129405
129651
  ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
129652
+ ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
129406
129653
  }
129407
129654
 
129408
129655
  export type CreatorListItemCreateWithoutCreatorListInput = {
@@ -132072,6 +132319,68 @@ export namespace Prisma {
132072
132319
  create: XOR<BrandCreateWithoutImpactRadiusEventsInput, BrandUncheckedCreateWithoutImpactRadiusEventsInput>
132073
132320
  }
132074
132321
 
132322
+ export type OptInCreateWithoutImpactRadiusEventInput = {
132323
+ status?: string
132324
+ created?: Date | string
132325
+ activated?: Date | string | null
132326
+ completed?: Date | string | null
132327
+ cancelled?: Date | string | null
132328
+ cancelledData?: JsonNullValueInput | InputJsonValue
132329
+ cancelRequested?: Date | string | null
132330
+ reinvited?: Date | string | null
132331
+ seen?: boolean
132332
+ instructions?: string | null
132333
+ paymentAmount?: number | null
132334
+ paymentStatus?: string
132335
+ extraData?: JsonNullValueInput | InputJsonValue
132336
+ favoritedDate?: Date | string | null
132337
+ user: UserCreateNestedOneWithoutOptInsInput
132338
+ campaign: CampaignCreateNestedOneWithoutOptInsInput
132339
+ currentStep?: CampaignStepCreateNestedOneWithoutCurrentOptInsInput
132340
+ variables?: OptInVariableCreateNestedManyWithoutOptInInput
132341
+ optInSteps?: OptInStepCreateNestedManyWithoutOptInInput
132342
+ chat?: ChatCreateNestedOneWithoutOptInInput
132343
+ campaignInvites?: CampaignInviteCreateNestedManyWithoutOptInInput
132344
+ trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
132345
+ affiliateClicks?: AffiliateClickCreateNestedManyWithoutOptinInput
132346
+ productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
132347
+ ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
132348
+ }
132349
+
132350
+ export type OptInUncheckedCreateWithoutImpactRadiusEventInput = {
132351
+ id?: number
132352
+ status?: string
132353
+ created?: Date | string
132354
+ activated?: Date | string | null
132355
+ completed?: Date | string | null
132356
+ cancelled?: Date | string | null
132357
+ cancelledData?: JsonNullValueInput | InputJsonValue
132358
+ cancelRequested?: Date | string | null
132359
+ reinvited?: Date | string | null
132360
+ seen?: boolean
132361
+ instructions?: string | null
132362
+ paymentAmount?: number | null
132363
+ paymentStatus?: string
132364
+ extraData?: JsonNullValueInput | InputJsonValue
132365
+ favoritedDate?: Date | string | null
132366
+ userId: number
132367
+ campaignId: number
132368
+ currentStepId?: number | null
132369
+ variables?: OptInVariableUncheckedCreateNestedManyWithoutOptInInput
132370
+ optInSteps?: OptInStepUncheckedCreateNestedManyWithoutOptInInput
132371
+ chat?: ChatUncheckedCreateNestedOneWithoutOptInInput
132372
+ campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutOptInInput
132373
+ trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
132374
+ affiliateClicks?: AffiliateClickUncheckedCreateNestedManyWithoutOptinInput
132375
+ productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
132376
+ ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
132377
+ }
132378
+
132379
+ export type OptInCreateOrConnectWithoutImpactRadiusEventInput = {
132380
+ where: OptInWhereUniqueInput
132381
+ create: XOR<OptInCreateWithoutImpactRadiusEventInput, OptInUncheckedCreateWithoutImpactRadiusEventInput>
132382
+ }
132383
+
132075
132384
  export type UserUpsertWithoutImpactRadiusEventsInput = {
132076
132385
  update: XOR<UserUpdateWithoutImpactRadiusEventsInput, UserUncheckedUpdateWithoutImpactRadiusEventsInput>
132077
132386
  create: XOR<UserCreateWithoutImpactRadiusEventsInput, UserUncheckedCreateWithoutImpactRadiusEventsInput>
@@ -132256,6 +132565,74 @@ export namespace Prisma {
132256
132565
  childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
132257
132566
  }
132258
132567
 
132568
+ export type OptInUpsertWithoutImpactRadiusEventInput = {
132569
+ update: XOR<OptInUpdateWithoutImpactRadiusEventInput, OptInUncheckedUpdateWithoutImpactRadiusEventInput>
132570
+ create: XOR<OptInCreateWithoutImpactRadiusEventInput, OptInUncheckedCreateWithoutImpactRadiusEventInput>
132571
+ where?: OptInWhereInput
132572
+ }
132573
+
132574
+ export type OptInUpdateToOneWithWhereWithoutImpactRadiusEventInput = {
132575
+ where?: OptInWhereInput
132576
+ data: XOR<OptInUpdateWithoutImpactRadiusEventInput, OptInUncheckedUpdateWithoutImpactRadiusEventInput>
132577
+ }
132578
+
132579
+ export type OptInUpdateWithoutImpactRadiusEventInput = {
132580
+ status?: StringFieldUpdateOperationsInput | string
132581
+ created?: DateTimeFieldUpdateOperationsInput | Date | string
132582
+ activated?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
132583
+ completed?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
132584
+ cancelled?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
132585
+ cancelledData?: JsonNullValueInput | InputJsonValue
132586
+ cancelRequested?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
132587
+ reinvited?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
132588
+ seen?: BoolFieldUpdateOperationsInput | boolean
132589
+ instructions?: NullableStringFieldUpdateOperationsInput | string | null
132590
+ paymentAmount?: NullableFloatFieldUpdateOperationsInput | number | null
132591
+ paymentStatus?: StringFieldUpdateOperationsInput | string
132592
+ extraData?: JsonNullValueInput | InputJsonValue
132593
+ favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
132594
+ user?: UserUpdateOneRequiredWithoutOptInsNestedInput
132595
+ campaign?: CampaignUpdateOneRequiredWithoutOptInsNestedInput
132596
+ currentStep?: CampaignStepUpdateOneWithoutCurrentOptInsNestedInput
132597
+ variables?: OptInVariableUpdateManyWithoutOptInNestedInput
132598
+ optInSteps?: OptInStepUpdateManyWithoutOptInNestedInput
132599
+ chat?: ChatUpdateOneWithoutOptInNestedInput
132600
+ campaignInvites?: CampaignInviteUpdateManyWithoutOptInNestedInput
132601
+ trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
132602
+ affiliateClicks?: AffiliateClickUpdateManyWithoutOptinNestedInput
132603
+ productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
132604
+ ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
132605
+ }
132606
+
132607
+ export type OptInUncheckedUpdateWithoutImpactRadiusEventInput = {
132608
+ id?: IntFieldUpdateOperationsInput | number
132609
+ status?: StringFieldUpdateOperationsInput | string
132610
+ created?: DateTimeFieldUpdateOperationsInput | Date | string
132611
+ activated?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
132612
+ completed?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
132613
+ cancelled?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
132614
+ cancelledData?: JsonNullValueInput | InputJsonValue
132615
+ cancelRequested?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
132616
+ reinvited?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
132617
+ seen?: BoolFieldUpdateOperationsInput | boolean
132618
+ instructions?: NullableStringFieldUpdateOperationsInput | string | null
132619
+ paymentAmount?: NullableFloatFieldUpdateOperationsInput | number | null
132620
+ paymentStatus?: StringFieldUpdateOperationsInput | string
132621
+ extraData?: JsonNullValueInput | InputJsonValue
132622
+ favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
132623
+ userId?: IntFieldUpdateOperationsInput | number
132624
+ campaignId?: IntFieldUpdateOperationsInput | number
132625
+ currentStepId?: NullableIntFieldUpdateOperationsInput | number | null
132626
+ variables?: OptInVariableUncheckedUpdateManyWithoutOptInNestedInput
132627
+ optInSteps?: OptInStepUncheckedUpdateManyWithoutOptInNestedInput
132628
+ chat?: ChatUncheckedUpdateOneWithoutOptInNestedInput
132629
+ campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutOptInNestedInput
132630
+ trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
132631
+ affiliateClicks?: AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
132632
+ productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
132633
+ ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
132634
+ }
132635
+
132259
132636
  export type BrandCreateWithoutCreatorsearchfilterInput = {
132260
132637
  name: string
132261
132638
  description?: string | null
@@ -134720,6 +135097,7 @@ export namespace Prisma {
134720
135097
  commission?: number | null
134721
135098
  metaData?: JsonNullValueInput | InputJsonValue
134722
135099
  brandId?: number | null
135100
+ optInId?: number | null
134723
135101
  }
134724
135102
 
134725
135103
  export type UserUpdateWithoutReferrerInput = {
@@ -134886,6 +135264,7 @@ export namespace Prisma {
134886
135264
  affiliateClicks?: AffiliateClickUpdateManyWithoutOptinNestedInput
134887
135265
  productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
134888
135266
  ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
135267
+ ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
134889
135268
  }
134890
135269
 
134891
135270
  export type OptInUncheckedUpdateWithoutUserInput = {
@@ -134914,6 +135293,7 @@ export namespace Prisma {
134914
135293
  affiliateClicks?: AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
134915
135294
  productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
134916
135295
  ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
135296
+ ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
134917
135297
  }
134918
135298
 
134919
135299
  export type OptInUncheckedUpdateManyWithoutUserInput = {
@@ -135354,6 +135734,7 @@ export namespace Prisma {
135354
135734
  commission?: NullableFloatFieldUpdateOperationsInput | number | null
135355
135735
  metaData?: JsonNullValueInput | InputJsonValue
135356
135736
  brand?: BrandUpdateOneWithoutImpactRadiusEventsNestedInput
135737
+ optIn?: OptInUpdateOneWithoutImpactRadiusEventNestedInput
135357
135738
  }
135358
135739
 
135359
135740
  export type ImpactRadiusEventUncheckedUpdateWithoutUserInput = {
@@ -135364,6 +135745,7 @@ export namespace Prisma {
135364
135745
  commission?: NullableFloatFieldUpdateOperationsInput | number | null
135365
135746
  metaData?: JsonNullValueInput | InputJsonValue
135366
135747
  brandId?: NullableIntFieldUpdateOperationsInput | number | null
135748
+ optInId?: NullableIntFieldUpdateOperationsInput | number | null
135367
135749
  }
135368
135750
 
135369
135751
  export type ImpactRadiusEventUncheckedUpdateManyWithoutUserInput = {
@@ -135374,6 +135756,7 @@ export namespace Prisma {
135374
135756
  commission?: NullableFloatFieldUpdateOperationsInput | number | null
135375
135757
  metaData?: JsonNullValueInput | InputJsonValue
135376
135758
  brandId?: NullableIntFieldUpdateOperationsInput | number | null
135759
+ optInId?: NullableIntFieldUpdateOperationsInput | number | null
135377
135760
  }
135378
135761
 
135379
135762
  export type CreatorToCategoryCreateManyCreatorProfileInput = {
@@ -135586,6 +135969,7 @@ export namespace Prisma {
135586
135969
  commission?: number | null
135587
135970
  metaData?: JsonNullValueInput | InputJsonValue
135588
135971
  userId: number
135972
+ optInId?: number | null
135589
135973
  }
135590
135974
 
135591
135975
  export type ShopifyStoreCreateManyBrandInput = {
@@ -136232,6 +136616,7 @@ export namespace Prisma {
136232
136616
  commission?: NullableFloatFieldUpdateOperationsInput | number | null
136233
136617
  metaData?: JsonNullValueInput | InputJsonValue
136234
136618
  user?: UserUpdateOneRequiredWithoutImpactRadiusEventsNestedInput
136619
+ optIn?: OptInUpdateOneWithoutImpactRadiusEventNestedInput
136235
136620
  }
136236
136621
 
136237
136622
  export type ImpactRadiusEventUncheckedUpdateWithoutBrandInput = {
@@ -136242,6 +136627,7 @@ export namespace Prisma {
136242
136627
  commission?: NullableFloatFieldUpdateOperationsInput | number | null
136243
136628
  metaData?: JsonNullValueInput | InputJsonValue
136244
136629
  userId?: IntFieldUpdateOperationsInput | number
136630
+ optInId?: NullableIntFieldUpdateOperationsInput | number | null
136245
136631
  }
136246
136632
 
136247
136633
  export type ImpactRadiusEventUncheckedUpdateManyWithoutBrandInput = {
@@ -136252,6 +136638,7 @@ export namespace Prisma {
136252
136638
  commission?: NullableFloatFieldUpdateOperationsInput | number | null
136253
136639
  metaData?: JsonNullValueInput | InputJsonValue
136254
136640
  userId?: IntFieldUpdateOperationsInput | number
136641
+ optInId?: NullableIntFieldUpdateOperationsInput | number | null
136255
136642
  }
136256
136643
 
136257
136644
  export type ShopifyStoreUpdateWithoutBrandInput = {
@@ -136701,6 +137088,7 @@ export namespace Prisma {
136701
137088
  affiliateClicks?: AffiliateClickUpdateManyWithoutOptinNestedInput
136702
137089
  productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
136703
137090
  ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
137091
+ ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
136704
137092
  }
136705
137093
 
136706
137094
  export type OptInUncheckedUpdateWithoutCampaignInput = {
@@ -136729,6 +137117,7 @@ export namespace Prisma {
136729
137117
  affiliateClicks?: AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
136730
137118
  productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
136731
137119
  ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
137120
+ ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
136732
137121
  }
136733
137122
 
136734
137123
  export type OptInUncheckedUpdateManyWithoutCampaignInput = {
@@ -137383,6 +137772,7 @@ export namespace Prisma {
137383
137772
  affiliateClicks?: AffiliateClickUpdateManyWithoutOptinNestedInput
137384
137773
  productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
137385
137774
  ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
137775
+ ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
137386
137776
  }
137387
137777
 
137388
137778
  export type OptInUncheckedUpdateWithoutCurrentStepInput = {
@@ -137411,6 +137801,7 @@ export namespace Prisma {
137411
137801
  affiliateClicks?: AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
137412
137802
  productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
137413
137803
  ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
137804
+ ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
137414
137805
  }
137415
137806
 
137416
137807
  export type OptInUncheckedUpdateManyWithoutCurrentStepInput = {
@@ -137563,6 +137954,17 @@ export namespace Prisma {
137563
137954
  campaignId: number
137564
137955
  }
137565
137956
 
137957
+ export type ImpactRadiusEventCreateManyOptInInput = {
137958
+ id?: number
137959
+ type: string
137960
+ created?: Date | string
137961
+ amount?: number | null
137962
+ commission?: number | null
137963
+ metaData?: JsonNullValueInput | InputJsonValue
137964
+ userId: number
137965
+ brandId?: number | null
137966
+ }
137967
+
137566
137968
  export type OptInVariableUpdateWithoutOptInInput = {
137567
137969
  variable?: VariableUpdateOneRequiredWithoutOptInVariablesNestedInput
137568
137970
  selectedOption?: VariableOptionUpdateOneRequiredWithoutOptInVariablesNestedInput
@@ -137736,6 +138138,38 @@ export namespace Prisma {
137736
138138
  campaignId?: IntFieldUpdateOperationsInput | number
137737
138139
  }
137738
138140
 
138141
+ export type ImpactRadiusEventUpdateWithoutOptInInput = {
138142
+ type?: StringFieldUpdateOperationsInput | string
138143
+ created?: DateTimeFieldUpdateOperationsInput | Date | string
138144
+ amount?: NullableFloatFieldUpdateOperationsInput | number | null
138145
+ commission?: NullableFloatFieldUpdateOperationsInput | number | null
138146
+ metaData?: JsonNullValueInput | InputJsonValue
138147
+ user?: UserUpdateOneRequiredWithoutImpactRadiusEventsNestedInput
138148
+ brand?: BrandUpdateOneWithoutImpactRadiusEventsNestedInput
138149
+ }
138150
+
138151
+ export type ImpactRadiusEventUncheckedUpdateWithoutOptInInput = {
138152
+ id?: IntFieldUpdateOperationsInput | number
138153
+ type?: StringFieldUpdateOperationsInput | string
138154
+ created?: DateTimeFieldUpdateOperationsInput | Date | string
138155
+ amount?: NullableFloatFieldUpdateOperationsInput | number | null
138156
+ commission?: NullableFloatFieldUpdateOperationsInput | number | null
138157
+ metaData?: JsonNullValueInput | InputJsonValue
138158
+ userId?: IntFieldUpdateOperationsInput | number
138159
+ brandId?: NullableIntFieldUpdateOperationsInput | number | null
138160
+ }
138161
+
138162
+ export type ImpactRadiusEventUncheckedUpdateManyWithoutOptInInput = {
138163
+ id?: IntFieldUpdateOperationsInput | number
138164
+ type?: StringFieldUpdateOperationsInput | string
138165
+ created?: DateTimeFieldUpdateOperationsInput | Date | string
138166
+ amount?: NullableFloatFieldUpdateOperationsInput | number | null
138167
+ commission?: NullableFloatFieldUpdateOperationsInput | number | null
138168
+ metaData?: JsonNullValueInput | InputJsonValue
138169
+ userId?: IntFieldUpdateOperationsInput | number
138170
+ brandId?: NullableIntFieldUpdateOperationsInput | number | null
138171
+ }
138172
+
137739
138173
  export type ListToSocialPostCreateManySocialPostInput = {
137740
138174
  id?: number
137741
138175
  listId: number