@creator.co/creatorco-prisma-client 1.0.19 → 1.0.20
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/edge.d.ts +1 -1
- package/edge.js +12 -12
- package/index-browser.js +20 -19
- package/index.d.ts +456 -84
- package/index.js +13 -13
- package/libquery_engine-darwin-arm64.dylib.node +0 -0
- package/libquery_engine-darwin.dylib.node +0 -0
- package/libquery_engine-debian-openssl-3.0.x.so.node +0 -0
- package/libquery_engine-linux-arm64-openssl-1.0.x.so.node +0 -0
- package/libquery_engine-linux-arm64-openssl-3.0.x.so.node +0 -0
- package/libquery_engine-linux-musl-arm64-openssl-3.0.x.so.node +0 -0
- package/package.json +2 -67
- package/query_engine-windows.dll.node +0 -0
- package/runtime/edge-esm.js +74 -27
- package/runtime/edge.js +74 -27
- package/runtime/index-browser.js +1 -1
- package/runtime/library.d.ts +152 -207
- package/runtime/library.js +57 -59
- package/schema.prisma +5 -1
- package/default.d.ts +0 -1
- package/default.js +0 -1
- package/runtime/wasm.js +0 -94
- package/wasm.d.ts +0 -1
- package/wasm.js +0 -1274
package/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Client
|
|
4
4
|
**/
|
|
5
5
|
|
|
6
|
-
import * as runtime from './runtime/library
|
|
6
|
+
import * as runtime from './runtime/library';
|
|
7
7
|
import $Types = runtime.Types // general types
|
|
8
8
|
import $Public = runtime.Types.Public
|
|
9
9
|
import $Utils = runtime.Types.Utils
|
|
@@ -1125,8 +1125,8 @@ export namespace Prisma {
|
|
|
1125
1125
|
export import Exact = $Public.Exact
|
|
1126
1126
|
|
|
1127
1127
|
/**
|
|
1128
|
-
* Prisma Client JS version: 5.
|
|
1129
|
-
* Query Engine version:
|
|
1128
|
+
* Prisma Client JS version: 5.6.0
|
|
1129
|
+
* Query Engine version: e95e739751f42d8ca026f6b910f5a2dc5adeaeee
|
|
1130
1130
|
*/
|
|
1131
1131
|
export type PrismaVersion = {
|
|
1132
1132
|
client: string
|
|
@@ -6579,6 +6579,7 @@ export namespace Prisma {
|
|
|
6579
6579
|
optInSteps: number
|
|
6580
6580
|
campaignInvites: number
|
|
6581
6581
|
trolleyPayments: number
|
|
6582
|
+
affiliateClicks: number
|
|
6582
6583
|
}
|
|
6583
6584
|
|
|
6584
6585
|
export type OptInCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -6586,6 +6587,7 @@ export namespace Prisma {
|
|
|
6586
6587
|
optInSteps?: boolean | OptInCountOutputTypeCountOptInStepsArgs
|
|
6587
6588
|
campaignInvites?: boolean | OptInCountOutputTypeCountCampaignInvitesArgs
|
|
6588
6589
|
trolleyPayments?: boolean | OptInCountOutputTypeCountTrolleyPaymentsArgs
|
|
6590
|
+
affiliateClicks?: boolean | OptInCountOutputTypeCountAffiliateClicksArgs
|
|
6589
6591
|
}
|
|
6590
6592
|
|
|
6591
6593
|
// Custom InputTypes
|
|
@@ -6633,6 +6635,14 @@ export namespace Prisma {
|
|
|
6633
6635
|
}
|
|
6634
6636
|
|
|
6635
6637
|
|
|
6638
|
+
/**
|
|
6639
|
+
* OptInCountOutputType without action
|
|
6640
|
+
*/
|
|
6641
|
+
export type OptInCountOutputTypeCountAffiliateClicksArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6642
|
+
where?: AffiliateClickWhereInput
|
|
6643
|
+
}
|
|
6644
|
+
|
|
6645
|
+
|
|
6636
6646
|
|
|
6637
6647
|
/**
|
|
6638
6648
|
* Count Type SocialPostCountOutputType
|
|
@@ -7565,7 +7575,7 @@ export namespace Prisma {
|
|
|
7565
7575
|
type UserGetPayload<S extends boolean | null | undefined | UserDefaultArgs> = $Result.GetResult<Prisma.$UserPayload, S>
|
|
7566
7576
|
|
|
7567
7577
|
type UserCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
7568
|
-
Omit<UserFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
7578
|
+
Omit<UserFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
7569
7579
|
select?: UserCountAggregateInputType | true
|
|
7570
7580
|
}
|
|
7571
7581
|
|
|
@@ -8952,7 +8962,7 @@ export namespace Prisma {
|
|
|
8952
8962
|
type LogGetPayload<S extends boolean | null | undefined | LogDefaultArgs> = $Result.GetResult<Prisma.$LogPayload, S>
|
|
8953
8963
|
|
|
8954
8964
|
type LogCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
8955
|
-
Omit<LogFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
8965
|
+
Omit<LogFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
8956
8966
|
select?: LogCountAggregateInputType | true
|
|
8957
8967
|
}
|
|
8958
8968
|
|
|
@@ -10039,7 +10049,7 @@ export namespace Prisma {
|
|
|
10039
10049
|
type CreatorProfileGetPayload<S extends boolean | null | undefined | CreatorProfileDefaultArgs> = $Result.GetResult<Prisma.$CreatorProfilePayload, S>
|
|
10040
10050
|
|
|
10041
10051
|
type CreatorProfileCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
10042
|
-
Omit<CreatorProfileFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
10052
|
+
Omit<CreatorProfileFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
10043
10053
|
select?: CreatorProfileCountAggregateInputType | true
|
|
10044
10054
|
}
|
|
10045
10055
|
|
|
@@ -11351,7 +11361,7 @@ export namespace Prisma {
|
|
|
11351
11361
|
type InstagramProfileGetPayload<S extends boolean | null | undefined | InstagramProfileDefaultArgs> = $Result.GetResult<Prisma.$InstagramProfilePayload, S>
|
|
11352
11362
|
|
|
11353
11363
|
type InstagramProfileCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
11354
|
-
Omit<InstagramProfileFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
11364
|
+
Omit<InstagramProfileFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
11355
11365
|
select?: InstagramProfileCountAggregateInputType | true
|
|
11356
11366
|
}
|
|
11357
11367
|
|
|
@@ -12525,7 +12535,7 @@ export namespace Prisma {
|
|
|
12525
12535
|
type TiktokProfileGetPayload<S extends boolean | null | undefined | TiktokProfileDefaultArgs> = $Result.GetResult<Prisma.$TiktokProfilePayload, S>
|
|
12526
12536
|
|
|
12527
12537
|
type TiktokProfileCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
12528
|
-
Omit<TiktokProfileFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
12538
|
+
Omit<TiktokProfileFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
12529
12539
|
select?: TiktokProfileCountAggregateInputType | true
|
|
12530
12540
|
}
|
|
12531
12541
|
|
|
@@ -13718,7 +13728,7 @@ export namespace Prisma {
|
|
|
13718
13728
|
type YoutubeProfileGetPayload<S extends boolean | null | undefined | YoutubeProfileDefaultArgs> = $Result.GetResult<Prisma.$YoutubeProfilePayload, S>
|
|
13719
13729
|
|
|
13720
13730
|
type YoutubeProfileCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
13721
|
-
Omit<YoutubeProfileFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
13731
|
+
Omit<YoutubeProfileFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
13722
13732
|
select?: YoutubeProfileCountAggregateInputType | true
|
|
13723
13733
|
}
|
|
13724
13734
|
|
|
@@ -14795,7 +14805,7 @@ export namespace Prisma {
|
|
|
14795
14805
|
type TwitchProfileGetPayload<S extends boolean | null | undefined | TwitchProfileDefaultArgs> = $Result.GetResult<Prisma.$TwitchProfilePayload, S>
|
|
14796
14806
|
|
|
14797
14807
|
type TwitchProfileCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
14798
|
-
Omit<TwitchProfileFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
14808
|
+
Omit<TwitchProfileFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
14799
14809
|
select?: TwitchProfileCountAggregateInputType | true
|
|
14800
14810
|
}
|
|
14801
14811
|
|
|
@@ -15844,7 +15854,7 @@ export namespace Prisma {
|
|
|
15844
15854
|
type FacebookProfileGetPayload<S extends boolean | null | undefined | FacebookProfileDefaultArgs> = $Result.GetResult<Prisma.$FacebookProfilePayload, S>
|
|
15845
15855
|
|
|
15846
15856
|
type FacebookProfileCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
15847
|
-
Omit<FacebookProfileFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
15857
|
+
Omit<FacebookProfileFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
15848
15858
|
select?: FacebookProfileCountAggregateInputType | true
|
|
15849
15859
|
}
|
|
15850
15860
|
|
|
@@ -16893,7 +16903,7 @@ export namespace Prisma {
|
|
|
16893
16903
|
type TwitterProfileGetPayload<S extends boolean | null | undefined | TwitterProfileDefaultArgs> = $Result.GetResult<Prisma.$TwitterProfilePayload, S>
|
|
16894
16904
|
|
|
16895
16905
|
type TwitterProfileCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
16896
|
-
Omit<TwitterProfileFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
16906
|
+
Omit<TwitterProfileFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
16897
16907
|
select?: TwitterProfileCountAggregateInputType | true
|
|
16898
16908
|
}
|
|
16899
16909
|
|
|
@@ -17859,7 +17869,7 @@ export namespace Prisma {
|
|
|
17859
17869
|
type BrandUserProfileGetPayload<S extends boolean | null | undefined | BrandUserProfileDefaultArgs> = $Result.GetResult<Prisma.$BrandUserProfilePayload, S>
|
|
17860
17870
|
|
|
17861
17871
|
type BrandUserProfileCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
17862
|
-
Omit<BrandUserProfileFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
17872
|
+
Omit<BrandUserProfileFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
17863
17873
|
select?: BrandUserProfileCountAggregateInputType | true
|
|
17864
17874
|
}
|
|
17865
17875
|
|
|
@@ -18985,7 +18995,7 @@ export namespace Prisma {
|
|
|
18985
18995
|
type BrandGetPayload<S extends boolean | null | undefined | BrandDefaultArgs> = $Result.GetResult<Prisma.$BrandPayload, S>
|
|
18986
18996
|
|
|
18987
18997
|
type BrandCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
18988
|
-
Omit<BrandFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
18998
|
+
Omit<BrandFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
18989
18999
|
select?: BrandCountAggregateInputType | true
|
|
18990
19000
|
}
|
|
18991
19001
|
|
|
@@ -20504,7 +20514,7 @@ export namespace Prisma {
|
|
|
20504
20514
|
type SearchContactsGetPayload<S extends boolean | null | undefined | SearchContactsDefaultArgs> = $Result.GetResult<Prisma.$SearchContactsPayload, S>
|
|
20505
20515
|
|
|
20506
20516
|
type SearchContactsCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
20507
|
-
Omit<SearchContactsFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
20517
|
+
Omit<SearchContactsFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
20508
20518
|
select?: SearchContactsCountAggregateInputType | true
|
|
20509
20519
|
}
|
|
20510
20520
|
|
|
@@ -21551,7 +21561,7 @@ export namespace Prisma {
|
|
|
21551
21561
|
type ReportCreditsGetPayload<S extends boolean | null | undefined | ReportCreditsDefaultArgs> = $Result.GetResult<Prisma.$ReportCreditsPayload, S>
|
|
21552
21562
|
|
|
21553
21563
|
type ReportCreditsCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
21554
|
-
Omit<ReportCreditsFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
21564
|
+
Omit<ReportCreditsFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
21555
21565
|
select?: ReportCreditsCountAggregateInputType | true
|
|
21556
21566
|
}
|
|
21557
21567
|
|
|
@@ -22531,7 +22541,7 @@ export namespace Prisma {
|
|
|
22531
22541
|
type BrandToImageGetPayload<S extends boolean | null | undefined | BrandToImageDefaultArgs> = $Result.GetResult<Prisma.$BrandToImagePayload, S>
|
|
22532
22542
|
|
|
22533
22543
|
type BrandToImageCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
22534
|
-
Omit<BrandToImageFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
22544
|
+
Omit<BrandToImageFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
22535
22545
|
select?: BrandToImageCountAggregateInputType | true
|
|
22536
22546
|
}
|
|
22537
22547
|
|
|
@@ -23481,7 +23491,7 @@ export namespace Prisma {
|
|
|
23481
23491
|
type BrandToCategoryGetPayload<S extends boolean | null | undefined | BrandToCategoryDefaultArgs> = $Result.GetResult<Prisma.$BrandToCategoryPayload, S>
|
|
23482
23492
|
|
|
23483
23493
|
type BrandToCategoryCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
23484
|
-
Omit<BrandToCategoryFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
23494
|
+
Omit<BrandToCategoryFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
23485
23495
|
select?: BrandToCategoryCountAggregateInputType | true
|
|
23486
23496
|
}
|
|
23487
23497
|
|
|
@@ -24409,7 +24419,7 @@ export namespace Prisma {
|
|
|
24409
24419
|
type CreatorToCategoryGetPayload<S extends boolean | null | undefined | CreatorToCategoryDefaultArgs> = $Result.GetResult<Prisma.$CreatorToCategoryPayload, S>
|
|
24410
24420
|
|
|
24411
24421
|
type CreatorToCategoryCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
24412
|
-
Omit<CreatorToCategoryFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
24422
|
+
Omit<CreatorToCategoryFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
24413
24423
|
select?: CreatorToCategoryCountAggregateInputType | true
|
|
24414
24424
|
}
|
|
24415
24425
|
|
|
@@ -25365,7 +25375,7 @@ export namespace Prisma {
|
|
|
25365
25375
|
type ChatGetPayload<S extends boolean | null | undefined | ChatDefaultArgs> = $Result.GetResult<Prisma.$ChatPayload, S>
|
|
25366
25376
|
|
|
25367
25377
|
type ChatCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
25368
|
-
Omit<ChatFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
25378
|
+
Omit<ChatFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
25369
25379
|
select?: ChatCountAggregateInputType | true
|
|
25370
25380
|
}
|
|
25371
25381
|
|
|
@@ -26407,7 +26417,7 @@ export namespace Prisma {
|
|
|
26407
26417
|
type MessageGetPayload<S extends boolean | null | undefined | MessageDefaultArgs> = $Result.GetResult<Prisma.$MessagePayload, S>
|
|
26408
26418
|
|
|
26409
26419
|
type MessageCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
26410
|
-
Omit<MessageFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
26420
|
+
Omit<MessageFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
26411
26421
|
select?: MessageCountAggregateInputType | true
|
|
26412
26422
|
}
|
|
26413
26423
|
|
|
@@ -27961,7 +27971,7 @@ export namespace Prisma {
|
|
|
27961
27971
|
type CampaignGetPayload<S extends boolean | null | undefined | CampaignDefaultArgs> = $Result.GetResult<Prisma.$CampaignPayload, S>
|
|
27962
27972
|
|
|
27963
27973
|
type CampaignCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
27964
|
-
Omit<CampaignFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
27974
|
+
Omit<CampaignFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
27965
27975
|
select?: CampaignCountAggregateInputType | true
|
|
27966
27976
|
}
|
|
27967
27977
|
|
|
@@ -29247,7 +29257,7 @@ export namespace Prisma {
|
|
|
29247
29257
|
type CampaignPinGetPayload<S extends boolean | null | undefined | CampaignPinDefaultArgs> = $Result.GetResult<Prisma.$CampaignPinPayload, S>
|
|
29248
29258
|
|
|
29249
29259
|
type CampaignPinCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
29250
|
-
Omit<CampaignPinFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
29260
|
+
Omit<CampaignPinFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
29251
29261
|
select?: CampaignPinCountAggregateInputType | true
|
|
29252
29262
|
}
|
|
29253
29263
|
|
|
@@ -30190,7 +30200,7 @@ export namespace Prisma {
|
|
|
30190
30200
|
type CampaignToImageGetPayload<S extends boolean | null | undefined | CampaignToImageDefaultArgs> = $Result.GetResult<Prisma.$CampaignToImagePayload, S>
|
|
30191
30201
|
|
|
30192
30202
|
type CampaignToImageCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
30193
|
-
Omit<CampaignToImageFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
30203
|
+
Omit<CampaignToImageFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
30194
30204
|
select?: CampaignToImageCountAggregateInputType | true
|
|
30195
30205
|
}
|
|
30196
30206
|
|
|
@@ -31140,7 +31150,7 @@ export namespace Prisma {
|
|
|
31140
31150
|
type CampaignToCategoryGetPayload<S extends boolean | null | undefined | CampaignToCategoryDefaultArgs> = $Result.GetResult<Prisma.$CampaignToCategoryPayload, S>
|
|
31141
31151
|
|
|
31142
31152
|
type CampaignToCategoryCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
31143
|
-
Omit<CampaignToCategoryFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
31153
|
+
Omit<CampaignToCategoryFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
31144
31154
|
select?: CampaignToCategoryCountAggregateInputType | true
|
|
31145
31155
|
}
|
|
31146
31156
|
|
|
@@ -32068,7 +32078,7 @@ export namespace Prisma {
|
|
|
32068
32078
|
type CampaignToCountryGetPayload<S extends boolean | null | undefined | CampaignToCountryDefaultArgs> = $Result.GetResult<Prisma.$CampaignToCountryPayload, S>
|
|
32069
32079
|
|
|
32070
32080
|
type CampaignToCountryCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
32071
|
-
Omit<CampaignToCountryFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
32081
|
+
Omit<CampaignToCountryFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
32072
32082
|
select?: CampaignToCountryCountAggregateInputType | true
|
|
32073
32083
|
}
|
|
32074
32084
|
|
|
@@ -33027,7 +33037,7 @@ export namespace Prisma {
|
|
|
33027
33037
|
type VariableGetPayload<S extends boolean | null | undefined | VariableDefaultArgs> = $Result.GetResult<Prisma.$VariablePayload, S>
|
|
33028
33038
|
|
|
33029
33039
|
type VariableCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
33030
|
-
Omit<VariableFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
33040
|
+
Omit<VariableFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
33031
33041
|
select?: VariableCountAggregateInputType | true
|
|
33032
33042
|
}
|
|
33033
33043
|
|
|
@@ -34030,7 +34040,7 @@ export namespace Prisma {
|
|
|
34030
34040
|
type VariableOptionGetPayload<S extends boolean | null | undefined | VariableOptionDefaultArgs> = $Result.GetResult<Prisma.$VariableOptionPayload, S>
|
|
34031
34041
|
|
|
34032
34042
|
type VariableOptionCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
34033
|
-
Omit<VariableOptionFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
34043
|
+
Omit<VariableOptionFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
34034
34044
|
select?: VariableOptionCountAggregateInputType | true
|
|
34035
34045
|
}
|
|
34036
34046
|
|
|
@@ -35003,7 +35013,7 @@ export namespace Prisma {
|
|
|
35003
35013
|
type StepGetPayload<S extends boolean | null | undefined | StepDefaultArgs> = $Result.GetResult<Prisma.$StepPayload, S>
|
|
35004
35014
|
|
|
35005
35015
|
type StepCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
35006
|
-
Omit<StepFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
35016
|
+
Omit<StepFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
35007
35017
|
select?: StepCountAggregateInputType | true
|
|
35008
35018
|
}
|
|
35009
35019
|
|
|
@@ -36037,7 +36047,7 @@ export namespace Prisma {
|
|
|
36037
36047
|
type CampaignStepGetPayload<S extends boolean | null | undefined | CampaignStepDefaultArgs> = $Result.GetResult<Prisma.$CampaignStepPayload, S>
|
|
36038
36048
|
|
|
36039
36049
|
type CampaignStepCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
36040
|
-
Omit<CampaignStepFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
36050
|
+
Omit<CampaignStepFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
36041
36051
|
select?: CampaignStepCountAggregateInputType | true
|
|
36042
36052
|
}
|
|
36043
36053
|
|
|
@@ -37079,7 +37089,7 @@ export namespace Prisma {
|
|
|
37079
37089
|
type OptInStepGetPayload<S extends boolean | null | undefined | OptInStepDefaultArgs> = $Result.GetResult<Prisma.$OptInStepPayload, S>
|
|
37080
37090
|
|
|
37081
37091
|
type OptInStepCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
37082
|
-
Omit<OptInStepFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
37092
|
+
Omit<OptInStepFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
37083
37093
|
select?: OptInStepCountAggregateInputType | true
|
|
37084
37094
|
}
|
|
37085
37095
|
|
|
@@ -38022,7 +38032,7 @@ export namespace Prisma {
|
|
|
38022
38032
|
type CategoryGetPayload<S extends boolean | null | undefined | CategoryDefaultArgs> = $Result.GetResult<Prisma.$CategoryPayload, S>
|
|
38023
38033
|
|
|
38024
38034
|
type CategoryCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
38025
|
-
Omit<CategoryFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
38035
|
+
Omit<CategoryFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
38026
38036
|
select?: CategoryCountAggregateInputType | true
|
|
38027
38037
|
}
|
|
38028
38038
|
|
|
@@ -39116,6 +39126,7 @@ export namespace Prisma {
|
|
|
39116
39126
|
chat?: boolean | OptIn$chatArgs<ExtArgs>
|
|
39117
39127
|
campaignInvites?: boolean | OptIn$campaignInvitesArgs<ExtArgs>
|
|
39118
39128
|
trolleyPayments?: boolean | OptIn$trolleyPaymentsArgs<ExtArgs>
|
|
39129
|
+
affiliateClicks?: boolean | OptIn$affiliateClicksArgs<ExtArgs>
|
|
39119
39130
|
_count?: boolean | OptInCountOutputTypeDefaultArgs<ExtArgs>
|
|
39120
39131
|
}, ExtArgs["result"]["optIn"]>
|
|
39121
39132
|
|
|
@@ -39148,6 +39159,7 @@ export namespace Prisma {
|
|
|
39148
39159
|
chat?: boolean | OptIn$chatArgs<ExtArgs>
|
|
39149
39160
|
campaignInvites?: boolean | OptIn$campaignInvitesArgs<ExtArgs>
|
|
39150
39161
|
trolleyPayments?: boolean | OptIn$trolleyPaymentsArgs<ExtArgs>
|
|
39162
|
+
affiliateClicks?: boolean | OptIn$affiliateClicksArgs<ExtArgs>
|
|
39151
39163
|
_count?: boolean | OptInCountOutputTypeDefaultArgs<ExtArgs>
|
|
39152
39164
|
}
|
|
39153
39165
|
|
|
@@ -39163,6 +39175,7 @@ export namespace Prisma {
|
|
|
39163
39175
|
chat: Prisma.$ChatPayload<ExtArgs> | null
|
|
39164
39176
|
campaignInvites: Prisma.$CampaignInvitePayload<ExtArgs>[]
|
|
39165
39177
|
trolleyPayments: Prisma.$TrolleyPaymentPayload<ExtArgs>[]
|
|
39178
|
+
affiliateClicks: Prisma.$AffiliateClickPayload<ExtArgs>[]
|
|
39166
39179
|
}
|
|
39167
39180
|
scalars: $Extensions.GetPayloadResult<{
|
|
39168
39181
|
id: number
|
|
@@ -39190,7 +39203,7 @@ export namespace Prisma {
|
|
|
39190
39203
|
type OptInGetPayload<S extends boolean | null | undefined | OptInDefaultArgs> = $Result.GetResult<Prisma.$OptInPayload, S>
|
|
39191
39204
|
|
|
39192
39205
|
type OptInCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
39193
|
-
Omit<OptInFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
39206
|
+
Omit<OptInFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
39194
39207
|
select?: OptInCountAggregateInputType | true
|
|
39195
39208
|
}
|
|
39196
39209
|
|
|
@@ -39563,6 +39576,8 @@ export namespace Prisma {
|
|
|
39563
39576
|
|
|
39564
39577
|
trolleyPayments<T extends OptIn$trolleyPaymentsArgs<ExtArgs> = {}>(args?: Subset<T, OptIn$trolleyPaymentsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TrolleyPaymentPayload<ExtArgs>, T, 'findMany'> | Null>;
|
|
39565
39578
|
|
|
39579
|
+
affiliateClicks<T extends OptIn$affiliateClicksArgs<ExtArgs> = {}>(args?: Subset<T, OptIn$affiliateClicksArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$AffiliateClickPayload<ExtArgs>, T, 'findMany'> | Null>;
|
|
39580
|
+
|
|
39566
39581
|
/**
|
|
39567
39582
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
39568
39583
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -40035,6 +40050,27 @@ export namespace Prisma {
|
|
|
40035
40050
|
}
|
|
40036
40051
|
|
|
40037
40052
|
|
|
40053
|
+
/**
|
|
40054
|
+
* OptIn.affiliateClicks
|
|
40055
|
+
*/
|
|
40056
|
+
export type OptIn$affiliateClicksArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
40057
|
+
/**
|
|
40058
|
+
* Select specific fields to fetch from the AffiliateClick
|
|
40059
|
+
*/
|
|
40060
|
+
select?: AffiliateClickSelect<ExtArgs> | null
|
|
40061
|
+
/**
|
|
40062
|
+
* Choose, which related nodes to fetch as well.
|
|
40063
|
+
*/
|
|
40064
|
+
include?: AffiliateClickInclude<ExtArgs> | null
|
|
40065
|
+
where?: AffiliateClickWhereInput
|
|
40066
|
+
orderBy?: AffiliateClickOrderByWithRelationAndSearchRelevanceInput | AffiliateClickOrderByWithRelationAndSearchRelevanceInput[]
|
|
40067
|
+
cursor?: AffiliateClickWhereUniqueInput
|
|
40068
|
+
take?: number
|
|
40069
|
+
skip?: number
|
|
40070
|
+
distinct?: AffiliateClickScalarFieldEnum | AffiliateClickScalarFieldEnum[]
|
|
40071
|
+
}
|
|
40072
|
+
|
|
40073
|
+
|
|
40038
40074
|
/**
|
|
40039
40075
|
* OptIn without action
|
|
40040
40076
|
*/
|
|
@@ -40308,7 +40344,7 @@ export namespace Prisma {
|
|
|
40308
40344
|
type TrolleyPaymentGetPayload<S extends boolean | null | undefined | TrolleyPaymentDefaultArgs> = $Result.GetResult<Prisma.$TrolleyPaymentPayload, S>
|
|
40309
40345
|
|
|
40310
40346
|
type TrolleyPaymentCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
40311
|
-
Omit<TrolleyPaymentFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
40347
|
+
Omit<TrolleyPaymentFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
40312
40348
|
select?: TrolleyPaymentCountAggregateInputType | true
|
|
40313
40349
|
}
|
|
40314
40350
|
|
|
@@ -41286,7 +41322,7 @@ export namespace Prisma {
|
|
|
41286
41322
|
type OptInVariableGetPayload<S extends boolean | null | undefined | OptInVariableDefaultArgs> = $Result.GetResult<Prisma.$OptInVariablePayload, S>
|
|
41287
41323
|
|
|
41288
41324
|
type OptInVariableCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
41289
|
-
Omit<OptInVariableFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
41325
|
+
Omit<OptInVariableFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
41290
41326
|
select?: OptInVariableCountAggregateInputType | true
|
|
41291
41327
|
}
|
|
41292
41328
|
|
|
@@ -42581,7 +42617,7 @@ export namespace Prisma {
|
|
|
42581
42617
|
type SocialPostGetPayload<S extends boolean | null | undefined | SocialPostDefaultArgs> = $Result.GetResult<Prisma.$SocialPostPayload, S>
|
|
42582
42618
|
|
|
42583
42619
|
type SocialPostCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
42584
|
-
Omit<SocialPostFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
42620
|
+
Omit<SocialPostFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
42585
42621
|
select?: SocialPostCountAggregateInputType | true
|
|
42586
42622
|
}
|
|
42587
42623
|
|
|
@@ -43612,7 +43648,7 @@ export namespace Prisma {
|
|
|
43612
43648
|
type ImageGetPayload<S extends boolean | null | undefined | ImageDefaultArgs> = $Result.GetResult<Prisma.$ImagePayload, S>
|
|
43613
43649
|
|
|
43614
43650
|
type ImageCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
43615
|
-
Omit<ImageFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
43651
|
+
Omit<ImageFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
43616
43652
|
select?: ImageCountAggregateInputType | true
|
|
43617
43653
|
}
|
|
43618
43654
|
|
|
@@ -44557,7 +44593,7 @@ export namespace Prisma {
|
|
|
44557
44593
|
type BrandImageGetPayload<S extends boolean | null | undefined | BrandImageDefaultArgs> = $Result.GetResult<Prisma.$BrandImagePayload, S>
|
|
44558
44594
|
|
|
44559
44595
|
type BrandImageCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
44560
|
-
Omit<BrandImageFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
44596
|
+
Omit<BrandImageFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
44561
44597
|
select?: BrandImageCountAggregateInputType | true
|
|
44562
44598
|
}
|
|
44563
44599
|
|
|
@@ -45503,7 +45539,7 @@ export namespace Prisma {
|
|
|
45503
45539
|
type CountryGetPayload<S extends boolean | null | undefined | CountryDefaultArgs> = $Result.GetResult<Prisma.$CountryPayload, S>
|
|
45504
45540
|
|
|
45505
45541
|
type CountryCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
45506
|
-
Omit<CountryFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
45542
|
+
Omit<CountryFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
45507
45543
|
select?: CountryCountAggregateInputType | true
|
|
45508
45544
|
}
|
|
45509
45545
|
|
|
@@ -46492,7 +46528,7 @@ export namespace Prisma {
|
|
|
46492
46528
|
type StateGetPayload<S extends boolean | null | undefined | StateDefaultArgs> = $Result.GetResult<Prisma.$StatePayload, S>
|
|
46493
46529
|
|
|
46494
46530
|
type StateCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
46495
|
-
Omit<StateFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
46531
|
+
Omit<StateFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
46496
46532
|
select?: StateCountAggregateInputType | true
|
|
46497
46533
|
}
|
|
46498
46534
|
|
|
@@ -47532,7 +47568,7 @@ export namespace Prisma {
|
|
|
47532
47568
|
type PaymentTransactionGetPayload<S extends boolean | null | undefined | PaymentTransactionDefaultArgs> = $Result.GetResult<Prisma.$PaymentTransactionPayload, S>
|
|
47533
47569
|
|
|
47534
47570
|
type PaymentTransactionCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
47535
|
-
Omit<PaymentTransactionFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
47571
|
+
Omit<PaymentTransactionFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
47536
47572
|
select?: PaymentTransactionCountAggregateInputType | true
|
|
47537
47573
|
}
|
|
47538
47574
|
|
|
@@ -48589,7 +48625,7 @@ export namespace Prisma {
|
|
|
48589
48625
|
type BrandAffiliateLinkGetPayload<S extends boolean | null | undefined | BrandAffiliateLinkDefaultArgs> = $Result.GetResult<Prisma.$BrandAffiliateLinkPayload, S>
|
|
48590
48626
|
|
|
48591
48627
|
type BrandAffiliateLinkCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
48592
|
-
Omit<BrandAffiliateLinkFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
48628
|
+
Omit<BrandAffiliateLinkFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
48593
48629
|
select?: BrandAffiliateLinkCountAggregateInputType | true
|
|
48594
48630
|
}
|
|
48595
48631
|
|
|
@@ -49578,7 +49614,7 @@ export namespace Prisma {
|
|
|
49578
49614
|
type AffiliateLinkGetPayload<S extends boolean | null | undefined | AffiliateLinkDefaultArgs> = $Result.GetResult<Prisma.$AffiliateLinkPayload, S>
|
|
49579
49615
|
|
|
49580
49616
|
type AffiliateLinkCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
49581
|
-
Omit<AffiliateLinkFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
49617
|
+
Omit<AffiliateLinkFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
49582
49618
|
select?: AffiliateLinkCountAggregateInputType | true
|
|
49583
49619
|
}
|
|
49584
49620
|
|
|
@@ -50336,11 +50372,13 @@ export namespace Prisma {
|
|
|
50336
50372
|
|
|
50337
50373
|
export type AffiliateClickAvgAggregateOutputType = {
|
|
50338
50374
|
id: number | null
|
|
50375
|
+
optInId: number | null
|
|
50339
50376
|
affiliateLinkId: number | null
|
|
50340
50377
|
}
|
|
50341
50378
|
|
|
50342
50379
|
export type AffiliateClickSumAggregateOutputType = {
|
|
50343
50380
|
id: number | null
|
|
50381
|
+
optInId: number | null
|
|
50344
50382
|
affiliateLinkId: number | null
|
|
50345
50383
|
}
|
|
50346
50384
|
|
|
@@ -50348,6 +50386,7 @@ export namespace Prisma {
|
|
|
50348
50386
|
id: number | null
|
|
50349
50387
|
created: Date | null
|
|
50350
50388
|
visitorIp: string | null
|
|
50389
|
+
optInId: number | null
|
|
50351
50390
|
affiliateLinkId: number | null
|
|
50352
50391
|
}
|
|
50353
50392
|
|
|
@@ -50355,6 +50394,7 @@ export namespace Prisma {
|
|
|
50355
50394
|
id: number | null
|
|
50356
50395
|
created: Date | null
|
|
50357
50396
|
visitorIp: string | null
|
|
50397
|
+
optInId: number | null
|
|
50358
50398
|
affiliateLinkId: number | null
|
|
50359
50399
|
}
|
|
50360
50400
|
|
|
@@ -50362,6 +50402,7 @@ export namespace Prisma {
|
|
|
50362
50402
|
id: number
|
|
50363
50403
|
created: number
|
|
50364
50404
|
visitorIp: number
|
|
50405
|
+
optInId: number
|
|
50365
50406
|
metaData: number
|
|
50366
50407
|
affiliateLinkId: number
|
|
50367
50408
|
_all: number
|
|
@@ -50370,11 +50411,13 @@ export namespace Prisma {
|
|
|
50370
50411
|
|
|
50371
50412
|
export type AffiliateClickAvgAggregateInputType = {
|
|
50372
50413
|
id?: true
|
|
50414
|
+
optInId?: true
|
|
50373
50415
|
affiliateLinkId?: true
|
|
50374
50416
|
}
|
|
50375
50417
|
|
|
50376
50418
|
export type AffiliateClickSumAggregateInputType = {
|
|
50377
50419
|
id?: true
|
|
50420
|
+
optInId?: true
|
|
50378
50421
|
affiliateLinkId?: true
|
|
50379
50422
|
}
|
|
50380
50423
|
|
|
@@ -50382,6 +50425,7 @@ export namespace Prisma {
|
|
|
50382
50425
|
id?: true
|
|
50383
50426
|
created?: true
|
|
50384
50427
|
visitorIp?: true
|
|
50428
|
+
optInId?: true
|
|
50385
50429
|
affiliateLinkId?: true
|
|
50386
50430
|
}
|
|
50387
50431
|
|
|
@@ -50389,6 +50433,7 @@ export namespace Prisma {
|
|
|
50389
50433
|
id?: true
|
|
50390
50434
|
created?: true
|
|
50391
50435
|
visitorIp?: true
|
|
50436
|
+
optInId?: true
|
|
50392
50437
|
affiliateLinkId?: true
|
|
50393
50438
|
}
|
|
50394
50439
|
|
|
@@ -50396,6 +50441,7 @@ export namespace Prisma {
|
|
|
50396
50441
|
id?: true
|
|
50397
50442
|
created?: true
|
|
50398
50443
|
visitorIp?: true
|
|
50444
|
+
optInId?: true
|
|
50399
50445
|
metaData?: true
|
|
50400
50446
|
affiliateLinkId?: true
|
|
50401
50447
|
_all?: true
|
|
@@ -50491,6 +50537,7 @@ export namespace Prisma {
|
|
|
50491
50537
|
id: number
|
|
50492
50538
|
created: Date
|
|
50493
50539
|
visitorIp: string | null
|
|
50540
|
+
optInId: number
|
|
50494
50541
|
metaData: JsonValue
|
|
50495
50542
|
affiliateLinkId: number
|
|
50496
50543
|
_count: AffiliateClickCountAggregateOutputType | null
|
|
@@ -50518,8 +50565,10 @@ export namespace Prisma {
|
|
|
50518
50565
|
id?: boolean
|
|
50519
50566
|
created?: boolean
|
|
50520
50567
|
visitorIp?: boolean
|
|
50568
|
+
optInId?: boolean
|
|
50521
50569
|
metaData?: boolean
|
|
50522
50570
|
affiliateLinkId?: boolean
|
|
50571
|
+
optin?: boolean | OptInDefaultArgs<ExtArgs>
|
|
50523
50572
|
affiliateLink?: boolean | AffiliateLinkDefaultArgs<ExtArgs>
|
|
50524
50573
|
affiliateEvent?: boolean | AffiliateClick$affiliateEventArgs<ExtArgs>
|
|
50525
50574
|
_count?: boolean | AffiliateClickCountOutputTypeDefaultArgs<ExtArgs>
|
|
@@ -50529,11 +50578,13 @@ export namespace Prisma {
|
|
|
50529
50578
|
id?: boolean
|
|
50530
50579
|
created?: boolean
|
|
50531
50580
|
visitorIp?: boolean
|
|
50581
|
+
optInId?: boolean
|
|
50532
50582
|
metaData?: boolean
|
|
50533
50583
|
affiliateLinkId?: boolean
|
|
50534
50584
|
}
|
|
50535
50585
|
|
|
50536
50586
|
export type AffiliateClickInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50587
|
+
optin?: boolean | OptInDefaultArgs<ExtArgs>
|
|
50537
50588
|
affiliateLink?: boolean | AffiliateLinkDefaultArgs<ExtArgs>
|
|
50538
50589
|
affiliateEvent?: boolean | AffiliateClick$affiliateEventArgs<ExtArgs>
|
|
50539
50590
|
_count?: boolean | AffiliateClickCountOutputTypeDefaultArgs<ExtArgs>
|
|
@@ -50543,6 +50594,7 @@ export namespace Prisma {
|
|
|
50543
50594
|
export type $AffiliateClickPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50544
50595
|
name: "AffiliateClick"
|
|
50545
50596
|
objects: {
|
|
50597
|
+
optin: Prisma.$OptInPayload<ExtArgs>
|
|
50546
50598
|
affiliateLink: Prisma.$AffiliateLinkPayload<ExtArgs>
|
|
50547
50599
|
affiliateEvent: Prisma.$AffiliateEventPayload<ExtArgs>[]
|
|
50548
50600
|
}
|
|
@@ -50550,6 +50602,7 @@ export namespace Prisma {
|
|
|
50550
50602
|
id: number
|
|
50551
50603
|
created: Date
|
|
50552
50604
|
visitorIp: string | null
|
|
50605
|
+
optInId: number
|
|
50553
50606
|
metaData: Prisma.JsonValue
|
|
50554
50607
|
affiliateLinkId: number
|
|
50555
50608
|
}, ExtArgs["result"]["affiliateClick"]>
|
|
@@ -50560,7 +50613,7 @@ export namespace Prisma {
|
|
|
50560
50613
|
type AffiliateClickGetPayload<S extends boolean | null | undefined | AffiliateClickDefaultArgs> = $Result.GetResult<Prisma.$AffiliateClickPayload, S>
|
|
50561
50614
|
|
|
50562
50615
|
type AffiliateClickCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
50563
|
-
Omit<AffiliateClickFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
50616
|
+
Omit<AffiliateClickFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
50564
50617
|
select?: AffiliateClickCountAggregateInputType | true
|
|
50565
50618
|
}
|
|
50566
50619
|
|
|
@@ -50917,6 +50970,8 @@ export namespace Prisma {
|
|
|
50917
50970
|
export interface Prisma__AffiliateClickClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
50918
50971
|
readonly [Symbol.toStringTag]: 'PrismaPromise';
|
|
50919
50972
|
|
|
50973
|
+
optin<T extends OptInDefaultArgs<ExtArgs> = {}>(args?: Subset<T, OptInDefaultArgs<ExtArgs>>): Prisma__OptInClient<$Result.GetResult<Prisma.$OptInPayload<ExtArgs>, T, 'findUniqueOrThrow'> | Null, Null, ExtArgs>;
|
|
50974
|
+
|
|
50920
50975
|
affiliateLink<T extends AffiliateLinkDefaultArgs<ExtArgs> = {}>(args?: Subset<T, AffiliateLinkDefaultArgs<ExtArgs>>): Prisma__AffiliateLinkClient<$Result.GetResult<Prisma.$AffiliateLinkPayload<ExtArgs>, T, 'findUniqueOrThrow'> | Null, Null, ExtArgs>;
|
|
50921
50976
|
|
|
50922
50977
|
affiliateEvent<T extends AffiliateClick$affiliateEventArgs<ExtArgs> = {}>(args?: Subset<T, AffiliateClick$affiliateEventArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$AffiliateEventPayload<ExtArgs>, T, 'findMany'> | Null>;
|
|
@@ -50952,6 +51007,7 @@ export namespace Prisma {
|
|
|
50952
51007
|
readonly id: FieldRef<"AffiliateClick", 'Int'>
|
|
50953
51008
|
readonly created: FieldRef<"AffiliateClick", 'DateTime'>
|
|
50954
51009
|
readonly visitorIp: FieldRef<"AffiliateClick", 'String'>
|
|
51010
|
+
readonly optInId: FieldRef<"AffiliateClick", 'Int'>
|
|
50955
51011
|
readonly metaData: FieldRef<"AffiliateClick", 'Json'>
|
|
50956
51012
|
readonly affiliateLinkId: FieldRef<"AffiliateClick", 'Int'>
|
|
50957
51013
|
}
|
|
@@ -51597,7 +51653,7 @@ export namespace Prisma {
|
|
|
51597
51653
|
type AffiliateEventGetPayload<S extends boolean | null | undefined | AffiliateEventDefaultArgs> = $Result.GetResult<Prisma.$AffiliateEventPayload, S>
|
|
51598
51654
|
|
|
51599
51655
|
type AffiliateEventCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
51600
|
-
Omit<AffiliateEventFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
51656
|
+
Omit<AffiliateEventFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
51601
51657
|
select?: AffiliateEventCountAggregateInputType | true
|
|
51602
51658
|
}
|
|
51603
51659
|
|
|
@@ -52590,7 +52646,7 @@ export namespace Prisma {
|
|
|
52590
52646
|
type SavedFileGetPayload<S extends boolean | null | undefined | SavedFileDefaultArgs> = $Result.GetResult<Prisma.$SavedFilePayload, S>
|
|
52591
52647
|
|
|
52592
52648
|
type SavedFileCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
52593
|
-
Omit<SavedFileFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
52649
|
+
Omit<SavedFileFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
52594
52650
|
select?: SavedFileCountAggregateInputType | true
|
|
52595
52651
|
}
|
|
52596
52652
|
|
|
@@ -53631,7 +53687,7 @@ export namespace Prisma {
|
|
|
53631
53687
|
type CampaignInviteGetPayload<S extends boolean | null | undefined | CampaignInviteDefaultArgs> = $Result.GetResult<Prisma.$CampaignInvitePayload, S>
|
|
53632
53688
|
|
|
53633
53689
|
type CampaignInviteCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
53634
|
-
Omit<CampaignInviteFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
53690
|
+
Omit<CampaignInviteFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
53635
53691
|
select?: CampaignInviteCountAggregateInputType | true
|
|
53636
53692
|
}
|
|
53637
53693
|
|
|
@@ -54677,7 +54733,7 @@ export namespace Prisma {
|
|
|
54677
54733
|
type CreatorListGetPayload<S extends boolean | null | undefined | CreatorListDefaultArgs> = $Result.GetResult<Prisma.$CreatorListPayload, S>
|
|
54678
54734
|
|
|
54679
54735
|
type CreatorListCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
54680
|
-
Omit<CreatorListFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
54736
|
+
Omit<CreatorListFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
54681
54737
|
select?: CreatorListCountAggregateInputType | true
|
|
54682
54738
|
}
|
|
54683
54739
|
|
|
@@ -55749,7 +55805,7 @@ export namespace Prisma {
|
|
|
55749
55805
|
type CreatorListItemGetPayload<S extends boolean | null | undefined | CreatorListItemDefaultArgs> = $Result.GetResult<Prisma.$CreatorListItemPayload, S>
|
|
55750
55806
|
|
|
55751
55807
|
type CreatorListItemCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
55752
|
-
Omit<CreatorListItemFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
55808
|
+
Omit<CreatorListItemFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
55753
55809
|
select?: CreatorListItemCountAggregateInputType | true
|
|
55754
55810
|
}
|
|
55755
55811
|
|
|
@@ -56924,7 +56980,7 @@ export namespace Prisma {
|
|
|
56924
56980
|
type SocialProfileGetPayload<S extends boolean | null | undefined | SocialProfileDefaultArgs> = $Result.GetResult<Prisma.$SocialProfilePayload, S>
|
|
56925
56981
|
|
|
56926
56982
|
type SocialProfileCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
56927
|
-
Omit<SocialProfileFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
56983
|
+
Omit<SocialProfileFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
56928
56984
|
select?: SocialProfileCountAggregateInputType | true
|
|
56929
56985
|
}
|
|
56930
56986
|
|
|
@@ -57950,7 +58006,7 @@ export namespace Prisma {
|
|
|
57950
58006
|
type MessageTemplateGetPayload<S extends boolean | null | undefined | MessageTemplateDefaultArgs> = $Result.GetResult<Prisma.$MessageTemplatePayload, S>
|
|
57951
58007
|
|
|
57952
58008
|
type MessageTemplateCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
57953
|
-
Omit<MessageTemplateFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
58009
|
+
Omit<MessageTemplateFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
57954
58010
|
select?: MessageTemplateCountAggregateInputType | true
|
|
57955
58011
|
}
|
|
57956
58012
|
|
|
@@ -58933,7 +58989,7 @@ export namespace Prisma {
|
|
|
58933
58989
|
type EmailTemplateGetPayload<S extends boolean | null | undefined | EmailTemplateDefaultArgs> = $Result.GetResult<Prisma.$EmailTemplatePayload, S>
|
|
58934
58990
|
|
|
58935
58991
|
type EmailTemplateCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
58936
|
-
Omit<EmailTemplateFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
58992
|
+
Omit<EmailTemplateFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
58937
58993
|
select?: EmailTemplateCountAggregateInputType | true
|
|
58938
58994
|
}
|
|
58939
58995
|
|
|
@@ -59974,7 +60030,7 @@ export namespace Prisma {
|
|
|
59974
60030
|
type SocialListeningListGetPayload<S extends boolean | null | undefined | SocialListeningListDefaultArgs> = $Result.GetResult<Prisma.$SocialListeningListPayload, S>
|
|
59975
60031
|
|
|
59976
60032
|
type SocialListeningListCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
59977
|
-
Omit<SocialListeningListFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
60033
|
+
Omit<SocialListeningListFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
59978
60034
|
select?: SocialListeningListCountAggregateInputType | true
|
|
59979
60035
|
}
|
|
59980
60036
|
|
|
@@ -60944,7 +61000,7 @@ export namespace Prisma {
|
|
|
60944
61000
|
type ListToSocialPostGetPayload<S extends boolean | null | undefined | ListToSocialPostDefaultArgs> = $Result.GetResult<Prisma.$ListToSocialPostPayload, S>
|
|
60945
61001
|
|
|
60946
61002
|
type ListToSocialPostCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
60947
|
-
Omit<ListToSocialPostFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
61003
|
+
Omit<ListToSocialPostFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
60948
61004
|
select?: ListToSocialPostCountAggregateInputType | true
|
|
60949
61005
|
}
|
|
60950
61006
|
|
|
@@ -61886,7 +61942,7 @@ export namespace Prisma {
|
|
|
61886
61942
|
type OptInViewGetPayload<S extends boolean | null | undefined | OptInViewDefaultArgs> = $Result.GetResult<Prisma.$OptInViewPayload, S>
|
|
61887
61943
|
|
|
61888
61944
|
type OptInViewCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
61889
|
-
Omit<OptInViewFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
61945
|
+
Omit<OptInViewFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
61890
61946
|
select?: OptInViewCountAggregateInputType | true
|
|
61891
61947
|
}
|
|
61892
61948
|
|
|
@@ -62923,7 +62979,7 @@ export namespace Prisma {
|
|
|
62923
62979
|
type RakutenActivityGetPayload<S extends boolean | null | undefined | RakutenActivityDefaultArgs> = $Result.GetResult<Prisma.$RakutenActivityPayload, S>
|
|
62924
62980
|
|
|
62925
62981
|
type RakutenActivityCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
62926
|
-
Omit<RakutenActivityFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
62982
|
+
Omit<RakutenActivityFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
62927
62983
|
select?: RakutenActivityCountAggregateInputType | true
|
|
62928
62984
|
}
|
|
62929
62985
|
|
|
@@ -63925,7 +63981,7 @@ export namespace Prisma {
|
|
|
63925
63981
|
type ImpactRadiusEventGetPayload<S extends boolean | null | undefined | ImpactRadiusEventDefaultArgs> = $Result.GetResult<Prisma.$ImpactRadiusEventPayload, S>
|
|
63926
63982
|
|
|
63927
63983
|
type ImpactRadiusEventCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
63928
|
-
Omit<ImpactRadiusEventFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
63984
|
+
Omit<ImpactRadiusEventFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
63929
63985
|
select?: ImpactRadiusEventCountAggregateInputType | true
|
|
63930
63986
|
}
|
|
63931
63987
|
|
|
@@ -64908,7 +64964,7 @@ export namespace Prisma {
|
|
|
64908
64964
|
type CreatorSearchFilterGetPayload<S extends boolean | null | undefined | CreatorSearchFilterDefaultArgs> = $Result.GetResult<Prisma.$CreatorSearchFilterPayload, S>
|
|
64909
64965
|
|
|
64910
64966
|
type CreatorSearchFilterCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
64911
|
-
Omit<CreatorSearchFilterFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
64967
|
+
Omit<CreatorSearchFilterFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
64912
64968
|
select?: CreatorSearchFilterCountAggregateInputType | true
|
|
64913
64969
|
}
|
|
64914
64970
|
|
|
@@ -65923,7 +65979,7 @@ export namespace Prisma {
|
|
|
65923
65979
|
type SequenceGetPayload<S extends boolean | null | undefined | SequenceDefaultArgs> = $Result.GetResult<Prisma.$SequencePayload, S>
|
|
65924
65980
|
|
|
65925
65981
|
type SequenceCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
65926
|
-
Omit<SequenceFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
65982
|
+
Omit<SequenceFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
65927
65983
|
select?: SequenceCountAggregateInputType | true
|
|
65928
65984
|
}
|
|
65929
65985
|
|
|
@@ -67022,7 +67078,7 @@ export namespace Prisma {
|
|
|
67022
67078
|
type SequenceStepGetPayload<S extends boolean | null | undefined | SequenceStepDefaultArgs> = $Result.GetResult<Prisma.$SequenceStepPayload, S>
|
|
67023
67079
|
|
|
67024
67080
|
type SequenceStepCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
67025
|
-
Omit<SequenceStepFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
67081
|
+
Omit<SequenceStepFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
67026
67082
|
select?: SequenceStepCountAggregateInputType | true
|
|
67027
67083
|
}
|
|
67028
67084
|
|
|
@@ -68019,7 +68075,7 @@ export namespace Prisma {
|
|
|
68019
68075
|
type SequenceOutboundEmailGetPayload<S extends boolean | null | undefined | SequenceOutboundEmailDefaultArgs> = $Result.GetResult<Prisma.$SequenceOutboundEmailPayload, S>
|
|
68020
68076
|
|
|
68021
68077
|
type SequenceOutboundEmailCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
68022
|
-
Omit<SequenceOutboundEmailFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
68078
|
+
Omit<SequenceOutboundEmailFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
68023
68079
|
select?: SequenceOutboundEmailCountAggregateInputType | true
|
|
68024
68080
|
}
|
|
68025
68081
|
|
|
@@ -68986,7 +69042,7 @@ export namespace Prisma {
|
|
|
68986
69042
|
type SequenceInboundEmailGetPayload<S extends boolean | null | undefined | SequenceInboundEmailDefaultArgs> = $Result.GetResult<Prisma.$SequenceInboundEmailPayload, S>
|
|
68987
69043
|
|
|
68988
69044
|
type SequenceInboundEmailCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
68989
|
-
Omit<SequenceInboundEmailFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
69045
|
+
Omit<SequenceInboundEmailFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
68990
69046
|
select?: SequenceInboundEmailCountAggregateInputType | true
|
|
68991
69047
|
}
|
|
68992
69048
|
|
|
@@ -69947,7 +70003,7 @@ export namespace Prisma {
|
|
|
69947
70003
|
type SequenceImapCheckpointGetPayload<S extends boolean | null | undefined | SequenceImapCheckpointDefaultArgs> = $Result.GetResult<Prisma.$SequenceImapCheckpointPayload, S>
|
|
69948
70004
|
|
|
69949
70005
|
type SequenceImapCheckpointCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
69950
|
-
Omit<SequenceImapCheckpointFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
70006
|
+
Omit<SequenceImapCheckpointFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
69951
70007
|
select?: SequenceImapCheckpointCountAggregateInputType | true
|
|
69952
70008
|
}
|
|
69953
70009
|
|
|
@@ -71328,6 +71384,7 @@ export namespace Prisma {
|
|
|
71328
71384
|
id: 'id',
|
|
71329
71385
|
created: 'created',
|
|
71330
71386
|
visitorIp: 'visitorIp',
|
|
71387
|
+
optInId: 'optInId',
|
|
71331
71388
|
metaData: 'metaData',
|
|
71332
71389
|
affiliateLinkId: 'affiliateLinkId'
|
|
71333
71390
|
};
|
|
@@ -74914,6 +74971,7 @@ export namespace Prisma {
|
|
|
74914
74971
|
chat?: XOR<ChatNullableRelationFilter, ChatWhereInput> | null
|
|
74915
74972
|
campaignInvites?: CampaignInviteListRelationFilter
|
|
74916
74973
|
trolleyPayments?: TrolleyPaymentListRelationFilter
|
|
74974
|
+
affiliateClicks?: AffiliateClickListRelationFilter
|
|
74917
74975
|
}
|
|
74918
74976
|
|
|
74919
74977
|
export type OptInOrderByWithRelationAndSearchRelevanceInput = {
|
|
@@ -74942,6 +75000,7 @@ export namespace Prisma {
|
|
|
74942
75000
|
chat?: ChatOrderByWithRelationAndSearchRelevanceInput
|
|
74943
75001
|
campaignInvites?: CampaignInviteOrderByRelationAggregateInput
|
|
74944
75002
|
trolleyPayments?: TrolleyPaymentOrderByRelationAggregateInput
|
|
75003
|
+
affiliateClicks?: AffiliateClickOrderByRelationAggregateInput
|
|
74945
75004
|
_relevance?: OptInOrderByRelevanceInput
|
|
74946
75005
|
}
|
|
74947
75006
|
|
|
@@ -74974,6 +75033,7 @@ export namespace Prisma {
|
|
|
74974
75033
|
chat?: XOR<ChatNullableRelationFilter, ChatWhereInput> | null
|
|
74975
75034
|
campaignInvites?: CampaignInviteListRelationFilter
|
|
74976
75035
|
trolleyPayments?: TrolleyPaymentListRelationFilter
|
|
75036
|
+
affiliateClicks?: AffiliateClickListRelationFilter
|
|
74977
75037
|
}, "id">
|
|
74978
75038
|
|
|
74979
75039
|
export type OptInOrderByWithAggregationInput = {
|
|
@@ -75807,8 +75867,10 @@ export namespace Prisma {
|
|
|
75807
75867
|
id?: IntFilter<"AffiliateClick"> | number
|
|
75808
75868
|
created?: DateTimeFilter<"AffiliateClick"> | Date | string
|
|
75809
75869
|
visitorIp?: StringNullableFilter<"AffiliateClick"> | string | null
|
|
75870
|
+
optInId?: IntFilter<"AffiliateClick"> | number
|
|
75810
75871
|
metaData?: JsonFilter<"AffiliateClick">
|
|
75811
75872
|
affiliateLinkId?: IntFilter<"AffiliateClick"> | number
|
|
75873
|
+
optin?: XOR<OptInRelationFilter, OptInWhereInput>
|
|
75812
75874
|
affiliateLink?: XOR<AffiliateLinkRelationFilter, AffiliateLinkWhereInput>
|
|
75813
75875
|
affiliateEvent?: AffiliateEventListRelationFilter
|
|
75814
75876
|
}
|
|
@@ -75817,8 +75879,10 @@ export namespace Prisma {
|
|
|
75817
75879
|
id?: SortOrder
|
|
75818
75880
|
created?: SortOrder
|
|
75819
75881
|
visitorIp?: SortOrderInput | SortOrder
|
|
75882
|
+
optInId?: SortOrder
|
|
75820
75883
|
metaData?: SortOrder
|
|
75821
75884
|
affiliateLinkId?: SortOrder
|
|
75885
|
+
optin?: OptInOrderByWithRelationAndSearchRelevanceInput
|
|
75822
75886
|
affiliateLink?: AffiliateLinkOrderByWithRelationAndSearchRelevanceInput
|
|
75823
75887
|
affiliateEvent?: AffiliateEventOrderByRelationAggregateInput
|
|
75824
75888
|
_relevance?: AffiliateClickOrderByRelevanceInput
|
|
@@ -75831,8 +75895,10 @@ export namespace Prisma {
|
|
|
75831
75895
|
NOT?: AffiliateClickWhereInput | AffiliateClickWhereInput[]
|
|
75832
75896
|
created?: DateTimeFilter<"AffiliateClick"> | Date | string
|
|
75833
75897
|
visitorIp?: StringNullableFilter<"AffiliateClick"> | string | null
|
|
75898
|
+
optInId?: IntFilter<"AffiliateClick"> | number
|
|
75834
75899
|
metaData?: JsonFilter<"AffiliateClick">
|
|
75835
75900
|
affiliateLinkId?: IntFilter<"AffiliateClick"> | number
|
|
75901
|
+
optin?: XOR<OptInRelationFilter, OptInWhereInput>
|
|
75836
75902
|
affiliateLink?: XOR<AffiliateLinkRelationFilter, AffiliateLinkWhereInput>
|
|
75837
75903
|
affiliateEvent?: AffiliateEventListRelationFilter
|
|
75838
75904
|
}, "id">
|
|
@@ -75841,6 +75907,7 @@ export namespace Prisma {
|
|
|
75841
75907
|
id?: SortOrder
|
|
75842
75908
|
created?: SortOrder
|
|
75843
75909
|
visitorIp?: SortOrderInput | SortOrder
|
|
75910
|
+
optInId?: SortOrder
|
|
75844
75911
|
metaData?: SortOrder
|
|
75845
75912
|
affiliateLinkId?: SortOrder
|
|
75846
75913
|
_count?: AffiliateClickCountOrderByAggregateInput
|
|
@@ -75857,6 +75924,7 @@ export namespace Prisma {
|
|
|
75857
75924
|
id?: IntWithAggregatesFilter<"AffiliateClick"> | number
|
|
75858
75925
|
created?: DateTimeWithAggregatesFilter<"AffiliateClick"> | Date | string
|
|
75859
75926
|
visitorIp?: StringNullableWithAggregatesFilter<"AffiliateClick"> | string | null
|
|
75927
|
+
optInId?: IntWithAggregatesFilter<"AffiliateClick"> | number
|
|
75860
75928
|
metaData?: JsonWithAggregatesFilter<"AffiliateClick">
|
|
75861
75929
|
affiliateLinkId?: IntWithAggregatesFilter<"AffiliateClick"> | number
|
|
75862
75930
|
}
|
|
@@ -80179,6 +80247,7 @@ export namespace Prisma {
|
|
|
80179
80247
|
chat?: ChatCreateNestedOneWithoutOptInInput
|
|
80180
80248
|
campaignInvites?: CampaignInviteCreateNestedManyWithoutOptInInput
|
|
80181
80249
|
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
|
|
80250
|
+
affiliateClicks?: AffiliateClickCreateNestedManyWithoutOptinInput
|
|
80182
80251
|
}
|
|
80183
80252
|
|
|
80184
80253
|
export type OptInUncheckedCreateInput = {
|
|
@@ -80204,6 +80273,7 @@ export namespace Prisma {
|
|
|
80204
80273
|
chat?: ChatUncheckedCreateNestedOneWithoutOptInInput
|
|
80205
80274
|
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutOptInInput
|
|
80206
80275
|
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
|
|
80276
|
+
affiliateClicks?: AffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
80207
80277
|
}
|
|
80208
80278
|
|
|
80209
80279
|
export type OptInUpdateInput = {
|
|
@@ -80228,6 +80298,7 @@ export namespace Prisma {
|
|
|
80228
80298
|
chat?: ChatUpdateOneWithoutOptInNestedInput
|
|
80229
80299
|
campaignInvites?: CampaignInviteUpdateManyWithoutOptInNestedInput
|
|
80230
80300
|
trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
|
|
80301
|
+
affiliateClicks?: AffiliateClickUpdateManyWithoutOptinNestedInput
|
|
80231
80302
|
}
|
|
80232
80303
|
|
|
80233
80304
|
export type OptInUncheckedUpdateInput = {
|
|
@@ -80253,6 +80324,7 @@ export namespace Prisma {
|
|
|
80253
80324
|
chat?: ChatUncheckedUpdateOneWithoutOptInNestedInput
|
|
80254
80325
|
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutOptInNestedInput
|
|
80255
80326
|
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
|
|
80327
|
+
affiliateClicks?: AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
80256
80328
|
}
|
|
80257
80329
|
|
|
80258
80330
|
export type OptInCreateManyInput = {
|
|
@@ -81086,6 +81158,7 @@ export namespace Prisma {
|
|
|
81086
81158
|
created?: Date | string
|
|
81087
81159
|
visitorIp?: string | null
|
|
81088
81160
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
81161
|
+
optin: OptInCreateNestedOneWithoutAffiliateClicksInput
|
|
81089
81162
|
affiliateLink: AffiliateLinkCreateNestedOneWithoutAffiliateClicksInput
|
|
81090
81163
|
affiliateEvent?: AffiliateEventCreateNestedManyWithoutAffiliateClickInput
|
|
81091
81164
|
}
|
|
@@ -81094,6 +81167,7 @@ export namespace Prisma {
|
|
|
81094
81167
|
id?: number
|
|
81095
81168
|
created?: Date | string
|
|
81096
81169
|
visitorIp?: string | null
|
|
81170
|
+
optInId: number
|
|
81097
81171
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
81098
81172
|
affiliateLinkId: number
|
|
81099
81173
|
affiliateEvent?: AffiliateEventUncheckedCreateNestedManyWithoutAffiliateClickInput
|
|
@@ -81103,6 +81177,7 @@ export namespace Prisma {
|
|
|
81103
81177
|
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
81104
81178
|
visitorIp?: NullableStringFieldUpdateOperationsInput | string | null
|
|
81105
81179
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
81180
|
+
optin?: OptInUpdateOneRequiredWithoutAffiliateClicksNestedInput
|
|
81106
81181
|
affiliateLink?: AffiliateLinkUpdateOneRequiredWithoutAffiliateClicksNestedInput
|
|
81107
81182
|
affiliateEvent?: AffiliateEventUpdateManyWithoutAffiliateClickNestedInput
|
|
81108
81183
|
}
|
|
@@ -81111,6 +81186,7 @@ export namespace Prisma {
|
|
|
81111
81186
|
id?: IntFieldUpdateOperationsInput | number
|
|
81112
81187
|
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
81113
81188
|
visitorIp?: NullableStringFieldUpdateOperationsInput | string | null
|
|
81189
|
+
optInId?: IntFieldUpdateOperationsInput | number
|
|
81114
81190
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
81115
81191
|
affiliateLinkId?: IntFieldUpdateOperationsInput | number
|
|
81116
81192
|
affiliateEvent?: AffiliateEventUncheckedUpdateManyWithoutAffiliateClickNestedInput
|
|
@@ -81120,6 +81196,7 @@ export namespace Prisma {
|
|
|
81120
81196
|
id?: number
|
|
81121
81197
|
created?: Date | string
|
|
81122
81198
|
visitorIp?: string | null
|
|
81199
|
+
optInId: number
|
|
81123
81200
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
81124
81201
|
affiliateLinkId: number
|
|
81125
81202
|
}
|
|
@@ -81134,6 +81211,7 @@ export namespace Prisma {
|
|
|
81134
81211
|
id?: IntFieldUpdateOperationsInput | number
|
|
81135
81212
|
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
81136
81213
|
visitorIp?: NullableStringFieldUpdateOperationsInput | string | null
|
|
81214
|
+
optInId?: IntFieldUpdateOperationsInput | number
|
|
81137
81215
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
81138
81216
|
affiliateLinkId?: IntFieldUpdateOperationsInput | number
|
|
81139
81217
|
}
|
|
@@ -85043,10 +85121,20 @@ export namespace Prisma {
|
|
|
85043
85121
|
none?: TrolleyPaymentWhereInput
|
|
85044
85122
|
}
|
|
85045
85123
|
|
|
85124
|
+
export type AffiliateClickListRelationFilter = {
|
|
85125
|
+
every?: AffiliateClickWhereInput
|
|
85126
|
+
some?: AffiliateClickWhereInput
|
|
85127
|
+
none?: AffiliateClickWhereInput
|
|
85128
|
+
}
|
|
85129
|
+
|
|
85046
85130
|
export type TrolleyPaymentOrderByRelationAggregateInput = {
|
|
85047
85131
|
_count?: SortOrder
|
|
85048
85132
|
}
|
|
85049
85133
|
|
|
85134
|
+
export type AffiliateClickOrderByRelationAggregateInput = {
|
|
85135
|
+
_count?: SortOrder
|
|
85136
|
+
}
|
|
85137
|
+
|
|
85050
85138
|
export type OptInOrderByRelevanceInput = {
|
|
85051
85139
|
fields: OptInOrderByRelevanceFieldEnum | OptInOrderByRelevanceFieldEnum[]
|
|
85052
85140
|
sort: SortOrder
|
|
@@ -85691,21 +85779,11 @@ export namespace Prisma {
|
|
|
85691
85779
|
brandId?: SortOrder
|
|
85692
85780
|
}
|
|
85693
85781
|
|
|
85694
|
-
export type AffiliateClickListRelationFilter = {
|
|
85695
|
-
every?: AffiliateClickWhereInput
|
|
85696
|
-
some?: AffiliateClickWhereInput
|
|
85697
|
-
none?: AffiliateClickWhereInput
|
|
85698
|
-
}
|
|
85699
|
-
|
|
85700
85782
|
export type BrandAffiliateLinkRelationFilter = {
|
|
85701
85783
|
is?: BrandAffiliateLinkWhereInput
|
|
85702
85784
|
isNot?: BrandAffiliateLinkWhereInput
|
|
85703
85785
|
}
|
|
85704
85786
|
|
|
85705
|
-
export type AffiliateClickOrderByRelationAggregateInput = {
|
|
85706
|
-
_count?: SortOrder
|
|
85707
|
-
}
|
|
85708
|
-
|
|
85709
85787
|
export type AffiliateLinkCountOrderByAggregateInput = {
|
|
85710
85788
|
id?: SortOrder
|
|
85711
85789
|
created?: SortOrder
|
|
@@ -85765,12 +85843,14 @@ export namespace Prisma {
|
|
|
85765
85843
|
id?: SortOrder
|
|
85766
85844
|
created?: SortOrder
|
|
85767
85845
|
visitorIp?: SortOrder
|
|
85846
|
+
optInId?: SortOrder
|
|
85768
85847
|
metaData?: SortOrder
|
|
85769
85848
|
affiliateLinkId?: SortOrder
|
|
85770
85849
|
}
|
|
85771
85850
|
|
|
85772
85851
|
export type AffiliateClickAvgOrderByAggregateInput = {
|
|
85773
85852
|
id?: SortOrder
|
|
85853
|
+
optInId?: SortOrder
|
|
85774
85854
|
affiliateLinkId?: SortOrder
|
|
85775
85855
|
}
|
|
85776
85856
|
|
|
@@ -85778,6 +85858,7 @@ export namespace Prisma {
|
|
|
85778
85858
|
id?: SortOrder
|
|
85779
85859
|
created?: SortOrder
|
|
85780
85860
|
visitorIp?: SortOrder
|
|
85861
|
+
optInId?: SortOrder
|
|
85781
85862
|
affiliateLinkId?: SortOrder
|
|
85782
85863
|
}
|
|
85783
85864
|
|
|
@@ -85785,11 +85866,13 @@ export namespace Prisma {
|
|
|
85785
85866
|
id?: SortOrder
|
|
85786
85867
|
created?: SortOrder
|
|
85787
85868
|
visitorIp?: SortOrder
|
|
85869
|
+
optInId?: SortOrder
|
|
85788
85870
|
affiliateLinkId?: SortOrder
|
|
85789
85871
|
}
|
|
85790
85872
|
|
|
85791
85873
|
export type AffiliateClickSumOrderByAggregateInput = {
|
|
85792
85874
|
id?: SortOrder
|
|
85875
|
+
optInId?: SortOrder
|
|
85793
85876
|
affiliateLinkId?: SortOrder
|
|
85794
85877
|
}
|
|
85795
85878
|
|
|
@@ -90263,6 +90346,13 @@ export namespace Prisma {
|
|
|
90263
90346
|
connect?: TrolleyPaymentWhereUniqueInput | TrolleyPaymentWhereUniqueInput[]
|
|
90264
90347
|
}
|
|
90265
90348
|
|
|
90349
|
+
export type AffiliateClickCreateNestedManyWithoutOptinInput = {
|
|
90350
|
+
create?: XOR<AffiliateClickCreateWithoutOptinInput, AffiliateClickUncheckedCreateWithoutOptinInput> | AffiliateClickCreateWithoutOptinInput[] | AffiliateClickUncheckedCreateWithoutOptinInput[]
|
|
90351
|
+
connectOrCreate?: AffiliateClickCreateOrConnectWithoutOptinInput | AffiliateClickCreateOrConnectWithoutOptinInput[]
|
|
90352
|
+
createMany?: AffiliateClickCreateManyOptinInputEnvelope
|
|
90353
|
+
connect?: AffiliateClickWhereUniqueInput | AffiliateClickWhereUniqueInput[]
|
|
90354
|
+
}
|
|
90355
|
+
|
|
90266
90356
|
export type OptInVariableUncheckedCreateNestedManyWithoutOptInInput = {
|
|
90267
90357
|
create?: XOR<OptInVariableCreateWithoutOptInInput, OptInVariableUncheckedCreateWithoutOptInInput> | OptInVariableCreateWithoutOptInInput[] | OptInVariableUncheckedCreateWithoutOptInInput[]
|
|
90268
90358
|
connectOrCreate?: OptInVariableCreateOrConnectWithoutOptInInput | OptInVariableCreateOrConnectWithoutOptInInput[]
|
|
@@ -90297,6 +90387,13 @@ export namespace Prisma {
|
|
|
90297
90387
|
connect?: TrolleyPaymentWhereUniqueInput | TrolleyPaymentWhereUniqueInput[]
|
|
90298
90388
|
}
|
|
90299
90389
|
|
|
90390
|
+
export type AffiliateClickUncheckedCreateNestedManyWithoutOptinInput = {
|
|
90391
|
+
create?: XOR<AffiliateClickCreateWithoutOptinInput, AffiliateClickUncheckedCreateWithoutOptinInput> | AffiliateClickCreateWithoutOptinInput[] | AffiliateClickUncheckedCreateWithoutOptinInput[]
|
|
90392
|
+
connectOrCreate?: AffiliateClickCreateOrConnectWithoutOptinInput | AffiliateClickCreateOrConnectWithoutOptinInput[]
|
|
90393
|
+
createMany?: AffiliateClickCreateManyOptinInputEnvelope
|
|
90394
|
+
connect?: AffiliateClickWhereUniqueInput | AffiliateClickWhereUniqueInput[]
|
|
90395
|
+
}
|
|
90396
|
+
|
|
90300
90397
|
export type UserUpdateOneRequiredWithoutOptInsNestedInput = {
|
|
90301
90398
|
create?: XOR<UserCreateWithoutOptInsInput, UserUncheckedCreateWithoutOptInsInput>
|
|
90302
90399
|
connectOrCreate?: UserCreateOrConnectWithoutOptInsInput
|
|
@@ -90389,6 +90486,20 @@ export namespace Prisma {
|
|
|
90389
90486
|
deleteMany?: TrolleyPaymentScalarWhereInput | TrolleyPaymentScalarWhereInput[]
|
|
90390
90487
|
}
|
|
90391
90488
|
|
|
90489
|
+
export type AffiliateClickUpdateManyWithoutOptinNestedInput = {
|
|
90490
|
+
create?: XOR<AffiliateClickCreateWithoutOptinInput, AffiliateClickUncheckedCreateWithoutOptinInput> | AffiliateClickCreateWithoutOptinInput[] | AffiliateClickUncheckedCreateWithoutOptinInput[]
|
|
90491
|
+
connectOrCreate?: AffiliateClickCreateOrConnectWithoutOptinInput | AffiliateClickCreateOrConnectWithoutOptinInput[]
|
|
90492
|
+
upsert?: AffiliateClickUpsertWithWhereUniqueWithoutOptinInput | AffiliateClickUpsertWithWhereUniqueWithoutOptinInput[]
|
|
90493
|
+
createMany?: AffiliateClickCreateManyOptinInputEnvelope
|
|
90494
|
+
set?: AffiliateClickWhereUniqueInput | AffiliateClickWhereUniqueInput[]
|
|
90495
|
+
disconnect?: AffiliateClickWhereUniqueInput | AffiliateClickWhereUniqueInput[]
|
|
90496
|
+
delete?: AffiliateClickWhereUniqueInput | AffiliateClickWhereUniqueInput[]
|
|
90497
|
+
connect?: AffiliateClickWhereUniqueInput | AffiliateClickWhereUniqueInput[]
|
|
90498
|
+
update?: AffiliateClickUpdateWithWhereUniqueWithoutOptinInput | AffiliateClickUpdateWithWhereUniqueWithoutOptinInput[]
|
|
90499
|
+
updateMany?: AffiliateClickUpdateManyWithWhereWithoutOptinInput | AffiliateClickUpdateManyWithWhereWithoutOptinInput[]
|
|
90500
|
+
deleteMany?: AffiliateClickScalarWhereInput | AffiliateClickScalarWhereInput[]
|
|
90501
|
+
}
|
|
90502
|
+
|
|
90392
90503
|
export type OptInVariableUncheckedUpdateManyWithoutOptInNestedInput = {
|
|
90393
90504
|
create?: XOR<OptInVariableCreateWithoutOptInInput, OptInVariableUncheckedCreateWithoutOptInInput> | OptInVariableCreateWithoutOptInInput[] | OptInVariableUncheckedCreateWithoutOptInInput[]
|
|
90394
90505
|
connectOrCreate?: OptInVariableCreateOrConnectWithoutOptInInput | OptInVariableCreateOrConnectWithoutOptInInput[]
|
|
@@ -90455,6 +90566,20 @@ export namespace Prisma {
|
|
|
90455
90566
|
deleteMany?: TrolleyPaymentScalarWhereInput | TrolleyPaymentScalarWhereInput[]
|
|
90456
90567
|
}
|
|
90457
90568
|
|
|
90569
|
+
export type AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput = {
|
|
90570
|
+
create?: XOR<AffiliateClickCreateWithoutOptinInput, AffiliateClickUncheckedCreateWithoutOptinInput> | AffiliateClickCreateWithoutOptinInput[] | AffiliateClickUncheckedCreateWithoutOptinInput[]
|
|
90571
|
+
connectOrCreate?: AffiliateClickCreateOrConnectWithoutOptinInput | AffiliateClickCreateOrConnectWithoutOptinInput[]
|
|
90572
|
+
upsert?: AffiliateClickUpsertWithWhereUniqueWithoutOptinInput | AffiliateClickUpsertWithWhereUniqueWithoutOptinInput[]
|
|
90573
|
+
createMany?: AffiliateClickCreateManyOptinInputEnvelope
|
|
90574
|
+
set?: AffiliateClickWhereUniqueInput | AffiliateClickWhereUniqueInput[]
|
|
90575
|
+
disconnect?: AffiliateClickWhereUniqueInput | AffiliateClickWhereUniqueInput[]
|
|
90576
|
+
delete?: AffiliateClickWhereUniqueInput | AffiliateClickWhereUniqueInput[]
|
|
90577
|
+
connect?: AffiliateClickWhereUniqueInput | AffiliateClickWhereUniqueInput[]
|
|
90578
|
+
update?: AffiliateClickUpdateWithWhereUniqueWithoutOptinInput | AffiliateClickUpdateWithWhereUniqueWithoutOptinInput[]
|
|
90579
|
+
updateMany?: AffiliateClickUpdateManyWithWhereWithoutOptinInput | AffiliateClickUpdateManyWithWhereWithoutOptinInput[]
|
|
90580
|
+
deleteMany?: AffiliateClickScalarWhereInput | AffiliateClickScalarWhereInput[]
|
|
90581
|
+
}
|
|
90582
|
+
|
|
90458
90583
|
export type OptInCreateNestedOneWithoutTrolleyPaymentsInput = {
|
|
90459
90584
|
create?: XOR<OptInCreateWithoutTrolleyPaymentsInput, OptInUncheckedCreateWithoutTrolleyPaymentsInput>
|
|
90460
90585
|
connectOrCreate?: OptInCreateOrConnectWithoutTrolleyPaymentsInput
|
|
@@ -90927,6 +91052,12 @@ export namespace Prisma {
|
|
|
90927
91052
|
deleteMany?: AffiliateClickScalarWhereInput | AffiliateClickScalarWhereInput[]
|
|
90928
91053
|
}
|
|
90929
91054
|
|
|
91055
|
+
export type OptInCreateNestedOneWithoutAffiliateClicksInput = {
|
|
91056
|
+
create?: XOR<OptInCreateWithoutAffiliateClicksInput, OptInUncheckedCreateWithoutAffiliateClicksInput>
|
|
91057
|
+
connectOrCreate?: OptInCreateOrConnectWithoutAffiliateClicksInput
|
|
91058
|
+
connect?: OptInWhereUniqueInput
|
|
91059
|
+
}
|
|
91060
|
+
|
|
90930
91061
|
export type AffiliateLinkCreateNestedOneWithoutAffiliateClicksInput = {
|
|
90931
91062
|
create?: XOR<AffiliateLinkCreateWithoutAffiliateClicksInput, AffiliateLinkUncheckedCreateWithoutAffiliateClicksInput>
|
|
90932
91063
|
connectOrCreate?: AffiliateLinkCreateOrConnectWithoutAffiliateClicksInput
|
|
@@ -90947,6 +91078,14 @@ export namespace Prisma {
|
|
|
90947
91078
|
connect?: AffiliateEventWhereUniqueInput | AffiliateEventWhereUniqueInput[]
|
|
90948
91079
|
}
|
|
90949
91080
|
|
|
91081
|
+
export type OptInUpdateOneRequiredWithoutAffiliateClicksNestedInput = {
|
|
91082
|
+
create?: XOR<OptInCreateWithoutAffiliateClicksInput, OptInUncheckedCreateWithoutAffiliateClicksInput>
|
|
91083
|
+
connectOrCreate?: OptInCreateOrConnectWithoutAffiliateClicksInput
|
|
91084
|
+
upsert?: OptInUpsertWithoutAffiliateClicksInput
|
|
91085
|
+
connect?: OptInWhereUniqueInput
|
|
91086
|
+
update?: XOR<XOR<OptInUpdateToOneWithWhereWithoutAffiliateClicksInput, OptInUpdateWithoutAffiliateClicksInput>, OptInUncheckedUpdateWithoutAffiliateClicksInput>
|
|
91087
|
+
}
|
|
91088
|
+
|
|
90950
91089
|
export type AffiliateLinkUpdateOneRequiredWithoutAffiliateClicksNestedInput = {
|
|
90951
91090
|
create?: XOR<AffiliateLinkCreateWithoutAffiliateClicksInput, AffiliateLinkUncheckedCreateWithoutAffiliateClicksInput>
|
|
90952
91091
|
connectOrCreate?: AffiliateLinkCreateOrConnectWithoutAffiliateClicksInput
|
|
@@ -92935,6 +93074,7 @@ export namespace Prisma {
|
|
|
92935
93074
|
chat?: ChatCreateNestedOneWithoutOptInInput
|
|
92936
93075
|
campaignInvites?: CampaignInviteCreateNestedManyWithoutOptInInput
|
|
92937
93076
|
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
|
|
93077
|
+
affiliateClicks?: AffiliateClickCreateNestedManyWithoutOptinInput
|
|
92938
93078
|
}
|
|
92939
93079
|
|
|
92940
93080
|
export type OptInUncheckedCreateWithoutUserInput = {
|
|
@@ -92959,6 +93099,7 @@ export namespace Prisma {
|
|
|
92959
93099
|
chat?: ChatUncheckedCreateNestedOneWithoutOptInInput
|
|
92960
93100
|
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutOptInInput
|
|
92961
93101
|
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
|
|
93102
|
+
affiliateClicks?: AffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
92962
93103
|
}
|
|
92963
93104
|
|
|
92964
93105
|
export type OptInCreateOrConnectWithoutUserInput = {
|
|
@@ -99569,6 +99710,7 @@ export namespace Prisma {
|
|
|
99569
99710
|
optInSteps?: OptInStepCreateNestedManyWithoutOptInInput
|
|
99570
99711
|
campaignInvites?: CampaignInviteCreateNestedManyWithoutOptInInput
|
|
99571
99712
|
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
|
|
99713
|
+
affiliateClicks?: AffiliateClickCreateNestedManyWithoutOptinInput
|
|
99572
99714
|
}
|
|
99573
99715
|
|
|
99574
99716
|
export type OptInUncheckedCreateWithoutChatInput = {
|
|
@@ -99593,6 +99735,7 @@ export namespace Prisma {
|
|
|
99593
99735
|
optInSteps?: OptInStepUncheckedCreateNestedManyWithoutOptInInput
|
|
99594
99736
|
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutOptInInput
|
|
99595
99737
|
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
|
|
99738
|
+
affiliateClicks?: AffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
99596
99739
|
}
|
|
99597
99740
|
|
|
99598
99741
|
export type OptInCreateOrConnectWithoutChatInput = {
|
|
@@ -99663,6 +99806,7 @@ export namespace Prisma {
|
|
|
99663
99806
|
optInSteps?: OptInStepUpdateManyWithoutOptInNestedInput
|
|
99664
99807
|
campaignInvites?: CampaignInviteUpdateManyWithoutOptInNestedInput
|
|
99665
99808
|
trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
|
|
99809
|
+
affiliateClicks?: AffiliateClickUpdateManyWithoutOptinNestedInput
|
|
99666
99810
|
}
|
|
99667
99811
|
|
|
99668
99812
|
export type OptInUncheckedUpdateWithoutChatInput = {
|
|
@@ -99687,6 +99831,7 @@ export namespace Prisma {
|
|
|
99687
99831
|
optInSteps?: OptInStepUncheckedUpdateManyWithoutOptInNestedInput
|
|
99688
99832
|
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutOptInNestedInput
|
|
99689
99833
|
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
|
|
99834
|
+
affiliateClicks?: AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
99690
99835
|
}
|
|
99691
99836
|
|
|
99692
99837
|
export type MessageUpsertWithWhereUniqueWithoutChatInput = {
|
|
@@ -100005,6 +100150,7 @@ export namespace Prisma {
|
|
|
100005
100150
|
chat?: ChatCreateNestedOneWithoutOptInInput
|
|
100006
100151
|
campaignInvites?: CampaignInviteCreateNestedManyWithoutOptInInput
|
|
100007
100152
|
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
|
|
100153
|
+
affiliateClicks?: AffiliateClickCreateNestedManyWithoutOptinInput
|
|
100008
100154
|
}
|
|
100009
100155
|
|
|
100010
100156
|
export type OptInUncheckedCreateWithoutCampaignInput = {
|
|
@@ -100029,6 +100175,7 @@ export namespace Prisma {
|
|
|
100029
100175
|
chat?: ChatUncheckedCreateNestedOneWithoutOptInInput
|
|
100030
100176
|
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutOptInInput
|
|
100031
100177
|
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
|
|
100178
|
+
affiliateClicks?: AffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
100032
100179
|
}
|
|
100033
100180
|
|
|
100034
100181
|
export type OptInCreateOrConnectWithoutCampaignInput = {
|
|
@@ -102872,6 +103019,7 @@ export namespace Prisma {
|
|
|
102872
103019
|
chat?: ChatCreateNestedOneWithoutOptInInput
|
|
102873
103020
|
campaignInvites?: CampaignInviteCreateNestedManyWithoutOptInInput
|
|
102874
103021
|
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
|
|
103022
|
+
affiliateClicks?: AffiliateClickCreateNestedManyWithoutOptinInput
|
|
102875
103023
|
}
|
|
102876
103024
|
|
|
102877
103025
|
export type OptInUncheckedCreateWithoutCurrentStepInput = {
|
|
@@ -102896,6 +103044,7 @@ export namespace Prisma {
|
|
|
102896
103044
|
chat?: ChatUncheckedCreateNestedOneWithoutOptInInput
|
|
102897
103045
|
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutOptInInput
|
|
102898
103046
|
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
|
|
103047
|
+
affiliateClicks?: AffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
102899
103048
|
}
|
|
102900
103049
|
|
|
102901
103050
|
export type OptInCreateOrConnectWithoutCurrentStepInput = {
|
|
@@ -103166,6 +103315,7 @@ export namespace Prisma {
|
|
|
103166
103315
|
chat?: ChatCreateNestedOneWithoutOptInInput
|
|
103167
103316
|
campaignInvites?: CampaignInviteCreateNestedManyWithoutOptInInput
|
|
103168
103317
|
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
|
|
103318
|
+
affiliateClicks?: AffiliateClickCreateNestedManyWithoutOptinInput
|
|
103169
103319
|
}
|
|
103170
103320
|
|
|
103171
103321
|
export type OptInUncheckedCreateWithoutOptInStepsInput = {
|
|
@@ -103190,6 +103340,7 @@ export namespace Prisma {
|
|
|
103190
103340
|
chat?: ChatUncheckedCreateNestedOneWithoutOptInInput
|
|
103191
103341
|
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutOptInInput
|
|
103192
103342
|
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
|
|
103343
|
+
affiliateClicks?: AffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
103193
103344
|
}
|
|
103194
103345
|
|
|
103195
103346
|
export type OptInCreateOrConnectWithoutOptInStepsInput = {
|
|
@@ -103261,6 +103412,7 @@ export namespace Prisma {
|
|
|
103261
103412
|
chat?: ChatUpdateOneWithoutOptInNestedInput
|
|
103262
103413
|
campaignInvites?: CampaignInviteUpdateManyWithoutOptInNestedInput
|
|
103263
103414
|
trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
|
|
103415
|
+
affiliateClicks?: AffiliateClickUpdateManyWithoutOptinNestedInput
|
|
103264
103416
|
}
|
|
103265
103417
|
|
|
103266
103418
|
export type OptInUncheckedUpdateWithoutOptInStepsInput = {
|
|
@@ -103285,6 +103437,7 @@ export namespace Prisma {
|
|
|
103285
103437
|
chat?: ChatUncheckedUpdateOneWithoutOptInNestedInput
|
|
103286
103438
|
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutOptInNestedInput
|
|
103287
103439
|
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
|
|
103440
|
+
affiliateClicks?: AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
103288
103441
|
}
|
|
103289
103442
|
|
|
103290
103443
|
export type CampaignStepUpsertWithoutOptInStepsInput = {
|
|
@@ -103807,6 +103960,33 @@ export namespace Prisma {
|
|
|
103807
103960
|
skipDuplicates?: boolean
|
|
103808
103961
|
}
|
|
103809
103962
|
|
|
103963
|
+
export type AffiliateClickCreateWithoutOptinInput = {
|
|
103964
|
+
created?: Date | string
|
|
103965
|
+
visitorIp?: string | null
|
|
103966
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
103967
|
+
affiliateLink: AffiliateLinkCreateNestedOneWithoutAffiliateClicksInput
|
|
103968
|
+
affiliateEvent?: AffiliateEventCreateNestedManyWithoutAffiliateClickInput
|
|
103969
|
+
}
|
|
103970
|
+
|
|
103971
|
+
export type AffiliateClickUncheckedCreateWithoutOptinInput = {
|
|
103972
|
+
id?: number
|
|
103973
|
+
created?: Date | string
|
|
103974
|
+
visitorIp?: string | null
|
|
103975
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
103976
|
+
affiliateLinkId: number
|
|
103977
|
+
affiliateEvent?: AffiliateEventUncheckedCreateNestedManyWithoutAffiliateClickInput
|
|
103978
|
+
}
|
|
103979
|
+
|
|
103980
|
+
export type AffiliateClickCreateOrConnectWithoutOptinInput = {
|
|
103981
|
+
where: AffiliateClickWhereUniqueInput
|
|
103982
|
+
create: XOR<AffiliateClickCreateWithoutOptinInput, AffiliateClickUncheckedCreateWithoutOptinInput>
|
|
103983
|
+
}
|
|
103984
|
+
|
|
103985
|
+
export type AffiliateClickCreateManyOptinInputEnvelope = {
|
|
103986
|
+
data: AffiliateClickCreateManyOptinInput | AffiliateClickCreateManyOptinInput[]
|
|
103987
|
+
skipDuplicates?: boolean
|
|
103988
|
+
}
|
|
103989
|
+
|
|
103810
103990
|
export type UserUpsertWithoutOptInsInput = {
|
|
103811
103991
|
update: XOR<UserUpdateWithoutOptInsInput, UserUncheckedUpdateWithoutOptInsInput>
|
|
103812
103992
|
create: XOR<UserCreateWithoutOptInsInput, UserUncheckedCreateWithoutOptInsInput>
|
|
@@ -104182,6 +104362,34 @@ export namespace Prisma {
|
|
|
104182
104362
|
metaData?: JsonFilter<"TrolleyPayment">
|
|
104183
104363
|
}
|
|
104184
104364
|
|
|
104365
|
+
export type AffiliateClickUpsertWithWhereUniqueWithoutOptinInput = {
|
|
104366
|
+
where: AffiliateClickWhereUniqueInput
|
|
104367
|
+
update: XOR<AffiliateClickUpdateWithoutOptinInput, AffiliateClickUncheckedUpdateWithoutOptinInput>
|
|
104368
|
+
create: XOR<AffiliateClickCreateWithoutOptinInput, AffiliateClickUncheckedCreateWithoutOptinInput>
|
|
104369
|
+
}
|
|
104370
|
+
|
|
104371
|
+
export type AffiliateClickUpdateWithWhereUniqueWithoutOptinInput = {
|
|
104372
|
+
where: AffiliateClickWhereUniqueInput
|
|
104373
|
+
data: XOR<AffiliateClickUpdateWithoutOptinInput, AffiliateClickUncheckedUpdateWithoutOptinInput>
|
|
104374
|
+
}
|
|
104375
|
+
|
|
104376
|
+
export type AffiliateClickUpdateManyWithWhereWithoutOptinInput = {
|
|
104377
|
+
where: AffiliateClickScalarWhereInput
|
|
104378
|
+
data: XOR<AffiliateClickUpdateManyMutationInput, AffiliateClickUncheckedUpdateManyWithoutOptinInput>
|
|
104379
|
+
}
|
|
104380
|
+
|
|
104381
|
+
export type AffiliateClickScalarWhereInput = {
|
|
104382
|
+
AND?: AffiliateClickScalarWhereInput | AffiliateClickScalarWhereInput[]
|
|
104383
|
+
OR?: AffiliateClickScalarWhereInput[]
|
|
104384
|
+
NOT?: AffiliateClickScalarWhereInput | AffiliateClickScalarWhereInput[]
|
|
104385
|
+
id?: IntFilter<"AffiliateClick"> | number
|
|
104386
|
+
created?: DateTimeFilter<"AffiliateClick"> | Date | string
|
|
104387
|
+
visitorIp?: StringNullableFilter<"AffiliateClick"> | string | null
|
|
104388
|
+
optInId?: IntFilter<"AffiliateClick"> | number
|
|
104389
|
+
metaData?: JsonFilter<"AffiliateClick">
|
|
104390
|
+
affiliateLinkId?: IntFilter<"AffiliateClick"> | number
|
|
104391
|
+
}
|
|
104392
|
+
|
|
104185
104393
|
export type OptInCreateWithoutTrolleyPaymentsInput = {
|
|
104186
104394
|
status?: string
|
|
104187
104395
|
created?: Date | string
|
|
@@ -104203,6 +104411,7 @@ export namespace Prisma {
|
|
|
104203
104411
|
optInSteps?: OptInStepCreateNestedManyWithoutOptInInput
|
|
104204
104412
|
chat?: ChatCreateNestedOneWithoutOptInInput
|
|
104205
104413
|
campaignInvites?: CampaignInviteCreateNestedManyWithoutOptInInput
|
|
104414
|
+
affiliateClicks?: AffiliateClickCreateNestedManyWithoutOptinInput
|
|
104206
104415
|
}
|
|
104207
104416
|
|
|
104208
104417
|
export type OptInUncheckedCreateWithoutTrolleyPaymentsInput = {
|
|
@@ -104227,6 +104436,7 @@ export namespace Prisma {
|
|
|
104227
104436
|
optInSteps?: OptInStepUncheckedCreateNestedManyWithoutOptInInput
|
|
104228
104437
|
chat?: ChatUncheckedCreateNestedOneWithoutOptInInput
|
|
104229
104438
|
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutOptInInput
|
|
104439
|
+
affiliateClicks?: AffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
104230
104440
|
}
|
|
104231
104441
|
|
|
104232
104442
|
export type OptInCreateOrConnectWithoutTrolleyPaymentsInput = {
|
|
@@ -104266,6 +104476,7 @@ export namespace Prisma {
|
|
|
104266
104476
|
optInSteps?: OptInStepUpdateManyWithoutOptInNestedInput
|
|
104267
104477
|
chat?: ChatUpdateOneWithoutOptInNestedInput
|
|
104268
104478
|
campaignInvites?: CampaignInviteUpdateManyWithoutOptInNestedInput
|
|
104479
|
+
affiliateClicks?: AffiliateClickUpdateManyWithoutOptinNestedInput
|
|
104269
104480
|
}
|
|
104270
104481
|
|
|
104271
104482
|
export type OptInUncheckedUpdateWithoutTrolleyPaymentsInput = {
|
|
@@ -104290,6 +104501,7 @@ export namespace Prisma {
|
|
|
104290
104501
|
optInSteps?: OptInStepUncheckedUpdateManyWithoutOptInNestedInput
|
|
104291
104502
|
chat?: ChatUncheckedUpdateOneWithoutOptInNestedInput
|
|
104292
104503
|
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutOptInNestedInput
|
|
104504
|
+
affiliateClicks?: AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
104293
104505
|
}
|
|
104294
104506
|
|
|
104295
104507
|
export type OptInCreateWithoutVariablesInput = {
|
|
@@ -104313,6 +104525,7 @@ export namespace Prisma {
|
|
|
104313
104525
|
chat?: ChatCreateNestedOneWithoutOptInInput
|
|
104314
104526
|
campaignInvites?: CampaignInviteCreateNestedManyWithoutOptInInput
|
|
104315
104527
|
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
|
|
104528
|
+
affiliateClicks?: AffiliateClickCreateNestedManyWithoutOptinInput
|
|
104316
104529
|
}
|
|
104317
104530
|
|
|
104318
104531
|
export type OptInUncheckedCreateWithoutVariablesInput = {
|
|
@@ -104337,6 +104550,7 @@ export namespace Prisma {
|
|
|
104337
104550
|
chat?: ChatUncheckedCreateNestedOneWithoutOptInInput
|
|
104338
104551
|
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutOptInInput
|
|
104339
104552
|
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
|
|
104553
|
+
affiliateClicks?: AffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
104340
104554
|
}
|
|
104341
104555
|
|
|
104342
104556
|
export type OptInCreateOrConnectWithoutVariablesInput = {
|
|
@@ -104418,6 +104632,7 @@ export namespace Prisma {
|
|
|
104418
104632
|
chat?: ChatUpdateOneWithoutOptInNestedInput
|
|
104419
104633
|
campaignInvites?: CampaignInviteUpdateManyWithoutOptInNestedInput
|
|
104420
104634
|
trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
|
|
104635
|
+
affiliateClicks?: AffiliateClickUpdateManyWithoutOptinNestedInput
|
|
104421
104636
|
}
|
|
104422
104637
|
|
|
104423
104638
|
export type OptInUncheckedUpdateWithoutVariablesInput = {
|
|
@@ -104442,6 +104657,7 @@ export namespace Prisma {
|
|
|
104442
104657
|
chat?: ChatUncheckedUpdateOneWithoutOptInNestedInput
|
|
104443
104658
|
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutOptInNestedInput
|
|
104444
104659
|
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
|
|
104660
|
+
affiliateClicks?: AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
104445
104661
|
}
|
|
104446
104662
|
|
|
104447
104663
|
export type VariableUpsertWithoutOptInVariablesInput = {
|
|
@@ -105888,6 +106104,7 @@ export namespace Prisma {
|
|
|
105888
106104
|
created?: Date | string
|
|
105889
106105
|
visitorIp?: string | null
|
|
105890
106106
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
106107
|
+
optin: OptInCreateNestedOneWithoutAffiliateClicksInput
|
|
105891
106108
|
affiliateEvent?: AffiliateEventCreateNestedManyWithoutAffiliateClickInput
|
|
105892
106109
|
}
|
|
105893
106110
|
|
|
@@ -105895,6 +106112,7 @@ export namespace Prisma {
|
|
|
105895
106112
|
id?: number
|
|
105896
106113
|
created?: Date | string
|
|
105897
106114
|
visitorIp?: string | null
|
|
106115
|
+
optInId: number
|
|
105898
106116
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
105899
106117
|
affiliateEvent?: AffiliateEventUncheckedCreateNestedManyWithoutAffiliateClickInput
|
|
105900
106118
|
}
|
|
@@ -106035,17 +106253,6 @@ export namespace Prisma {
|
|
|
106035
106253
|
data: XOR<AffiliateClickUpdateManyMutationInput, AffiliateClickUncheckedUpdateManyWithoutAffiliateLinkInput>
|
|
106036
106254
|
}
|
|
106037
106255
|
|
|
106038
|
-
export type AffiliateClickScalarWhereInput = {
|
|
106039
|
-
AND?: AffiliateClickScalarWhereInput | AffiliateClickScalarWhereInput[]
|
|
106040
|
-
OR?: AffiliateClickScalarWhereInput[]
|
|
106041
|
-
NOT?: AffiliateClickScalarWhereInput | AffiliateClickScalarWhereInput[]
|
|
106042
|
-
id?: IntFilter<"AffiliateClick"> | number
|
|
106043
|
-
created?: DateTimeFilter<"AffiliateClick"> | Date | string
|
|
106044
|
-
visitorIp?: StringNullableFilter<"AffiliateClick"> | string | null
|
|
106045
|
-
metaData?: JsonFilter<"AffiliateClick">
|
|
106046
|
-
affiliateLinkId?: IntFilter<"AffiliateClick"> | number
|
|
106047
|
-
}
|
|
106048
|
-
|
|
106049
106256
|
export type UserUpsertWithoutAffiliateLinksInput = {
|
|
106050
106257
|
update: XOR<UserUpdateWithoutAffiliateLinksInput, UserUncheckedUpdateWithoutAffiliateLinksInput>
|
|
106051
106258
|
create: XOR<UserCreateWithoutAffiliateLinksInput, UserUncheckedCreateWithoutAffiliateLinksInput>
|
|
@@ -106168,6 +106375,60 @@ export namespace Prisma {
|
|
|
106168
106375
|
brandId?: IntFieldUpdateOperationsInput | number
|
|
106169
106376
|
}
|
|
106170
106377
|
|
|
106378
|
+
export type OptInCreateWithoutAffiliateClicksInput = {
|
|
106379
|
+
status?: string
|
|
106380
|
+
created?: Date | string
|
|
106381
|
+
activated?: Date | string | null
|
|
106382
|
+
completed?: Date | string | null
|
|
106383
|
+
cancelled?: Date | string | null
|
|
106384
|
+
cancelledData?: JsonNullValueInput | InputJsonValue
|
|
106385
|
+
cancelRequested?: Date | string | null
|
|
106386
|
+
reinvited?: Date | string | null
|
|
106387
|
+
seen?: boolean
|
|
106388
|
+
instructions?: string | null
|
|
106389
|
+
paymentAmount?: number | null
|
|
106390
|
+
paymentStatus?: string
|
|
106391
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
106392
|
+
user: UserCreateNestedOneWithoutOptInsInput
|
|
106393
|
+
campaign: CampaignCreateNestedOneWithoutOptInsInput
|
|
106394
|
+
currentStep?: CampaignStepCreateNestedOneWithoutCurrentOptInsInput
|
|
106395
|
+
variables?: OptInVariableCreateNestedManyWithoutOptInInput
|
|
106396
|
+
optInSteps?: OptInStepCreateNestedManyWithoutOptInInput
|
|
106397
|
+
chat?: ChatCreateNestedOneWithoutOptInInput
|
|
106398
|
+
campaignInvites?: CampaignInviteCreateNestedManyWithoutOptInInput
|
|
106399
|
+
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
|
|
106400
|
+
}
|
|
106401
|
+
|
|
106402
|
+
export type OptInUncheckedCreateWithoutAffiliateClicksInput = {
|
|
106403
|
+
id?: number
|
|
106404
|
+
status?: string
|
|
106405
|
+
created?: Date | string
|
|
106406
|
+
activated?: Date | string | null
|
|
106407
|
+
completed?: Date | string | null
|
|
106408
|
+
cancelled?: Date | string | null
|
|
106409
|
+
cancelledData?: JsonNullValueInput | InputJsonValue
|
|
106410
|
+
cancelRequested?: Date | string | null
|
|
106411
|
+
reinvited?: Date | string | null
|
|
106412
|
+
seen?: boolean
|
|
106413
|
+
instructions?: string | null
|
|
106414
|
+
paymentAmount?: number | null
|
|
106415
|
+
paymentStatus?: string
|
|
106416
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
106417
|
+
userId: number
|
|
106418
|
+
campaignId: number
|
|
106419
|
+
currentStepId?: number | null
|
|
106420
|
+
variables?: OptInVariableUncheckedCreateNestedManyWithoutOptInInput
|
|
106421
|
+
optInSteps?: OptInStepUncheckedCreateNestedManyWithoutOptInInput
|
|
106422
|
+
chat?: ChatUncheckedCreateNestedOneWithoutOptInInput
|
|
106423
|
+
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutOptInInput
|
|
106424
|
+
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
|
|
106425
|
+
}
|
|
106426
|
+
|
|
106427
|
+
export type OptInCreateOrConnectWithoutAffiliateClicksInput = {
|
|
106428
|
+
where: OptInWhereUniqueInput
|
|
106429
|
+
create: XOR<OptInCreateWithoutAffiliateClicksInput, OptInUncheckedCreateWithoutAffiliateClicksInput>
|
|
106430
|
+
}
|
|
106431
|
+
|
|
106171
106432
|
export type AffiliateLinkCreateWithoutAffiliateClicksInput = {
|
|
106172
106433
|
created?: Date | string
|
|
106173
106434
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
@@ -106221,6 +106482,66 @@ export namespace Prisma {
|
|
|
106221
106482
|
skipDuplicates?: boolean
|
|
106222
106483
|
}
|
|
106223
106484
|
|
|
106485
|
+
export type OptInUpsertWithoutAffiliateClicksInput = {
|
|
106486
|
+
update: XOR<OptInUpdateWithoutAffiliateClicksInput, OptInUncheckedUpdateWithoutAffiliateClicksInput>
|
|
106487
|
+
create: XOR<OptInCreateWithoutAffiliateClicksInput, OptInUncheckedCreateWithoutAffiliateClicksInput>
|
|
106488
|
+
where?: OptInWhereInput
|
|
106489
|
+
}
|
|
106490
|
+
|
|
106491
|
+
export type OptInUpdateToOneWithWhereWithoutAffiliateClicksInput = {
|
|
106492
|
+
where?: OptInWhereInput
|
|
106493
|
+
data: XOR<OptInUpdateWithoutAffiliateClicksInput, OptInUncheckedUpdateWithoutAffiliateClicksInput>
|
|
106494
|
+
}
|
|
106495
|
+
|
|
106496
|
+
export type OptInUpdateWithoutAffiliateClicksInput = {
|
|
106497
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
106498
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
106499
|
+
activated?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
106500
|
+
completed?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
106501
|
+
cancelled?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
106502
|
+
cancelledData?: JsonNullValueInput | InputJsonValue
|
|
106503
|
+
cancelRequested?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
106504
|
+
reinvited?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
106505
|
+
seen?: BoolFieldUpdateOperationsInput | boolean
|
|
106506
|
+
instructions?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106507
|
+
paymentAmount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
106508
|
+
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
106509
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
106510
|
+
user?: UserUpdateOneRequiredWithoutOptInsNestedInput
|
|
106511
|
+
campaign?: CampaignUpdateOneRequiredWithoutOptInsNestedInput
|
|
106512
|
+
currentStep?: CampaignStepUpdateOneWithoutCurrentOptInsNestedInput
|
|
106513
|
+
variables?: OptInVariableUpdateManyWithoutOptInNestedInput
|
|
106514
|
+
optInSteps?: OptInStepUpdateManyWithoutOptInNestedInput
|
|
106515
|
+
chat?: ChatUpdateOneWithoutOptInNestedInput
|
|
106516
|
+
campaignInvites?: CampaignInviteUpdateManyWithoutOptInNestedInput
|
|
106517
|
+
trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
|
|
106518
|
+
}
|
|
106519
|
+
|
|
106520
|
+
export type OptInUncheckedUpdateWithoutAffiliateClicksInput = {
|
|
106521
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
106522
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
106523
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
106524
|
+
activated?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
106525
|
+
completed?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
106526
|
+
cancelled?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
106527
|
+
cancelledData?: JsonNullValueInput | InputJsonValue
|
|
106528
|
+
cancelRequested?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
106529
|
+
reinvited?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
106530
|
+
seen?: BoolFieldUpdateOperationsInput | boolean
|
|
106531
|
+
instructions?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106532
|
+
paymentAmount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
106533
|
+
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
106534
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
106535
|
+
userId?: IntFieldUpdateOperationsInput | number
|
|
106536
|
+
campaignId?: IntFieldUpdateOperationsInput | number
|
|
106537
|
+
currentStepId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
106538
|
+
variables?: OptInVariableUncheckedUpdateManyWithoutOptInNestedInput
|
|
106539
|
+
optInSteps?: OptInStepUncheckedUpdateManyWithoutOptInNestedInput
|
|
106540
|
+
chat?: ChatUncheckedUpdateOneWithoutOptInNestedInput
|
|
106541
|
+
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutOptInNestedInput
|
|
106542
|
+
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
|
|
106543
|
+
}
|
|
106544
|
+
|
|
106224
106545
|
export type AffiliateLinkUpsertWithoutAffiliateClicksInput = {
|
|
106225
106546
|
update: XOR<AffiliateLinkUpdateWithoutAffiliateClicksInput, AffiliateLinkUncheckedUpdateWithoutAffiliateClicksInput>
|
|
106226
106547
|
create: XOR<AffiliateLinkCreateWithoutAffiliateClicksInput, AffiliateLinkUncheckedCreateWithoutAffiliateClicksInput>
|
|
@@ -106283,6 +106604,7 @@ export namespace Prisma {
|
|
|
106283
106604
|
created?: Date | string
|
|
106284
106605
|
visitorIp?: string | null
|
|
106285
106606
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
106607
|
+
optin: OptInCreateNestedOneWithoutAffiliateClicksInput
|
|
106286
106608
|
affiliateLink: AffiliateLinkCreateNestedOneWithoutAffiliateClicksInput
|
|
106287
106609
|
}
|
|
106288
106610
|
|
|
@@ -106290,6 +106612,7 @@ export namespace Prisma {
|
|
|
106290
106612
|
id?: number
|
|
106291
106613
|
created?: Date | string
|
|
106292
106614
|
visitorIp?: string | null
|
|
106615
|
+
optInId: number
|
|
106293
106616
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
106294
106617
|
affiliateLinkId: number
|
|
106295
106618
|
}
|
|
@@ -106314,6 +106637,7 @@ export namespace Prisma {
|
|
|
106314
106637
|
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
106315
106638
|
visitorIp?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106316
106639
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
106640
|
+
optin?: OptInUpdateOneRequiredWithoutAffiliateClicksNestedInput
|
|
106317
106641
|
affiliateLink?: AffiliateLinkUpdateOneRequiredWithoutAffiliateClicksNestedInput
|
|
106318
106642
|
}
|
|
106319
106643
|
|
|
@@ -106321,6 +106645,7 @@ export namespace Prisma {
|
|
|
106321
106645
|
id?: IntFieldUpdateOperationsInput | number
|
|
106322
106646
|
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
106323
106647
|
visitorIp?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106648
|
+
optInId?: IntFieldUpdateOperationsInput | number
|
|
106324
106649
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
106325
106650
|
affiliateLinkId?: IntFieldUpdateOperationsInput | number
|
|
106326
106651
|
}
|
|
@@ -106768,6 +107093,7 @@ export namespace Prisma {
|
|
|
106768
107093
|
optInSteps?: OptInStepCreateNestedManyWithoutOptInInput
|
|
106769
107094
|
chat?: ChatCreateNestedOneWithoutOptInInput
|
|
106770
107095
|
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
|
|
107096
|
+
affiliateClicks?: AffiliateClickCreateNestedManyWithoutOptinInput
|
|
106771
107097
|
}
|
|
106772
107098
|
|
|
106773
107099
|
export type OptInUncheckedCreateWithoutCampaignInvitesInput = {
|
|
@@ -106792,6 +107118,7 @@ export namespace Prisma {
|
|
|
106792
107118
|
optInSteps?: OptInStepUncheckedCreateNestedManyWithoutOptInInput
|
|
106793
107119
|
chat?: ChatUncheckedCreateNestedOneWithoutOptInInput
|
|
106794
107120
|
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
|
|
107121
|
+
affiliateClicks?: AffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
106795
107122
|
}
|
|
106796
107123
|
|
|
106797
107124
|
export type OptInCreateOrConnectWithoutCampaignInvitesInput = {
|
|
@@ -107109,6 +107436,7 @@ export namespace Prisma {
|
|
|
107109
107436
|
optInSteps?: OptInStepUpdateManyWithoutOptInNestedInput
|
|
107110
107437
|
chat?: ChatUpdateOneWithoutOptInNestedInput
|
|
107111
107438
|
trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
|
|
107439
|
+
affiliateClicks?: AffiliateClickUpdateManyWithoutOptinNestedInput
|
|
107112
107440
|
}
|
|
107113
107441
|
|
|
107114
107442
|
export type OptInUncheckedUpdateWithoutCampaignInvitesInput = {
|
|
@@ -107133,6 +107461,7 @@ export namespace Prisma {
|
|
|
107133
107461
|
optInSteps?: OptInStepUncheckedUpdateManyWithoutOptInNestedInput
|
|
107134
107462
|
chat?: ChatUncheckedUpdateOneWithoutOptInNestedInput
|
|
107135
107463
|
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
|
|
107464
|
+
affiliateClicks?: AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
107136
107465
|
}
|
|
107137
107466
|
|
|
107138
107467
|
export type CreatorListItemCreateWithoutCreatorListInput = {
|
|
@@ -111665,6 +111994,7 @@ export namespace Prisma {
|
|
|
111665
111994
|
chat?: ChatUpdateOneWithoutOptInNestedInput
|
|
111666
111995
|
campaignInvites?: CampaignInviteUpdateManyWithoutOptInNestedInput
|
|
111667
111996
|
trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
|
|
111997
|
+
affiliateClicks?: AffiliateClickUpdateManyWithoutOptinNestedInput
|
|
111668
111998
|
}
|
|
111669
111999
|
|
|
111670
112000
|
export type OptInUncheckedUpdateWithoutUserInput = {
|
|
@@ -111689,6 +112019,7 @@ export namespace Prisma {
|
|
|
111689
112019
|
chat?: ChatUncheckedUpdateOneWithoutOptInNestedInput
|
|
111690
112020
|
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutOptInNestedInput
|
|
111691
112021
|
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
|
|
112022
|
+
affiliateClicks?: AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
111692
112023
|
}
|
|
111693
112024
|
|
|
111694
112025
|
export type OptInUncheckedUpdateManyWithoutUserInput = {
|
|
@@ -113342,6 +113673,7 @@ export namespace Prisma {
|
|
|
113342
113673
|
chat?: ChatUpdateOneWithoutOptInNestedInput
|
|
113343
113674
|
campaignInvites?: CampaignInviteUpdateManyWithoutOptInNestedInput
|
|
113344
113675
|
trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
|
|
113676
|
+
affiliateClicks?: AffiliateClickUpdateManyWithoutOptinNestedInput
|
|
113345
113677
|
}
|
|
113346
113678
|
|
|
113347
113679
|
export type OptInUncheckedUpdateWithoutCampaignInput = {
|
|
@@ -113366,6 +113698,7 @@ export namespace Prisma {
|
|
|
113366
113698
|
chat?: ChatUncheckedUpdateOneWithoutOptInNestedInput
|
|
113367
113699
|
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutOptInNestedInput
|
|
113368
113700
|
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
|
|
113701
|
+
affiliateClicks?: AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
113369
113702
|
}
|
|
113370
113703
|
|
|
113371
113704
|
export type OptInUncheckedUpdateManyWithoutCampaignInput = {
|
|
@@ -113881,6 +114214,7 @@ export namespace Prisma {
|
|
|
113881
114214
|
chat?: ChatUpdateOneWithoutOptInNestedInput
|
|
113882
114215
|
campaignInvites?: CampaignInviteUpdateManyWithoutOptInNestedInput
|
|
113883
114216
|
trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
|
|
114217
|
+
affiliateClicks?: AffiliateClickUpdateManyWithoutOptinNestedInput
|
|
113884
114218
|
}
|
|
113885
114219
|
|
|
113886
114220
|
export type OptInUncheckedUpdateWithoutCurrentStepInput = {
|
|
@@ -113905,6 +114239,7 @@ export namespace Prisma {
|
|
|
113905
114239
|
chat?: ChatUncheckedUpdateOneWithoutOptInNestedInput
|
|
113906
114240
|
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutOptInNestedInput
|
|
113907
114241
|
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
|
|
114242
|
+
affiliateClicks?: AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
113908
114243
|
}
|
|
113909
114244
|
|
|
113910
114245
|
export type OptInUncheckedUpdateManyWithoutCurrentStepInput = {
|
|
@@ -114032,6 +114367,14 @@ export namespace Prisma {
|
|
|
114032
114367
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
114033
114368
|
}
|
|
114034
114369
|
|
|
114370
|
+
export type AffiliateClickCreateManyOptinInput = {
|
|
114371
|
+
id?: number
|
|
114372
|
+
created?: Date | string
|
|
114373
|
+
visitorIp?: string | null
|
|
114374
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
114375
|
+
affiliateLinkId: number
|
|
114376
|
+
}
|
|
114377
|
+
|
|
114035
114378
|
export type OptInVariableUpdateWithoutOptInInput = {
|
|
114036
114379
|
variable?: VariableUpdateOneRequiredWithoutOptInVariablesNestedInput
|
|
114037
114380
|
selectedOption?: VariableOptionUpdateOneRequiredWithoutOptInVariablesNestedInput
|
|
@@ -114133,6 +114476,31 @@ export namespace Prisma {
|
|
|
114133
114476
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
114134
114477
|
}
|
|
114135
114478
|
|
|
114479
|
+
export type AffiliateClickUpdateWithoutOptinInput = {
|
|
114480
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
114481
|
+
visitorIp?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114482
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
114483
|
+
affiliateLink?: AffiliateLinkUpdateOneRequiredWithoutAffiliateClicksNestedInput
|
|
114484
|
+
affiliateEvent?: AffiliateEventUpdateManyWithoutAffiliateClickNestedInput
|
|
114485
|
+
}
|
|
114486
|
+
|
|
114487
|
+
export type AffiliateClickUncheckedUpdateWithoutOptinInput = {
|
|
114488
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
114489
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
114490
|
+
visitorIp?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114491
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
114492
|
+
affiliateLinkId?: IntFieldUpdateOperationsInput | number
|
|
114493
|
+
affiliateEvent?: AffiliateEventUncheckedUpdateManyWithoutAffiliateClickNestedInput
|
|
114494
|
+
}
|
|
114495
|
+
|
|
114496
|
+
export type AffiliateClickUncheckedUpdateManyWithoutOptinInput = {
|
|
114497
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
114498
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
114499
|
+
visitorIp?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114500
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
114501
|
+
affiliateLinkId?: IntFieldUpdateOperationsInput | number
|
|
114502
|
+
}
|
|
114503
|
+
|
|
114136
114504
|
export type ListToSocialPostCreateManySocialPostInput = {
|
|
114137
114505
|
id?: number
|
|
114138
114506
|
listId: number
|
|
@@ -114224,6 +114592,7 @@ export namespace Prisma {
|
|
|
114224
114592
|
id?: number
|
|
114225
114593
|
created?: Date | string
|
|
114226
114594
|
visitorIp?: string | null
|
|
114595
|
+
optInId: number
|
|
114227
114596
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
114228
114597
|
}
|
|
114229
114598
|
|
|
@@ -114231,6 +114600,7 @@ export namespace Prisma {
|
|
|
114231
114600
|
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
114232
114601
|
visitorIp?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114233
114602
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
114603
|
+
optin?: OptInUpdateOneRequiredWithoutAffiliateClicksNestedInput
|
|
114234
114604
|
affiliateEvent?: AffiliateEventUpdateManyWithoutAffiliateClickNestedInput
|
|
114235
114605
|
}
|
|
114236
114606
|
|
|
@@ -114238,6 +114608,7 @@ export namespace Prisma {
|
|
|
114238
114608
|
id?: IntFieldUpdateOperationsInput | number
|
|
114239
114609
|
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
114240
114610
|
visitorIp?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114611
|
+
optInId?: IntFieldUpdateOperationsInput | number
|
|
114241
114612
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
114242
114613
|
affiliateEvent?: AffiliateEventUncheckedUpdateManyWithoutAffiliateClickNestedInput
|
|
114243
114614
|
}
|
|
@@ -114246,6 +114617,7 @@ export namespace Prisma {
|
|
|
114246
114617
|
id?: IntFieldUpdateOperationsInput | number
|
|
114247
114618
|
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
114248
114619
|
visitorIp?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114620
|
+
optInId?: IntFieldUpdateOperationsInput | number
|
|
114249
114621
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
114250
114622
|
}
|
|
114251
114623
|
|