@creator.co/creatorco-prisma-client 1.0.42-alpha-60c9b5d → 1.0.43
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.js +7 -5
- package/index-browser.js +3 -1
- package/index.d.ts +675 -25
- package/index.js +7 -5
- package/package.json +1 -1
- package/schema.prisma +12 -7
- package/wasm.js +3 -1
package/index.d.ts
CHANGED
|
@@ -7393,6 +7393,7 @@ export namespace Prisma {
|
|
|
7393
7393
|
creatorLists: number
|
|
7394
7394
|
optInViews: number
|
|
7395
7395
|
sequences: number
|
|
7396
|
+
ExternalAffiliateClick: number
|
|
7396
7397
|
}
|
|
7397
7398
|
|
|
7398
7399
|
export type CampaignCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -7411,6 +7412,7 @@ export namespace Prisma {
|
|
|
7411
7412
|
creatorLists?: boolean | CampaignCountOutputTypeCountCreatorListsArgs
|
|
7412
7413
|
optInViews?: boolean | CampaignCountOutputTypeCountOptInViewsArgs
|
|
7413
7414
|
sequences?: boolean | CampaignCountOutputTypeCountSequencesArgs
|
|
7415
|
+
ExternalAffiliateClick?: boolean | CampaignCountOutputTypeCountExternalAffiliateClickArgs
|
|
7414
7416
|
}
|
|
7415
7417
|
|
|
7416
7418
|
// Custom InputTypes
|
|
@@ -7529,6 +7531,13 @@ export namespace Prisma {
|
|
|
7529
7531
|
where?: SequenceWhereInput
|
|
7530
7532
|
}
|
|
7531
7533
|
|
|
7534
|
+
/**
|
|
7535
|
+
* CampaignCountOutputType without action
|
|
7536
|
+
*/
|
|
7537
|
+
export type CampaignCountOutputTypeCountExternalAffiliateClickArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
7538
|
+
where?: ExternalAffiliateClickWhereInput
|
|
7539
|
+
}
|
|
7540
|
+
|
|
7532
7541
|
|
|
7533
7542
|
/**
|
|
7534
7543
|
* Count Type CampaignToImageCountOutputType
|
|
@@ -29999,6 +30008,7 @@ export namespace Prisma {
|
|
|
29999
30008
|
creatorLists?: boolean | Campaign$creatorListsArgs<ExtArgs>
|
|
30000
30009
|
optInViews?: boolean | Campaign$optInViewsArgs<ExtArgs>
|
|
30001
30010
|
sequences?: boolean | Campaign$sequencesArgs<ExtArgs>
|
|
30011
|
+
ExternalAffiliateClick?: boolean | Campaign$ExternalAffiliateClickArgs<ExtArgs>
|
|
30002
30012
|
_count?: boolean | CampaignCountOutputTypeDefaultArgs<ExtArgs>
|
|
30003
30013
|
}, ExtArgs["result"]["campaign"]>
|
|
30004
30014
|
|
|
@@ -30132,6 +30142,7 @@ export namespace Prisma {
|
|
|
30132
30142
|
creatorLists?: boolean | Campaign$creatorListsArgs<ExtArgs>
|
|
30133
30143
|
optInViews?: boolean | Campaign$optInViewsArgs<ExtArgs>
|
|
30134
30144
|
sequences?: boolean | Campaign$sequencesArgs<ExtArgs>
|
|
30145
|
+
ExternalAffiliateClick?: boolean | Campaign$ExternalAffiliateClickArgs<ExtArgs>
|
|
30135
30146
|
_count?: boolean | CampaignCountOutputTypeDefaultArgs<ExtArgs>
|
|
30136
30147
|
}
|
|
30137
30148
|
export type CampaignIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -30157,6 +30168,7 @@ export namespace Prisma {
|
|
|
30157
30168
|
creatorLists: Prisma.$CreatorListPayload<ExtArgs>[]
|
|
30158
30169
|
optInViews: Prisma.$OptInViewPayload<ExtArgs>[]
|
|
30159
30170
|
sequences: Prisma.$SequencePayload<ExtArgs>[]
|
|
30171
|
+
ExternalAffiliateClick: Prisma.$ExternalAffiliateClickPayload<ExtArgs>[]
|
|
30160
30172
|
}
|
|
30161
30173
|
scalars: $Extensions.GetPayloadResult<{
|
|
30162
30174
|
id: number
|
|
@@ -30634,6 +30646,8 @@ export namespace Prisma {
|
|
|
30634
30646
|
|
|
30635
30647
|
sequences<T extends Campaign$sequencesArgs<ExtArgs> = {}>(args?: Subset<T, Campaign$sequencesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$SequencePayload<ExtArgs>, T, 'findMany'> | Null>;
|
|
30636
30648
|
|
|
30649
|
+
ExternalAffiliateClick<T extends Campaign$ExternalAffiliateClickArgs<ExtArgs> = {}>(args?: Subset<T, Campaign$ExternalAffiliateClickArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ExternalAffiliateClickPayload<ExtArgs>, T, 'findMany'> | Null>;
|
|
30650
|
+
|
|
30637
30651
|
/**
|
|
30638
30652
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
30639
30653
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -31332,6 +31346,26 @@ export namespace Prisma {
|
|
|
31332
31346
|
distinct?: SequenceScalarFieldEnum | SequenceScalarFieldEnum[]
|
|
31333
31347
|
}
|
|
31334
31348
|
|
|
31349
|
+
/**
|
|
31350
|
+
* Campaign.ExternalAffiliateClick
|
|
31351
|
+
*/
|
|
31352
|
+
export type Campaign$ExternalAffiliateClickArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
31353
|
+
/**
|
|
31354
|
+
* Select specific fields to fetch from the ExternalAffiliateClick
|
|
31355
|
+
*/
|
|
31356
|
+
select?: ExternalAffiliateClickSelect<ExtArgs> | null
|
|
31357
|
+
/**
|
|
31358
|
+
* Choose, which related nodes to fetch as well
|
|
31359
|
+
*/
|
|
31360
|
+
include?: ExternalAffiliateClickInclude<ExtArgs> | null
|
|
31361
|
+
where?: ExternalAffiliateClickWhereInput
|
|
31362
|
+
orderBy?: ExternalAffiliateClickOrderByWithRelationAndSearchRelevanceInput | ExternalAffiliateClickOrderByWithRelationAndSearchRelevanceInput[]
|
|
31363
|
+
cursor?: ExternalAffiliateClickWhereUniqueInput
|
|
31364
|
+
take?: number
|
|
31365
|
+
skip?: number
|
|
31366
|
+
distinct?: ExternalAffiliateClickScalarFieldEnum | ExternalAffiliateClickScalarFieldEnum[]
|
|
31367
|
+
}
|
|
31368
|
+
|
|
31335
31369
|
/**
|
|
31336
31370
|
* Campaign without action
|
|
31337
31371
|
*/
|
|
@@ -49975,6 +50009,7 @@ export namespace Prisma {
|
|
|
49975
50009
|
export type SocialPostAvgAggregateOutputType = {
|
|
49976
50010
|
id: number | null
|
|
49977
50011
|
views: number | null
|
|
50012
|
+
replays: number | null
|
|
49978
50013
|
impressions: number | null
|
|
49979
50014
|
impressionsOrganic: number | null
|
|
49980
50015
|
impressionsPaid: number | null
|
|
@@ -49994,6 +50029,7 @@ export namespace Prisma {
|
|
|
49994
50029
|
export type SocialPostSumAggregateOutputType = {
|
|
49995
50030
|
id: number | null
|
|
49996
50031
|
views: number | null
|
|
50032
|
+
replays: number | null
|
|
49997
50033
|
impressions: number | null
|
|
49998
50034
|
impressionsOrganic: number | null
|
|
49999
50035
|
impressionsPaid: number | null
|
|
@@ -50028,6 +50064,7 @@ export namespace Prisma {
|
|
|
50028
50064
|
hasCollaborators: boolean | null
|
|
50029
50065
|
isOwnedByUser: boolean | null
|
|
50030
50066
|
views: number | null
|
|
50067
|
+
replays: number | null
|
|
50031
50068
|
impressions: number | null
|
|
50032
50069
|
impressionsOrganic: number | null
|
|
50033
50070
|
impressionsPaid: number | null
|
|
@@ -50062,6 +50099,7 @@ export namespace Prisma {
|
|
|
50062
50099
|
hasCollaborators: boolean | null
|
|
50063
50100
|
isOwnedByUser: boolean | null
|
|
50064
50101
|
views: number | null
|
|
50102
|
+
replays: number | null
|
|
50065
50103
|
impressions: number | null
|
|
50066
50104
|
impressionsOrganic: number | null
|
|
50067
50105
|
impressionsPaid: number | null
|
|
@@ -50097,6 +50135,7 @@ export namespace Prisma {
|
|
|
50097
50135
|
hasCollaborators: number
|
|
50098
50136
|
isOwnedByUser: number
|
|
50099
50137
|
views: number
|
|
50138
|
+
replays: number
|
|
50100
50139
|
impressions: number
|
|
50101
50140
|
impressionsOrganic: number
|
|
50102
50141
|
impressionsPaid: number
|
|
@@ -50118,6 +50157,7 @@ export namespace Prisma {
|
|
|
50118
50157
|
export type SocialPostAvgAggregateInputType = {
|
|
50119
50158
|
id?: true
|
|
50120
50159
|
views?: true
|
|
50160
|
+
replays?: true
|
|
50121
50161
|
impressions?: true
|
|
50122
50162
|
impressionsOrganic?: true
|
|
50123
50163
|
impressionsPaid?: true
|
|
@@ -50137,6 +50177,7 @@ export namespace Prisma {
|
|
|
50137
50177
|
export type SocialPostSumAggregateInputType = {
|
|
50138
50178
|
id?: true
|
|
50139
50179
|
views?: true
|
|
50180
|
+
replays?: true
|
|
50140
50181
|
impressions?: true
|
|
50141
50182
|
impressionsOrganic?: true
|
|
50142
50183
|
impressionsPaid?: true
|
|
@@ -50171,6 +50212,7 @@ export namespace Prisma {
|
|
|
50171
50212
|
hasCollaborators?: true
|
|
50172
50213
|
isOwnedByUser?: true
|
|
50173
50214
|
views?: true
|
|
50215
|
+
replays?: true
|
|
50174
50216
|
impressions?: true
|
|
50175
50217
|
impressionsOrganic?: true
|
|
50176
50218
|
impressionsPaid?: true
|
|
@@ -50205,6 +50247,7 @@ export namespace Prisma {
|
|
|
50205
50247
|
hasCollaborators?: true
|
|
50206
50248
|
isOwnedByUser?: true
|
|
50207
50249
|
views?: true
|
|
50250
|
+
replays?: true
|
|
50208
50251
|
impressions?: true
|
|
50209
50252
|
impressionsOrganic?: true
|
|
50210
50253
|
impressionsPaid?: true
|
|
@@ -50240,6 +50283,7 @@ export namespace Prisma {
|
|
|
50240
50283
|
hasCollaborators?: true
|
|
50241
50284
|
isOwnedByUser?: true
|
|
50242
50285
|
views?: true
|
|
50286
|
+
replays?: true
|
|
50243
50287
|
impressions?: true
|
|
50244
50288
|
impressionsOrganic?: true
|
|
50245
50289
|
impressionsPaid?: true
|
|
@@ -50362,6 +50406,7 @@ export namespace Prisma {
|
|
|
50362
50406
|
hasCollaborators: boolean | null
|
|
50363
50407
|
isOwnedByUser: boolean | null
|
|
50364
50408
|
views: number | null
|
|
50409
|
+
replays: number | null
|
|
50365
50410
|
impressions: number | null
|
|
50366
50411
|
impressionsOrganic: number | null
|
|
50367
50412
|
impressionsPaid: number | null
|
|
@@ -50416,6 +50461,7 @@ export namespace Prisma {
|
|
|
50416
50461
|
hasCollaborators?: boolean
|
|
50417
50462
|
isOwnedByUser?: boolean
|
|
50418
50463
|
views?: boolean
|
|
50464
|
+
replays?: boolean
|
|
50419
50465
|
impressions?: boolean
|
|
50420
50466
|
impressionsOrganic?: boolean
|
|
50421
50467
|
impressionsPaid?: boolean
|
|
@@ -50455,6 +50501,7 @@ export namespace Prisma {
|
|
|
50455
50501
|
hasCollaborators?: boolean
|
|
50456
50502
|
isOwnedByUser?: boolean
|
|
50457
50503
|
views?: boolean
|
|
50504
|
+
replays?: boolean
|
|
50458
50505
|
impressions?: boolean
|
|
50459
50506
|
impressionsOrganic?: boolean
|
|
50460
50507
|
impressionsPaid?: boolean
|
|
@@ -50492,6 +50539,7 @@ export namespace Prisma {
|
|
|
50492
50539
|
hasCollaborators?: boolean
|
|
50493
50540
|
isOwnedByUser?: boolean
|
|
50494
50541
|
views?: boolean
|
|
50542
|
+
replays?: boolean
|
|
50495
50543
|
impressions?: boolean
|
|
50496
50544
|
impressionsOrganic?: boolean
|
|
50497
50545
|
impressionsPaid?: boolean
|
|
@@ -50545,6 +50593,7 @@ export namespace Prisma {
|
|
|
50545
50593
|
hasCollaborators: boolean | null
|
|
50546
50594
|
isOwnedByUser: boolean | null
|
|
50547
50595
|
views: number | null
|
|
50596
|
+
replays: number | null
|
|
50548
50597
|
impressions: number | null
|
|
50549
50598
|
impressionsOrganic: number | null
|
|
50550
50599
|
impressionsPaid: number | null
|
|
@@ -51001,6 +51050,7 @@ export namespace Prisma {
|
|
|
51001
51050
|
readonly hasCollaborators: FieldRef<"SocialPost", 'Boolean'>
|
|
51002
51051
|
readonly isOwnedByUser: FieldRef<"SocialPost", 'Boolean'>
|
|
51003
51052
|
readonly views: FieldRef<"SocialPost", 'Int'>
|
|
51053
|
+
readonly replays: FieldRef<"SocialPost", 'Int'>
|
|
51004
51054
|
readonly impressions: FieldRef<"SocialPost", 'Int'>
|
|
51005
51055
|
readonly impressionsOrganic: FieldRef<"SocialPost", 'Int'>
|
|
51006
51056
|
readonly impressionsPaid: FieldRef<"SocialPost", 'Int'>
|
|
@@ -57870,11 +57920,13 @@ export namespace Prisma {
|
|
|
57870
57920
|
export type ExternalAffiliateClickAvgAggregateOutputType = {
|
|
57871
57921
|
id: number | null
|
|
57872
57922
|
optInId: number | null
|
|
57923
|
+
campaignId: number | null
|
|
57873
57924
|
}
|
|
57874
57925
|
|
|
57875
57926
|
export type ExternalAffiliateClickSumAggregateOutputType = {
|
|
57876
57927
|
id: number | null
|
|
57877
57928
|
optInId: number | null
|
|
57929
|
+
campaignId: number | null
|
|
57878
57930
|
}
|
|
57879
57931
|
|
|
57880
57932
|
export type ExternalAffiliateClickMinAggregateOutputType = {
|
|
@@ -57885,6 +57937,7 @@ export namespace Prisma {
|
|
|
57885
57937
|
ipv6: string | null
|
|
57886
57938
|
linkUrl: string | null
|
|
57887
57939
|
optInId: number | null
|
|
57940
|
+
campaignId: number | null
|
|
57888
57941
|
}
|
|
57889
57942
|
|
|
57890
57943
|
export type ExternalAffiliateClickMaxAggregateOutputType = {
|
|
@@ -57895,6 +57948,7 @@ export namespace Prisma {
|
|
|
57895
57948
|
ipv6: string | null
|
|
57896
57949
|
linkUrl: string | null
|
|
57897
57950
|
optInId: number | null
|
|
57951
|
+
campaignId: number | null
|
|
57898
57952
|
}
|
|
57899
57953
|
|
|
57900
57954
|
export type ExternalAffiliateClickCountAggregateOutputType = {
|
|
@@ -57906,6 +57960,7 @@ export namespace Prisma {
|
|
|
57906
57960
|
linkUrl: number
|
|
57907
57961
|
metaData: number
|
|
57908
57962
|
optInId: number
|
|
57963
|
+
campaignId: number
|
|
57909
57964
|
_all: number
|
|
57910
57965
|
}
|
|
57911
57966
|
|
|
@@ -57913,11 +57968,13 @@ export namespace Prisma {
|
|
|
57913
57968
|
export type ExternalAffiliateClickAvgAggregateInputType = {
|
|
57914
57969
|
id?: true
|
|
57915
57970
|
optInId?: true
|
|
57971
|
+
campaignId?: true
|
|
57916
57972
|
}
|
|
57917
57973
|
|
|
57918
57974
|
export type ExternalAffiliateClickSumAggregateInputType = {
|
|
57919
57975
|
id?: true
|
|
57920
57976
|
optInId?: true
|
|
57977
|
+
campaignId?: true
|
|
57921
57978
|
}
|
|
57922
57979
|
|
|
57923
57980
|
export type ExternalAffiliateClickMinAggregateInputType = {
|
|
@@ -57928,6 +57985,7 @@ export namespace Prisma {
|
|
|
57928
57985
|
ipv6?: true
|
|
57929
57986
|
linkUrl?: true
|
|
57930
57987
|
optInId?: true
|
|
57988
|
+
campaignId?: true
|
|
57931
57989
|
}
|
|
57932
57990
|
|
|
57933
57991
|
export type ExternalAffiliateClickMaxAggregateInputType = {
|
|
@@ -57938,6 +57996,7 @@ export namespace Prisma {
|
|
|
57938
57996
|
ipv6?: true
|
|
57939
57997
|
linkUrl?: true
|
|
57940
57998
|
optInId?: true
|
|
57999
|
+
campaignId?: true
|
|
57941
58000
|
}
|
|
57942
58001
|
|
|
57943
58002
|
export type ExternalAffiliateClickCountAggregateInputType = {
|
|
@@ -57949,6 +58008,7 @@ export namespace Prisma {
|
|
|
57949
58008
|
linkUrl?: true
|
|
57950
58009
|
metaData?: true
|
|
57951
58010
|
optInId?: true
|
|
58011
|
+
campaignId?: true
|
|
57952
58012
|
_all?: true
|
|
57953
58013
|
}
|
|
57954
58014
|
|
|
@@ -58047,6 +58107,7 @@ export namespace Prisma {
|
|
|
58047
58107
|
linkUrl: string
|
|
58048
58108
|
metaData: JsonValue
|
|
58049
58109
|
optInId: number
|
|
58110
|
+
campaignId: number
|
|
58050
58111
|
_count: ExternalAffiliateClickCountAggregateOutputType | null
|
|
58051
58112
|
_avg: ExternalAffiliateClickAvgAggregateOutputType | null
|
|
58052
58113
|
_sum: ExternalAffiliateClickSumAggregateOutputType | null
|
|
@@ -58077,7 +58138,9 @@ export namespace Prisma {
|
|
|
58077
58138
|
linkUrl?: boolean
|
|
58078
58139
|
metaData?: boolean
|
|
58079
58140
|
optInId?: boolean
|
|
58141
|
+
campaignId?: boolean
|
|
58080
58142
|
optin?: boolean | OptInDefaultArgs<ExtArgs>
|
|
58143
|
+
campaign?: boolean | CampaignDefaultArgs<ExtArgs>
|
|
58081
58144
|
}, ExtArgs["result"]["externalAffiliateClick"]>
|
|
58082
58145
|
|
|
58083
58146
|
export type ExternalAffiliateClickSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
@@ -58089,7 +58152,9 @@ export namespace Prisma {
|
|
|
58089
58152
|
linkUrl?: boolean
|
|
58090
58153
|
metaData?: boolean
|
|
58091
58154
|
optInId?: boolean
|
|
58155
|
+
campaignId?: boolean
|
|
58092
58156
|
optin?: boolean | OptInDefaultArgs<ExtArgs>
|
|
58157
|
+
campaign?: boolean | CampaignDefaultArgs<ExtArgs>
|
|
58093
58158
|
}, ExtArgs["result"]["externalAffiliateClick"]>
|
|
58094
58159
|
|
|
58095
58160
|
export type ExternalAffiliateClickSelectScalar = {
|
|
@@ -58101,19 +58166,23 @@ export namespace Prisma {
|
|
|
58101
58166
|
linkUrl?: boolean
|
|
58102
58167
|
metaData?: boolean
|
|
58103
58168
|
optInId?: boolean
|
|
58169
|
+
campaignId?: boolean
|
|
58104
58170
|
}
|
|
58105
58171
|
|
|
58106
58172
|
export type ExternalAffiliateClickInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58107
58173
|
optin?: boolean | OptInDefaultArgs<ExtArgs>
|
|
58174
|
+
campaign?: boolean | CampaignDefaultArgs<ExtArgs>
|
|
58108
58175
|
}
|
|
58109
58176
|
export type ExternalAffiliateClickIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58110
58177
|
optin?: boolean | OptInDefaultArgs<ExtArgs>
|
|
58178
|
+
campaign?: boolean | CampaignDefaultArgs<ExtArgs>
|
|
58111
58179
|
}
|
|
58112
58180
|
|
|
58113
58181
|
export type $ExternalAffiliateClickPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58114
58182
|
name: "ExternalAffiliateClick"
|
|
58115
58183
|
objects: {
|
|
58116
58184
|
optin: Prisma.$OptInPayload<ExtArgs>
|
|
58185
|
+
campaign: Prisma.$CampaignPayload<ExtArgs>
|
|
58117
58186
|
}
|
|
58118
58187
|
scalars: $Extensions.GetPayloadResult<{
|
|
58119
58188
|
id: number
|
|
@@ -58124,6 +58193,7 @@ export namespace Prisma {
|
|
|
58124
58193
|
linkUrl: string
|
|
58125
58194
|
metaData: Prisma.JsonValue
|
|
58126
58195
|
optInId: number
|
|
58196
|
+
campaignId: number
|
|
58127
58197
|
}, ExtArgs["result"]["externalAffiliateClick"]>
|
|
58128
58198
|
composites: {}
|
|
58129
58199
|
}
|
|
@@ -58516,6 +58586,8 @@ export namespace Prisma {
|
|
|
58516
58586
|
|
|
58517
58587
|
optin<T extends OptInDefaultArgs<ExtArgs> = {}>(args?: Subset<T, OptInDefaultArgs<ExtArgs>>): Prisma__OptInClient<$Result.GetResult<Prisma.$OptInPayload<ExtArgs>, T, 'findUniqueOrThrow'> | Null, Null, ExtArgs>;
|
|
58518
58588
|
|
|
58589
|
+
campaign<T extends CampaignDefaultArgs<ExtArgs> = {}>(args?: Subset<T, CampaignDefaultArgs<ExtArgs>>): Prisma__CampaignClient<$Result.GetResult<Prisma.$CampaignPayload<ExtArgs>, T, 'findUniqueOrThrow'> | Null, Null, ExtArgs>;
|
|
58590
|
+
|
|
58519
58591
|
/**
|
|
58520
58592
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
58521
58593
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -58552,6 +58624,7 @@ export namespace Prisma {
|
|
|
58552
58624
|
readonly linkUrl: FieldRef<"ExternalAffiliateClick", 'String'>
|
|
58553
58625
|
readonly metaData: FieldRef<"ExternalAffiliateClick", 'Json'>
|
|
58554
58626
|
readonly optInId: FieldRef<"ExternalAffiliateClick", 'Int'>
|
|
58627
|
+
readonly campaignId: FieldRef<"ExternalAffiliateClick", 'Int'>
|
|
58555
58628
|
}
|
|
58556
58629
|
|
|
58557
58630
|
|
|
@@ -86967,6 +87040,7 @@ export namespace Prisma {
|
|
|
86967
87040
|
hasCollaborators: 'hasCollaborators',
|
|
86968
87041
|
isOwnedByUser: 'isOwnedByUser',
|
|
86969
87042
|
views: 'views',
|
|
87043
|
+
replays: 'replays',
|
|
86970
87044
|
impressions: 'impressions',
|
|
86971
87045
|
impressionsOrganic: 'impressionsOrganic',
|
|
86972
87046
|
impressionsPaid: 'impressionsPaid',
|
|
@@ -87089,7 +87163,8 @@ export namespace Prisma {
|
|
|
87089
87163
|
ipv6: 'ipv6',
|
|
87090
87164
|
linkUrl: 'linkUrl',
|
|
87091
87165
|
metaData: 'metaData',
|
|
87092
|
-
optInId: 'optInId'
|
|
87166
|
+
optInId: 'optInId',
|
|
87167
|
+
campaignId: 'campaignId'
|
|
87093
87168
|
};
|
|
87094
87169
|
|
|
87095
87170
|
export type ExternalAffiliateClickScalarFieldEnum = (typeof ExternalAffiliateClickScalarFieldEnum)[keyof typeof ExternalAffiliateClickScalarFieldEnum]
|
|
@@ -89973,6 +90048,7 @@ export namespace Prisma {
|
|
|
89973
90048
|
creatorLists?: CreatorListListRelationFilter
|
|
89974
90049
|
optInViews?: OptInViewListRelationFilter
|
|
89975
90050
|
sequences?: SequenceListRelationFilter
|
|
90051
|
+
ExternalAffiliateClick?: ExternalAffiliateClickListRelationFilter
|
|
89976
90052
|
}
|
|
89977
90053
|
|
|
89978
90054
|
export type CampaignOrderByWithRelationAndSearchRelevanceInput = {
|
|
@@ -90045,6 +90121,7 @@ export namespace Prisma {
|
|
|
90045
90121
|
creatorLists?: CreatorListOrderByRelationAggregateInput
|
|
90046
90122
|
optInViews?: OptInViewOrderByRelationAggregateInput
|
|
90047
90123
|
sequences?: SequenceOrderByRelationAggregateInput
|
|
90124
|
+
ExternalAffiliateClick?: ExternalAffiliateClickOrderByRelationAggregateInput
|
|
90048
90125
|
_relevance?: CampaignOrderByRelevanceInput
|
|
90049
90126
|
}
|
|
90050
90127
|
|
|
@@ -90121,6 +90198,7 @@ export namespace Prisma {
|
|
|
90121
90198
|
creatorLists?: CreatorListListRelationFilter
|
|
90122
90199
|
optInViews?: OptInViewListRelationFilter
|
|
90123
90200
|
sequences?: SequenceListRelationFilter
|
|
90201
|
+
ExternalAffiliateClick?: ExternalAffiliateClickListRelationFilter
|
|
90124
90202
|
}, "id" | "slug">
|
|
90125
90203
|
|
|
90126
90204
|
export type CampaignOrderByWithAggregationInput = {
|
|
@@ -91414,6 +91492,7 @@ export namespace Prisma {
|
|
|
91414
91492
|
hasCollaborators?: BoolNullableFilter<"SocialPost"> | boolean | null
|
|
91415
91493
|
isOwnedByUser?: BoolNullableFilter<"SocialPost"> | boolean | null
|
|
91416
91494
|
views?: IntNullableFilter<"SocialPost"> | number | null
|
|
91495
|
+
replays?: IntNullableFilter<"SocialPost"> | number | null
|
|
91417
91496
|
impressions?: IntNullableFilter<"SocialPost"> | number | null
|
|
91418
91497
|
impressionsOrganic?: IntNullableFilter<"SocialPost"> | number | null
|
|
91419
91498
|
impressionsPaid?: IntNullableFilter<"SocialPost"> | number | null
|
|
@@ -91452,6 +91531,7 @@ export namespace Prisma {
|
|
|
91452
91531
|
hasCollaborators?: SortOrderInput | SortOrder
|
|
91453
91532
|
isOwnedByUser?: SortOrderInput | SortOrder
|
|
91454
91533
|
views?: SortOrderInput | SortOrder
|
|
91534
|
+
replays?: SortOrderInput | SortOrder
|
|
91455
91535
|
impressions?: SortOrderInput | SortOrder
|
|
91456
91536
|
impressionsOrganic?: SortOrderInput | SortOrder
|
|
91457
91537
|
impressionsPaid?: SortOrderInput | SortOrder
|
|
@@ -91495,6 +91575,7 @@ export namespace Prisma {
|
|
|
91495
91575
|
hasCollaborators?: BoolNullableFilter<"SocialPost"> | boolean | null
|
|
91496
91576
|
isOwnedByUser?: BoolNullableFilter<"SocialPost"> | boolean | null
|
|
91497
91577
|
views?: IntNullableFilter<"SocialPost"> | number | null
|
|
91578
|
+
replays?: IntNullableFilter<"SocialPost"> | number | null
|
|
91498
91579
|
impressions?: IntNullableFilter<"SocialPost"> | number | null
|
|
91499
91580
|
impressionsOrganic?: IntNullableFilter<"SocialPost"> | number | null
|
|
91500
91581
|
impressionsPaid?: IntNullableFilter<"SocialPost"> | number | null
|
|
@@ -91533,6 +91614,7 @@ export namespace Prisma {
|
|
|
91533
91614
|
hasCollaborators?: SortOrderInput | SortOrder
|
|
91534
91615
|
isOwnedByUser?: SortOrderInput | SortOrder
|
|
91535
91616
|
views?: SortOrderInput | SortOrder
|
|
91617
|
+
replays?: SortOrderInput | SortOrder
|
|
91536
91618
|
impressions?: SortOrderInput | SortOrder
|
|
91537
91619
|
impressionsOrganic?: SortOrderInput | SortOrder
|
|
91538
91620
|
impressionsPaid?: SortOrderInput | SortOrder
|
|
@@ -91576,6 +91658,7 @@ export namespace Prisma {
|
|
|
91576
91658
|
hasCollaborators?: BoolNullableWithAggregatesFilter<"SocialPost"> | boolean | null
|
|
91577
91659
|
isOwnedByUser?: BoolNullableWithAggregatesFilter<"SocialPost"> | boolean | null
|
|
91578
91660
|
views?: IntNullableWithAggregatesFilter<"SocialPost"> | number | null
|
|
91661
|
+
replays?: IntNullableWithAggregatesFilter<"SocialPost"> | number | null
|
|
91579
91662
|
impressions?: IntNullableWithAggregatesFilter<"SocialPost"> | number | null
|
|
91580
91663
|
impressionsOrganic?: IntNullableWithAggregatesFilter<"SocialPost"> | number | null
|
|
91581
91664
|
impressionsPaid?: IntNullableWithAggregatesFilter<"SocialPost"> | number | null
|
|
@@ -92106,7 +92189,9 @@ export namespace Prisma {
|
|
|
92106
92189
|
linkUrl?: StringFilter<"ExternalAffiliateClick"> | string
|
|
92107
92190
|
metaData?: JsonFilter<"ExternalAffiliateClick">
|
|
92108
92191
|
optInId?: IntFilter<"ExternalAffiliateClick"> | number
|
|
92192
|
+
campaignId?: IntFilter<"ExternalAffiliateClick"> | number
|
|
92109
92193
|
optin?: XOR<OptInRelationFilter, OptInWhereInput>
|
|
92194
|
+
campaign?: XOR<CampaignRelationFilter, CampaignWhereInput>
|
|
92110
92195
|
}
|
|
92111
92196
|
|
|
92112
92197
|
export type ExternalAffiliateClickOrderByWithRelationAndSearchRelevanceInput = {
|
|
@@ -92118,7 +92203,9 @@ export namespace Prisma {
|
|
|
92118
92203
|
linkUrl?: SortOrder
|
|
92119
92204
|
metaData?: SortOrder
|
|
92120
92205
|
optInId?: SortOrder
|
|
92206
|
+
campaignId?: SortOrder
|
|
92121
92207
|
optin?: OptInOrderByWithRelationAndSearchRelevanceInput
|
|
92208
|
+
campaign?: CampaignOrderByWithRelationAndSearchRelevanceInput
|
|
92122
92209
|
_relevance?: ExternalAffiliateClickOrderByRelevanceInput
|
|
92123
92210
|
}
|
|
92124
92211
|
|
|
@@ -92134,7 +92221,9 @@ export namespace Prisma {
|
|
|
92134
92221
|
linkUrl?: StringFilter<"ExternalAffiliateClick"> | string
|
|
92135
92222
|
metaData?: JsonFilter<"ExternalAffiliateClick">
|
|
92136
92223
|
optInId?: IntFilter<"ExternalAffiliateClick"> | number
|
|
92224
|
+
campaignId?: IntFilter<"ExternalAffiliateClick"> | number
|
|
92137
92225
|
optin?: XOR<OptInRelationFilter, OptInWhereInput>
|
|
92226
|
+
campaign?: XOR<CampaignRelationFilter, CampaignWhereInput>
|
|
92138
92227
|
}, "id">
|
|
92139
92228
|
|
|
92140
92229
|
export type ExternalAffiliateClickOrderByWithAggregationInput = {
|
|
@@ -92146,6 +92235,7 @@ export namespace Prisma {
|
|
|
92146
92235
|
linkUrl?: SortOrder
|
|
92147
92236
|
metaData?: SortOrder
|
|
92148
92237
|
optInId?: SortOrder
|
|
92238
|
+
campaignId?: SortOrder
|
|
92149
92239
|
_count?: ExternalAffiliateClickCountOrderByAggregateInput
|
|
92150
92240
|
_avg?: ExternalAffiliateClickAvgOrderByAggregateInput
|
|
92151
92241
|
_max?: ExternalAffiliateClickMaxOrderByAggregateInput
|
|
@@ -92165,6 +92255,7 @@ export namespace Prisma {
|
|
|
92165
92255
|
linkUrl?: StringWithAggregatesFilter<"ExternalAffiliateClick"> | string
|
|
92166
92256
|
metaData?: JsonWithAggregatesFilter<"ExternalAffiliateClick">
|
|
92167
92257
|
optInId?: IntWithAggregatesFilter<"ExternalAffiliateClick"> | number
|
|
92258
|
+
campaignId?: IntWithAggregatesFilter<"ExternalAffiliateClick"> | number
|
|
92168
92259
|
}
|
|
92169
92260
|
|
|
92170
92261
|
export type BrandAffiliateLinkWhereInput = {
|
|
@@ -96054,6 +96145,7 @@ export namespace Prisma {
|
|
|
96054
96145
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
96055
96146
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
96056
96147
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
96148
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
96057
96149
|
}
|
|
96058
96150
|
|
|
96059
96151
|
export type CampaignUncheckedCreateInput = {
|
|
@@ -96125,6 +96217,7 @@ export namespace Prisma {
|
|
|
96125
96217
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
96126
96218
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
96127
96219
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
96220
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
96128
96221
|
}
|
|
96129
96222
|
|
|
96130
96223
|
export type CampaignUpdateInput = {
|
|
@@ -96195,6 +96288,7 @@ export namespace Prisma {
|
|
|
96195
96288
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
96196
96289
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
96197
96290
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
96291
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
96198
96292
|
}
|
|
96199
96293
|
|
|
96200
96294
|
export type CampaignUncheckedUpdateInput = {
|
|
@@ -96266,6 +96360,7 @@ export namespace Prisma {
|
|
|
96266
96360
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
96267
96361
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
96268
96362
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
96363
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
96269
96364
|
}
|
|
96270
96365
|
|
|
96271
96366
|
export type CampaignCreateManyInput = {
|
|
@@ -97504,6 +97599,7 @@ export namespace Prisma {
|
|
|
97504
97599
|
hasCollaborators?: boolean | null
|
|
97505
97600
|
isOwnedByUser?: boolean | null
|
|
97506
97601
|
views?: number | null
|
|
97602
|
+
replays?: number | null
|
|
97507
97603
|
impressions?: number | null
|
|
97508
97604
|
impressionsOrganic?: number | null
|
|
97509
97605
|
impressionsPaid?: number | null
|
|
@@ -97540,6 +97636,7 @@ export namespace Prisma {
|
|
|
97540
97636
|
hasCollaborators?: boolean | null
|
|
97541
97637
|
isOwnedByUser?: boolean | null
|
|
97542
97638
|
views?: number | null
|
|
97639
|
+
replays?: number | null
|
|
97543
97640
|
impressions?: number | null
|
|
97544
97641
|
impressionsOrganic?: number | null
|
|
97545
97642
|
impressionsPaid?: number | null
|
|
@@ -97575,6 +97672,7 @@ export namespace Prisma {
|
|
|
97575
97672
|
hasCollaborators?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
97576
97673
|
isOwnedByUser?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
97577
97674
|
views?: NullableIntFieldUpdateOperationsInput | number | null
|
|
97675
|
+
replays?: NullableIntFieldUpdateOperationsInput | number | null
|
|
97578
97676
|
impressions?: NullableIntFieldUpdateOperationsInput | number | null
|
|
97579
97677
|
impressionsOrganic?: NullableIntFieldUpdateOperationsInput | number | null
|
|
97580
97678
|
impressionsPaid?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -97611,6 +97709,7 @@ export namespace Prisma {
|
|
|
97611
97709
|
hasCollaborators?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
97612
97710
|
isOwnedByUser?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
97613
97711
|
views?: NullableIntFieldUpdateOperationsInput | number | null
|
|
97712
|
+
replays?: NullableIntFieldUpdateOperationsInput | number | null
|
|
97614
97713
|
impressions?: NullableIntFieldUpdateOperationsInput | number | null
|
|
97615
97714
|
impressionsOrganic?: NullableIntFieldUpdateOperationsInput | number | null
|
|
97616
97715
|
impressionsPaid?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -97647,6 +97746,7 @@ export namespace Prisma {
|
|
|
97647
97746
|
hasCollaborators?: boolean | null
|
|
97648
97747
|
isOwnedByUser?: boolean | null
|
|
97649
97748
|
views?: number | null
|
|
97749
|
+
replays?: number | null
|
|
97650
97750
|
impressions?: number | null
|
|
97651
97751
|
impressionsOrganic?: number | null
|
|
97652
97752
|
impressionsPaid?: number | null
|
|
@@ -97681,6 +97781,7 @@ export namespace Prisma {
|
|
|
97681
97781
|
hasCollaborators?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
97682
97782
|
isOwnedByUser?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
97683
97783
|
views?: NullableIntFieldUpdateOperationsInput | number | null
|
|
97784
|
+
replays?: NullableIntFieldUpdateOperationsInput | number | null
|
|
97684
97785
|
impressions?: NullableIntFieldUpdateOperationsInput | number | null
|
|
97685
97786
|
impressionsOrganic?: NullableIntFieldUpdateOperationsInput | number | null
|
|
97686
97787
|
impressionsPaid?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -97714,6 +97815,7 @@ export namespace Prisma {
|
|
|
97714
97815
|
hasCollaborators?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
97715
97816
|
isOwnedByUser?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
97716
97817
|
views?: NullableIntFieldUpdateOperationsInput | number | null
|
|
97818
|
+
replays?: NullableIntFieldUpdateOperationsInput | number | null
|
|
97717
97819
|
impressions?: NullableIntFieldUpdateOperationsInput | number | null
|
|
97718
97820
|
impressionsOrganic?: NullableIntFieldUpdateOperationsInput | number | null
|
|
97719
97821
|
impressionsPaid?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -98265,6 +98367,7 @@ export namespace Prisma {
|
|
|
98265
98367
|
linkUrl: string
|
|
98266
98368
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
98267
98369
|
optin: OptInCreateNestedOneWithoutExternalAffiliateClickInput
|
|
98370
|
+
campaign: CampaignCreateNestedOneWithoutExternalAffiliateClickInput
|
|
98268
98371
|
}
|
|
98269
98372
|
|
|
98270
98373
|
export type ExternalAffiliateClickUncheckedCreateInput = {
|
|
@@ -98276,6 +98379,7 @@ export namespace Prisma {
|
|
|
98276
98379
|
linkUrl: string
|
|
98277
98380
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
98278
98381
|
optInId: number
|
|
98382
|
+
campaignId: number
|
|
98279
98383
|
}
|
|
98280
98384
|
|
|
98281
98385
|
export type ExternalAffiliateClickUpdateInput = {
|
|
@@ -98286,6 +98390,7 @@ export namespace Prisma {
|
|
|
98286
98390
|
linkUrl?: StringFieldUpdateOperationsInput | string
|
|
98287
98391
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
98288
98392
|
optin?: OptInUpdateOneRequiredWithoutExternalAffiliateClickNestedInput
|
|
98393
|
+
campaign?: CampaignUpdateOneRequiredWithoutExternalAffiliateClickNestedInput
|
|
98289
98394
|
}
|
|
98290
98395
|
|
|
98291
98396
|
export type ExternalAffiliateClickUncheckedUpdateInput = {
|
|
@@ -98297,6 +98402,7 @@ export namespace Prisma {
|
|
|
98297
98402
|
linkUrl?: StringFieldUpdateOperationsInput | string
|
|
98298
98403
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
98299
98404
|
optInId?: IntFieldUpdateOperationsInput | number
|
|
98405
|
+
campaignId?: IntFieldUpdateOperationsInput | number
|
|
98300
98406
|
}
|
|
98301
98407
|
|
|
98302
98408
|
export type ExternalAffiliateClickCreateManyInput = {
|
|
@@ -98308,6 +98414,7 @@ export namespace Prisma {
|
|
|
98308
98414
|
linkUrl: string
|
|
98309
98415
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
98310
98416
|
optInId: number
|
|
98417
|
+
campaignId: number
|
|
98311
98418
|
}
|
|
98312
98419
|
|
|
98313
98420
|
export type ExternalAffiliateClickUpdateManyMutationInput = {
|
|
@@ -98328,6 +98435,7 @@ export namespace Prisma {
|
|
|
98328
98435
|
linkUrl?: StringFieldUpdateOperationsInput | string
|
|
98329
98436
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
98330
98437
|
optInId?: IntFieldUpdateOperationsInput | number
|
|
98438
|
+
campaignId?: IntFieldUpdateOperationsInput | number
|
|
98331
98439
|
}
|
|
98332
98440
|
|
|
98333
98441
|
export type BrandAffiliateLinkCreateInput = {
|
|
@@ -102034,6 +102142,12 @@ export namespace Prisma {
|
|
|
102034
102142
|
none?: OptInViewWhereInput
|
|
102035
102143
|
}
|
|
102036
102144
|
|
|
102145
|
+
export type ExternalAffiliateClickListRelationFilter = {
|
|
102146
|
+
every?: ExternalAffiliateClickWhereInput
|
|
102147
|
+
some?: ExternalAffiliateClickWhereInput
|
|
102148
|
+
none?: ExternalAffiliateClickWhereInput
|
|
102149
|
+
}
|
|
102150
|
+
|
|
102037
102151
|
export type CampaignStepOrderByRelationAggregateInput = {
|
|
102038
102152
|
_count?: SortOrder
|
|
102039
102153
|
}
|
|
@@ -102070,6 +102184,10 @@ export namespace Prisma {
|
|
|
102070
102184
|
_count?: SortOrder
|
|
102071
102185
|
}
|
|
102072
102186
|
|
|
102187
|
+
export type ExternalAffiliateClickOrderByRelationAggregateInput = {
|
|
102188
|
+
_count?: SortOrder
|
|
102189
|
+
}
|
|
102190
|
+
|
|
102073
102191
|
export type CampaignOrderByRelevanceInput = {
|
|
102074
102192
|
fields: CampaignOrderByRelevanceFieldEnum | CampaignOrderByRelevanceFieldEnum[]
|
|
102075
102193
|
sort: SortOrder
|
|
@@ -102953,12 +103071,6 @@ export namespace Prisma {
|
|
|
102953
103071
|
none?: AffiliateClickWhereInput
|
|
102954
103072
|
}
|
|
102955
103073
|
|
|
102956
|
-
export type ExternalAffiliateClickListRelationFilter = {
|
|
102957
|
-
every?: ExternalAffiliateClickWhereInput
|
|
102958
|
-
some?: ExternalAffiliateClickWhereInput
|
|
102959
|
-
none?: ExternalAffiliateClickWhereInput
|
|
102960
|
-
}
|
|
102961
|
-
|
|
102962
103074
|
export type TrolleyPaymentOrderByRelationAggregateInput = {
|
|
102963
103075
|
_count?: SortOrder
|
|
102964
103076
|
}
|
|
@@ -102967,10 +103079,6 @@ export namespace Prisma {
|
|
|
102967
103079
|
_count?: SortOrder
|
|
102968
103080
|
}
|
|
102969
103081
|
|
|
102970
|
-
export type ExternalAffiliateClickOrderByRelationAggregateInput = {
|
|
102971
|
-
_count?: SortOrder
|
|
102972
|
-
}
|
|
102973
|
-
|
|
102974
103082
|
export type OptInOrderByRelevanceInput = {
|
|
102975
103083
|
fields: OptInOrderByRelevanceFieldEnum | OptInOrderByRelevanceFieldEnum[]
|
|
102976
103084
|
sort: SortOrder
|
|
@@ -103217,6 +103325,7 @@ export namespace Prisma {
|
|
|
103217
103325
|
hasCollaborators?: SortOrder
|
|
103218
103326
|
isOwnedByUser?: SortOrder
|
|
103219
103327
|
views?: SortOrder
|
|
103328
|
+
replays?: SortOrder
|
|
103220
103329
|
impressions?: SortOrder
|
|
103221
103330
|
impressionsOrganic?: SortOrder
|
|
103222
103331
|
impressionsPaid?: SortOrder
|
|
@@ -103236,6 +103345,7 @@ export namespace Prisma {
|
|
|
103236
103345
|
export type SocialPostAvgOrderByAggregateInput = {
|
|
103237
103346
|
id?: SortOrder
|
|
103238
103347
|
views?: SortOrder
|
|
103348
|
+
replays?: SortOrder
|
|
103239
103349
|
impressions?: SortOrder
|
|
103240
103350
|
impressionsOrganic?: SortOrder
|
|
103241
103351
|
impressionsPaid?: SortOrder
|
|
@@ -103270,6 +103380,7 @@ export namespace Prisma {
|
|
|
103270
103380
|
hasCollaborators?: SortOrder
|
|
103271
103381
|
isOwnedByUser?: SortOrder
|
|
103272
103382
|
views?: SortOrder
|
|
103383
|
+
replays?: SortOrder
|
|
103273
103384
|
impressions?: SortOrder
|
|
103274
103385
|
impressionsOrganic?: SortOrder
|
|
103275
103386
|
impressionsPaid?: SortOrder
|
|
@@ -103304,6 +103415,7 @@ export namespace Prisma {
|
|
|
103304
103415
|
hasCollaborators?: SortOrder
|
|
103305
103416
|
isOwnedByUser?: SortOrder
|
|
103306
103417
|
views?: SortOrder
|
|
103418
|
+
replays?: SortOrder
|
|
103307
103419
|
impressions?: SortOrder
|
|
103308
103420
|
impressionsOrganic?: SortOrder
|
|
103309
103421
|
impressionsPaid?: SortOrder
|
|
@@ -103323,6 +103435,7 @@ export namespace Prisma {
|
|
|
103323
103435
|
export type SocialPostSumOrderByAggregateInput = {
|
|
103324
103436
|
id?: SortOrder
|
|
103325
103437
|
views?: SortOrder
|
|
103438
|
+
replays?: SortOrder
|
|
103326
103439
|
impressions?: SortOrder
|
|
103327
103440
|
impressionsOrganic?: SortOrder
|
|
103328
103441
|
impressionsPaid?: SortOrder
|
|
@@ -103738,11 +103851,13 @@ export namespace Prisma {
|
|
|
103738
103851
|
linkUrl?: SortOrder
|
|
103739
103852
|
metaData?: SortOrder
|
|
103740
103853
|
optInId?: SortOrder
|
|
103854
|
+
campaignId?: SortOrder
|
|
103741
103855
|
}
|
|
103742
103856
|
|
|
103743
103857
|
export type ExternalAffiliateClickAvgOrderByAggregateInput = {
|
|
103744
103858
|
id?: SortOrder
|
|
103745
103859
|
optInId?: SortOrder
|
|
103860
|
+
campaignId?: SortOrder
|
|
103746
103861
|
}
|
|
103747
103862
|
|
|
103748
103863
|
export type ExternalAffiliateClickMaxOrderByAggregateInput = {
|
|
@@ -103753,6 +103868,7 @@ export namespace Prisma {
|
|
|
103753
103868
|
ipv6?: SortOrder
|
|
103754
103869
|
linkUrl?: SortOrder
|
|
103755
103870
|
optInId?: SortOrder
|
|
103871
|
+
campaignId?: SortOrder
|
|
103756
103872
|
}
|
|
103757
103873
|
|
|
103758
103874
|
export type ExternalAffiliateClickMinOrderByAggregateInput = {
|
|
@@ -103763,11 +103879,13 @@ export namespace Prisma {
|
|
|
103763
103879
|
ipv6?: SortOrder
|
|
103764
103880
|
linkUrl?: SortOrder
|
|
103765
103881
|
optInId?: SortOrder
|
|
103882
|
+
campaignId?: SortOrder
|
|
103766
103883
|
}
|
|
103767
103884
|
|
|
103768
103885
|
export type ExternalAffiliateClickSumOrderByAggregateInput = {
|
|
103769
103886
|
id?: SortOrder
|
|
103770
103887
|
optInId?: SortOrder
|
|
103888
|
+
campaignId?: SortOrder
|
|
103771
103889
|
}
|
|
103772
103890
|
|
|
103773
103891
|
export type BrandAffiliateLinkOrderByRelevanceInput = {
|
|
@@ -107614,6 +107732,13 @@ export namespace Prisma {
|
|
|
107614
107732
|
connect?: SequenceWhereUniqueInput | SequenceWhereUniqueInput[]
|
|
107615
107733
|
}
|
|
107616
107734
|
|
|
107735
|
+
export type ExternalAffiliateClickCreateNestedManyWithoutCampaignInput = {
|
|
107736
|
+
create?: XOR<ExternalAffiliateClickCreateWithoutCampaignInput, ExternalAffiliateClickUncheckedCreateWithoutCampaignInput> | ExternalAffiliateClickCreateWithoutCampaignInput[] | ExternalAffiliateClickUncheckedCreateWithoutCampaignInput[]
|
|
107737
|
+
connectOrCreate?: ExternalAffiliateClickCreateOrConnectWithoutCampaignInput | ExternalAffiliateClickCreateOrConnectWithoutCampaignInput[]
|
|
107738
|
+
createMany?: ExternalAffiliateClickCreateManyCampaignInputEnvelope
|
|
107739
|
+
connect?: ExternalAffiliateClickWhereUniqueInput | ExternalAffiliateClickWhereUniqueInput[]
|
|
107740
|
+
}
|
|
107741
|
+
|
|
107617
107742
|
export type CampaignStepUncheckedCreateNestedManyWithoutCampaignInput = {
|
|
107618
107743
|
create?: XOR<CampaignStepCreateWithoutCampaignInput, CampaignStepUncheckedCreateWithoutCampaignInput> | CampaignStepCreateWithoutCampaignInput[] | CampaignStepUncheckedCreateWithoutCampaignInput[]
|
|
107619
107744
|
connectOrCreate?: CampaignStepCreateOrConnectWithoutCampaignInput | CampaignStepCreateOrConnectWithoutCampaignInput[]
|
|
@@ -107719,6 +107844,13 @@ export namespace Prisma {
|
|
|
107719
107844
|
connect?: SequenceWhereUniqueInput | SequenceWhereUniqueInput[]
|
|
107720
107845
|
}
|
|
107721
107846
|
|
|
107847
|
+
export type ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput = {
|
|
107848
|
+
create?: XOR<ExternalAffiliateClickCreateWithoutCampaignInput, ExternalAffiliateClickUncheckedCreateWithoutCampaignInput> | ExternalAffiliateClickCreateWithoutCampaignInput[] | ExternalAffiliateClickUncheckedCreateWithoutCampaignInput[]
|
|
107849
|
+
connectOrCreate?: ExternalAffiliateClickCreateOrConnectWithoutCampaignInput | ExternalAffiliateClickCreateOrConnectWithoutCampaignInput[]
|
|
107850
|
+
createMany?: ExternalAffiliateClickCreateManyCampaignInputEnvelope
|
|
107851
|
+
connect?: ExternalAffiliateClickWhereUniqueInput | ExternalAffiliateClickWhereUniqueInput[]
|
|
107852
|
+
}
|
|
107853
|
+
|
|
107722
107854
|
export type CampaignStepUpdateManyWithoutCampaignNestedInput = {
|
|
107723
107855
|
create?: XOR<CampaignStepCreateWithoutCampaignInput, CampaignStepUncheckedCreateWithoutCampaignInput> | CampaignStepCreateWithoutCampaignInput[] | CampaignStepUncheckedCreateWithoutCampaignInput[]
|
|
107724
107856
|
connectOrCreate?: CampaignStepCreateOrConnectWithoutCampaignInput | CampaignStepCreateOrConnectWithoutCampaignInput[]
|
|
@@ -107937,6 +108069,20 @@ export namespace Prisma {
|
|
|
107937
108069
|
deleteMany?: SequenceScalarWhereInput | SequenceScalarWhereInput[]
|
|
107938
108070
|
}
|
|
107939
108071
|
|
|
108072
|
+
export type ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput = {
|
|
108073
|
+
create?: XOR<ExternalAffiliateClickCreateWithoutCampaignInput, ExternalAffiliateClickUncheckedCreateWithoutCampaignInput> | ExternalAffiliateClickCreateWithoutCampaignInput[] | ExternalAffiliateClickUncheckedCreateWithoutCampaignInput[]
|
|
108074
|
+
connectOrCreate?: ExternalAffiliateClickCreateOrConnectWithoutCampaignInput | ExternalAffiliateClickCreateOrConnectWithoutCampaignInput[]
|
|
108075
|
+
upsert?: ExternalAffiliateClickUpsertWithWhereUniqueWithoutCampaignInput | ExternalAffiliateClickUpsertWithWhereUniqueWithoutCampaignInput[]
|
|
108076
|
+
createMany?: ExternalAffiliateClickCreateManyCampaignInputEnvelope
|
|
108077
|
+
set?: ExternalAffiliateClickWhereUniqueInput | ExternalAffiliateClickWhereUniqueInput[]
|
|
108078
|
+
disconnect?: ExternalAffiliateClickWhereUniqueInput | ExternalAffiliateClickWhereUniqueInput[]
|
|
108079
|
+
delete?: ExternalAffiliateClickWhereUniqueInput | ExternalAffiliateClickWhereUniqueInput[]
|
|
108080
|
+
connect?: ExternalAffiliateClickWhereUniqueInput | ExternalAffiliateClickWhereUniqueInput[]
|
|
108081
|
+
update?: ExternalAffiliateClickUpdateWithWhereUniqueWithoutCampaignInput | ExternalAffiliateClickUpdateWithWhereUniqueWithoutCampaignInput[]
|
|
108082
|
+
updateMany?: ExternalAffiliateClickUpdateManyWithWhereWithoutCampaignInput | ExternalAffiliateClickUpdateManyWithWhereWithoutCampaignInput[]
|
|
108083
|
+
deleteMany?: ExternalAffiliateClickScalarWhereInput | ExternalAffiliateClickScalarWhereInput[]
|
|
108084
|
+
}
|
|
108085
|
+
|
|
107940
108086
|
export type CampaignStepUncheckedUpdateManyWithoutCampaignNestedInput = {
|
|
107941
108087
|
create?: XOR<CampaignStepCreateWithoutCampaignInput, CampaignStepUncheckedCreateWithoutCampaignInput> | CampaignStepCreateWithoutCampaignInput[] | CampaignStepUncheckedCreateWithoutCampaignInput[]
|
|
107942
108088
|
connectOrCreate?: CampaignStepCreateOrConnectWithoutCampaignInput | CampaignStepCreateOrConnectWithoutCampaignInput[]
|
|
@@ -108147,6 +108293,20 @@ export namespace Prisma {
|
|
|
108147
108293
|
deleteMany?: SequenceScalarWhereInput | SequenceScalarWhereInput[]
|
|
108148
108294
|
}
|
|
108149
108295
|
|
|
108296
|
+
export type ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput = {
|
|
108297
|
+
create?: XOR<ExternalAffiliateClickCreateWithoutCampaignInput, ExternalAffiliateClickUncheckedCreateWithoutCampaignInput> | ExternalAffiliateClickCreateWithoutCampaignInput[] | ExternalAffiliateClickUncheckedCreateWithoutCampaignInput[]
|
|
108298
|
+
connectOrCreate?: ExternalAffiliateClickCreateOrConnectWithoutCampaignInput | ExternalAffiliateClickCreateOrConnectWithoutCampaignInput[]
|
|
108299
|
+
upsert?: ExternalAffiliateClickUpsertWithWhereUniqueWithoutCampaignInput | ExternalAffiliateClickUpsertWithWhereUniqueWithoutCampaignInput[]
|
|
108300
|
+
createMany?: ExternalAffiliateClickCreateManyCampaignInputEnvelope
|
|
108301
|
+
set?: ExternalAffiliateClickWhereUniqueInput | ExternalAffiliateClickWhereUniqueInput[]
|
|
108302
|
+
disconnect?: ExternalAffiliateClickWhereUniqueInput | ExternalAffiliateClickWhereUniqueInput[]
|
|
108303
|
+
delete?: ExternalAffiliateClickWhereUniqueInput | ExternalAffiliateClickWhereUniqueInput[]
|
|
108304
|
+
connect?: ExternalAffiliateClickWhereUniqueInput | ExternalAffiliateClickWhereUniqueInput[]
|
|
108305
|
+
update?: ExternalAffiliateClickUpdateWithWhereUniqueWithoutCampaignInput | ExternalAffiliateClickUpdateWithWhereUniqueWithoutCampaignInput[]
|
|
108306
|
+
updateMany?: ExternalAffiliateClickUpdateManyWithWhereWithoutCampaignInput | ExternalAffiliateClickUpdateManyWithWhereWithoutCampaignInput[]
|
|
108307
|
+
deleteMany?: ExternalAffiliateClickScalarWhereInput | ExternalAffiliateClickScalarWhereInput[]
|
|
108308
|
+
}
|
|
108309
|
+
|
|
108150
108310
|
export type UserCreateNestedOneWithoutCampaignPinsInput = {
|
|
108151
108311
|
create?: XOR<UserCreateWithoutCampaignPinsInput, UserUncheckedCreateWithoutCampaignPinsInput>
|
|
108152
108312
|
connectOrCreate?: UserCreateOrConnectWithoutCampaignPinsInput
|
|
@@ -109711,6 +109871,12 @@ export namespace Prisma {
|
|
|
109711
109871
|
connect?: OptInWhereUniqueInput
|
|
109712
109872
|
}
|
|
109713
109873
|
|
|
109874
|
+
export type CampaignCreateNestedOneWithoutExternalAffiliateClickInput = {
|
|
109875
|
+
create?: XOR<CampaignCreateWithoutExternalAffiliateClickInput, CampaignUncheckedCreateWithoutExternalAffiliateClickInput>
|
|
109876
|
+
connectOrCreate?: CampaignCreateOrConnectWithoutExternalAffiliateClickInput
|
|
109877
|
+
connect?: CampaignWhereUniqueInput
|
|
109878
|
+
}
|
|
109879
|
+
|
|
109714
109880
|
export type OptInUpdateOneRequiredWithoutExternalAffiliateClickNestedInput = {
|
|
109715
109881
|
create?: XOR<OptInCreateWithoutExternalAffiliateClickInput, OptInUncheckedCreateWithoutExternalAffiliateClickInput>
|
|
109716
109882
|
connectOrCreate?: OptInCreateOrConnectWithoutExternalAffiliateClickInput
|
|
@@ -109719,6 +109885,14 @@ export namespace Prisma {
|
|
|
109719
109885
|
update?: XOR<XOR<OptInUpdateToOneWithWhereWithoutExternalAffiliateClickInput, OptInUpdateWithoutExternalAffiliateClickInput>, OptInUncheckedUpdateWithoutExternalAffiliateClickInput>
|
|
109720
109886
|
}
|
|
109721
109887
|
|
|
109888
|
+
export type CampaignUpdateOneRequiredWithoutExternalAffiliateClickNestedInput = {
|
|
109889
|
+
create?: XOR<CampaignCreateWithoutExternalAffiliateClickInput, CampaignUncheckedCreateWithoutExternalAffiliateClickInput>
|
|
109890
|
+
connectOrCreate?: CampaignCreateOrConnectWithoutExternalAffiliateClickInput
|
|
109891
|
+
upsert?: CampaignUpsertWithoutExternalAffiliateClickInput
|
|
109892
|
+
connect?: CampaignWhereUniqueInput
|
|
109893
|
+
update?: XOR<XOR<CampaignUpdateToOneWithWhereWithoutExternalAffiliateClickInput, CampaignUpdateWithoutExternalAffiliateClickInput>, CampaignUncheckedUpdateWithoutExternalAffiliateClickInput>
|
|
109894
|
+
}
|
|
109895
|
+
|
|
109722
109896
|
export type AffiliateLinkCreateNestedManyWithoutBrandAffiliateLinkInput = {
|
|
109723
109897
|
create?: XOR<AffiliateLinkCreateWithoutBrandAffiliateLinkInput, AffiliateLinkUncheckedCreateWithoutBrandAffiliateLinkInput> | AffiliateLinkCreateWithoutBrandAffiliateLinkInput[] | AffiliateLinkUncheckedCreateWithoutBrandAffiliateLinkInput[]
|
|
109724
109898
|
connectOrCreate?: AffiliateLinkCreateOrConnectWithoutBrandAffiliateLinkInput | AffiliateLinkCreateOrConnectWithoutBrandAffiliateLinkInput[]
|
|
@@ -112310,6 +112484,7 @@ export namespace Prisma {
|
|
|
112310
112484
|
hasCollaborators?: boolean | null
|
|
112311
112485
|
isOwnedByUser?: boolean | null
|
|
112312
112486
|
views?: number | null
|
|
112487
|
+
replays?: number | null
|
|
112313
112488
|
impressions?: number | null
|
|
112314
112489
|
impressionsOrganic?: number | null
|
|
112315
112490
|
impressionsPaid?: number | null
|
|
@@ -112345,6 +112520,7 @@ export namespace Prisma {
|
|
|
112345
112520
|
hasCollaborators?: boolean | null
|
|
112346
112521
|
isOwnedByUser?: boolean | null
|
|
112347
112522
|
views?: number | null
|
|
112523
|
+
replays?: number | null
|
|
112348
112524
|
impressions?: number | null
|
|
112349
112525
|
impressionsOrganic?: number | null
|
|
112350
112526
|
impressionsPaid?: number | null
|
|
@@ -113256,6 +113432,7 @@ export namespace Prisma {
|
|
|
113256
113432
|
hasCollaborators?: BoolNullableFilter<"SocialPost"> | boolean | null
|
|
113257
113433
|
isOwnedByUser?: BoolNullableFilter<"SocialPost"> | boolean | null
|
|
113258
113434
|
views?: IntNullableFilter<"SocialPost"> | number | null
|
|
113435
|
+
replays?: IntNullableFilter<"SocialPost"> | number | null
|
|
113259
113436
|
impressions?: IntNullableFilter<"SocialPost"> | number | null
|
|
113260
113437
|
impressionsOrganic?: IntNullableFilter<"SocialPost"> | number | null
|
|
113261
113438
|
impressionsPaid?: IntNullableFilter<"SocialPost"> | number | null
|
|
@@ -116112,6 +116289,7 @@ export namespace Prisma {
|
|
|
116112
116289
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
116113
116290
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
116114
116291
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
116292
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
116115
116293
|
}
|
|
116116
116294
|
|
|
116117
116295
|
export type CampaignUncheckedCreateWithoutBrandInput = {
|
|
@@ -116182,6 +116360,7 @@ export namespace Prisma {
|
|
|
116182
116360
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
116183
116361
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
116184
116362
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
116363
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
116185
116364
|
}
|
|
116186
116365
|
|
|
116187
116366
|
export type CampaignCreateOrConnectWithoutBrandInput = {
|
|
@@ -119606,6 +119785,7 @@ export namespace Prisma {
|
|
|
119606
119785
|
hasCollaborators?: boolean | null
|
|
119607
119786
|
isOwnedByUser?: boolean | null
|
|
119608
119787
|
views?: number | null
|
|
119788
|
+
replays?: number | null
|
|
119609
119789
|
impressions?: number | null
|
|
119610
119790
|
impressionsOrganic?: number | null
|
|
119611
119791
|
impressionsPaid?: number | null
|
|
@@ -119641,6 +119821,7 @@ export namespace Prisma {
|
|
|
119641
119821
|
hasCollaborators?: boolean | null
|
|
119642
119822
|
isOwnedByUser?: boolean | null
|
|
119643
119823
|
views?: number | null
|
|
119824
|
+
replays?: number | null
|
|
119644
119825
|
impressions?: number | null
|
|
119645
119826
|
impressionsOrganic?: number | null
|
|
119646
119827
|
impressionsPaid?: number | null
|
|
@@ -119907,6 +120088,37 @@ export namespace Prisma {
|
|
|
119907
120088
|
skipDuplicates?: boolean
|
|
119908
120089
|
}
|
|
119909
120090
|
|
|
120091
|
+
export type ExternalAffiliateClickCreateWithoutCampaignInput = {
|
|
120092
|
+
program: string
|
|
120093
|
+
created?: Date | string
|
|
120094
|
+
ipv4?: string | null
|
|
120095
|
+
ipv6?: string | null
|
|
120096
|
+
linkUrl: string
|
|
120097
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
120098
|
+
optin: OptInCreateNestedOneWithoutExternalAffiliateClickInput
|
|
120099
|
+
}
|
|
120100
|
+
|
|
120101
|
+
export type ExternalAffiliateClickUncheckedCreateWithoutCampaignInput = {
|
|
120102
|
+
id?: number
|
|
120103
|
+
program: string
|
|
120104
|
+
created?: Date | string
|
|
120105
|
+
ipv4?: string | null
|
|
120106
|
+
ipv6?: string | null
|
|
120107
|
+
linkUrl: string
|
|
120108
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
120109
|
+
optInId: number
|
|
120110
|
+
}
|
|
120111
|
+
|
|
120112
|
+
export type ExternalAffiliateClickCreateOrConnectWithoutCampaignInput = {
|
|
120113
|
+
where: ExternalAffiliateClickWhereUniqueInput
|
|
120114
|
+
create: XOR<ExternalAffiliateClickCreateWithoutCampaignInput, ExternalAffiliateClickUncheckedCreateWithoutCampaignInput>
|
|
120115
|
+
}
|
|
120116
|
+
|
|
120117
|
+
export type ExternalAffiliateClickCreateManyCampaignInputEnvelope = {
|
|
120118
|
+
data: ExternalAffiliateClickCreateManyCampaignInput | ExternalAffiliateClickCreateManyCampaignInput[]
|
|
120119
|
+
skipDuplicates?: boolean
|
|
120120
|
+
}
|
|
120121
|
+
|
|
119910
120122
|
export type CampaignStepUpsertWithWhereUniqueWithoutCampaignInput = {
|
|
119911
120123
|
where: CampaignStepWhereUniqueInput
|
|
119912
120124
|
update: XOR<CampaignStepUpdateWithoutCampaignInput, CampaignStepUncheckedUpdateWithoutCampaignInput>
|
|
@@ -120321,6 +120533,37 @@ export namespace Prisma {
|
|
|
120321
120533
|
data: XOR<SequenceUpdateManyMutationInput, SequenceUncheckedUpdateManyWithoutCampaignInput>
|
|
120322
120534
|
}
|
|
120323
120535
|
|
|
120536
|
+
export type ExternalAffiliateClickUpsertWithWhereUniqueWithoutCampaignInput = {
|
|
120537
|
+
where: ExternalAffiliateClickWhereUniqueInput
|
|
120538
|
+
update: XOR<ExternalAffiliateClickUpdateWithoutCampaignInput, ExternalAffiliateClickUncheckedUpdateWithoutCampaignInput>
|
|
120539
|
+
create: XOR<ExternalAffiliateClickCreateWithoutCampaignInput, ExternalAffiliateClickUncheckedCreateWithoutCampaignInput>
|
|
120540
|
+
}
|
|
120541
|
+
|
|
120542
|
+
export type ExternalAffiliateClickUpdateWithWhereUniqueWithoutCampaignInput = {
|
|
120543
|
+
where: ExternalAffiliateClickWhereUniqueInput
|
|
120544
|
+
data: XOR<ExternalAffiliateClickUpdateWithoutCampaignInput, ExternalAffiliateClickUncheckedUpdateWithoutCampaignInput>
|
|
120545
|
+
}
|
|
120546
|
+
|
|
120547
|
+
export type ExternalAffiliateClickUpdateManyWithWhereWithoutCampaignInput = {
|
|
120548
|
+
where: ExternalAffiliateClickScalarWhereInput
|
|
120549
|
+
data: XOR<ExternalAffiliateClickUpdateManyMutationInput, ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignInput>
|
|
120550
|
+
}
|
|
120551
|
+
|
|
120552
|
+
export type ExternalAffiliateClickScalarWhereInput = {
|
|
120553
|
+
AND?: ExternalAffiliateClickScalarWhereInput | ExternalAffiliateClickScalarWhereInput[]
|
|
120554
|
+
OR?: ExternalAffiliateClickScalarWhereInput[]
|
|
120555
|
+
NOT?: ExternalAffiliateClickScalarWhereInput | ExternalAffiliateClickScalarWhereInput[]
|
|
120556
|
+
id?: IntFilter<"ExternalAffiliateClick"> | number
|
|
120557
|
+
program?: StringFilter<"ExternalAffiliateClick"> | string
|
|
120558
|
+
created?: DateTimeFilter<"ExternalAffiliateClick"> | Date | string
|
|
120559
|
+
ipv4?: StringNullableFilter<"ExternalAffiliateClick"> | string | null
|
|
120560
|
+
ipv6?: StringNullableFilter<"ExternalAffiliateClick"> | string | null
|
|
120561
|
+
linkUrl?: StringFilter<"ExternalAffiliateClick"> | string
|
|
120562
|
+
metaData?: JsonFilter<"ExternalAffiliateClick">
|
|
120563
|
+
optInId?: IntFilter<"ExternalAffiliateClick"> | number
|
|
120564
|
+
campaignId?: IntFilter<"ExternalAffiliateClick"> | number
|
|
120565
|
+
}
|
|
120566
|
+
|
|
120324
120567
|
export type UserCreateWithoutCampaignPinsInput = {
|
|
120325
120568
|
role: string
|
|
120326
120569
|
email?: string | null
|
|
@@ -120474,6 +120717,7 @@ export namespace Prisma {
|
|
|
120474
120717
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
120475
120718
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
120476
120719
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
120720
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
120477
120721
|
}
|
|
120478
120722
|
|
|
120479
120723
|
export type CampaignUncheckedCreateWithoutCampaignPinsInput = {
|
|
@@ -120544,6 +120788,7 @@ export namespace Prisma {
|
|
|
120544
120788
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
120545
120789
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
120546
120790
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
120791
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
120547
120792
|
}
|
|
120548
120793
|
|
|
120549
120794
|
export type CampaignCreateOrConnectWithoutCampaignPinsInput = {
|
|
@@ -120721,6 +120966,7 @@ export namespace Prisma {
|
|
|
120721
120966
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
120722
120967
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
120723
120968
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
120969
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
120724
120970
|
}
|
|
120725
120971
|
|
|
120726
120972
|
export type CampaignUncheckedUpdateWithoutCampaignPinsInput = {
|
|
@@ -120791,6 +121037,7 @@ export namespace Prisma {
|
|
|
120791
121037
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
120792
121038
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
120793
121039
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
121040
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
120794
121041
|
}
|
|
120795
121042
|
|
|
120796
121043
|
export type CampaignCreateWithoutImagesInput = {
|
|
@@ -120860,6 +121107,7 @@ export namespace Prisma {
|
|
|
120860
121107
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
120861
121108
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
120862
121109
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
121110
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
120863
121111
|
}
|
|
120864
121112
|
|
|
120865
121113
|
export type CampaignUncheckedCreateWithoutImagesInput = {
|
|
@@ -120930,6 +121178,7 @@ export namespace Prisma {
|
|
|
120930
121178
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
120931
121179
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
120932
121180
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
121181
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
120933
121182
|
}
|
|
120934
121183
|
|
|
120935
121184
|
export type CampaignCreateOrConnectWithoutImagesInput = {
|
|
@@ -121036,6 +121285,7 @@ export namespace Prisma {
|
|
|
121036
121285
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
121037
121286
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
121038
121287
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
121288
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
121039
121289
|
}
|
|
121040
121290
|
|
|
121041
121291
|
export type CampaignUncheckedUpdateWithoutImagesInput = {
|
|
@@ -121106,6 +121356,7 @@ export namespace Prisma {
|
|
|
121106
121356
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
121107
121357
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
121108
121358
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
121359
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
121109
121360
|
}
|
|
121110
121361
|
|
|
121111
121362
|
export type ImageUpsertWithWhereUniqueWithoutCampaignImageInput = {
|
|
@@ -121201,6 +121452,7 @@ export namespace Prisma {
|
|
|
121201
121452
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
121202
121453
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
121203
121454
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
121455
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
121204
121456
|
}
|
|
121205
121457
|
|
|
121206
121458
|
export type CampaignUncheckedCreateWithoutCampaignToBrandAffiliateLinksInput = {
|
|
@@ -121271,6 +121523,7 @@ export namespace Prisma {
|
|
|
121271
121523
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
121272
121524
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
121273
121525
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
121526
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
121274
121527
|
}
|
|
121275
121528
|
|
|
121276
121529
|
export type CampaignCreateOrConnectWithoutCampaignToBrandAffiliateLinksInput = {
|
|
@@ -121382,6 +121635,7 @@ export namespace Prisma {
|
|
|
121382
121635
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
121383
121636
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
121384
121637
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
121638
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
121385
121639
|
}
|
|
121386
121640
|
|
|
121387
121641
|
export type CampaignUncheckedUpdateWithoutCampaignToBrandAffiliateLinksInput = {
|
|
@@ -121452,6 +121706,7 @@ export namespace Prisma {
|
|
|
121452
121706
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
121453
121707
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
121454
121708
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
121709
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
121455
121710
|
}
|
|
121456
121711
|
|
|
121457
121712
|
export type BrandAffiliateLinkUpsertWithoutCampaignToBrandAffiliateLinkInput = {
|
|
@@ -121553,6 +121808,7 @@ export namespace Prisma {
|
|
|
121553
121808
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
121554
121809
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
121555
121810
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
121811
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
121556
121812
|
}
|
|
121557
121813
|
|
|
121558
121814
|
export type CampaignUncheckedCreateWithoutCategoriesInput = {
|
|
@@ -121623,6 +121879,7 @@ export namespace Prisma {
|
|
|
121623
121879
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
121624
121880
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
121625
121881
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
121882
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
121626
121883
|
}
|
|
121627
121884
|
|
|
121628
121885
|
export type CampaignCreateOrConnectWithoutCategoriesInput = {
|
|
@@ -121728,6 +121985,7 @@ export namespace Prisma {
|
|
|
121728
121985
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
121729
121986
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
121730
121987
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
121988
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
121731
121989
|
}
|
|
121732
121990
|
|
|
121733
121991
|
export type CampaignUncheckedUpdateWithoutCategoriesInput = {
|
|
@@ -121798,6 +122056,7 @@ export namespace Prisma {
|
|
|
121798
122056
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
121799
122057
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
121800
122058
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
122059
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
121801
122060
|
}
|
|
121802
122061
|
|
|
121803
122062
|
export type CategoryUpsertWithoutCampaignsInput = {
|
|
@@ -121893,6 +122152,7 @@ export namespace Prisma {
|
|
|
121893
122152
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
121894
122153
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
121895
122154
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
122155
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
121896
122156
|
}
|
|
121897
122157
|
|
|
121898
122158
|
export type CampaignUncheckedCreateWithoutCountriesInput = {
|
|
@@ -121963,6 +122223,7 @@ export namespace Prisma {
|
|
|
121963
122223
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
121964
122224
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
121965
122225
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
122226
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
121966
122227
|
}
|
|
121967
122228
|
|
|
121968
122229
|
export type CampaignCreateOrConnectWithoutCountriesInput = {
|
|
@@ -122068,6 +122329,7 @@ export namespace Prisma {
|
|
|
122068
122329
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
122069
122330
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
122070
122331
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
122332
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
122071
122333
|
}
|
|
122072
122334
|
|
|
122073
122335
|
export type CampaignUncheckedUpdateWithoutCountriesInput = {
|
|
@@ -122138,6 +122400,7 @@ export namespace Prisma {
|
|
|
122138
122400
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
122139
122401
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
122140
122402
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
122403
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
122141
122404
|
}
|
|
122142
122405
|
|
|
122143
122406
|
export type CountryUpsertWithoutCampaignsInput = {
|
|
@@ -122588,6 +122851,7 @@ export namespace Prisma {
|
|
|
122588
122851
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
122589
122852
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
122590
122853
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
122854
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
122591
122855
|
}
|
|
122592
122856
|
|
|
122593
122857
|
export type CampaignUncheckedCreateWithoutProductListsInput = {
|
|
@@ -122658,6 +122922,7 @@ export namespace Prisma {
|
|
|
122658
122922
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
122659
122923
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
122660
122924
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
122925
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
122661
122926
|
}
|
|
122662
122927
|
|
|
122663
122928
|
export type CampaignCreateOrConnectWithoutProductListsInput = {
|
|
@@ -122767,6 +123032,7 @@ export namespace Prisma {
|
|
|
122767
123032
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
122768
123033
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
122769
123034
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
123035
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
122770
123036
|
}
|
|
122771
123037
|
|
|
122772
123038
|
export type CampaignUncheckedUpdateWithoutProductListsInput = {
|
|
@@ -122837,6 +123103,7 @@ export namespace Prisma {
|
|
|
122837
123103
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
122838
123104
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
122839
123105
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
123106
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
122840
123107
|
}
|
|
122841
123108
|
|
|
122842
123109
|
export type ProductListUpsertWithoutCampaignProductListsInput = {
|
|
@@ -123112,6 +123379,7 @@ export namespace Prisma {
|
|
|
123112
123379
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
123113
123380
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
123114
123381
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
123382
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
123115
123383
|
}
|
|
123116
123384
|
|
|
123117
123385
|
export type CampaignUncheckedCreateWithoutVariablesInput = {
|
|
@@ -123182,6 +123450,7 @@ export namespace Prisma {
|
|
|
123182
123450
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
123183
123451
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
123184
123452
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
123453
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
123185
123454
|
}
|
|
123186
123455
|
|
|
123187
123456
|
export type CampaignCreateOrConnectWithoutVariablesInput = {
|
|
@@ -123313,6 +123582,7 @@ export namespace Prisma {
|
|
|
123313
123582
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
123314
123583
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
123315
123584
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
123585
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
123316
123586
|
}
|
|
123317
123587
|
|
|
123318
123588
|
export type CampaignUncheckedUpdateWithoutVariablesInput = {
|
|
@@ -123383,6 +123653,7 @@ export namespace Prisma {
|
|
|
123383
123653
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
123384
123654
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
123385
123655
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
123656
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
123386
123657
|
}
|
|
123387
123658
|
|
|
123388
123659
|
export type VariableOptionUpsertWithWhereUniqueWithoutVariableInput = {
|
|
@@ -123645,6 +123916,7 @@ export namespace Prisma {
|
|
|
123645
123916
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
123646
123917
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
123647
123918
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
123919
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
123648
123920
|
}
|
|
123649
123921
|
|
|
123650
123922
|
export type CampaignUncheckedCreateWithoutStepsInput = {
|
|
@@ -123715,6 +123987,7 @@ export namespace Prisma {
|
|
|
123715
123987
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
123716
123988
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
123717
123989
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
123990
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
123718
123991
|
}
|
|
123719
123992
|
|
|
123720
123993
|
export type CampaignCreateOrConnectWithoutStepsInput = {
|
|
@@ -123910,6 +124183,7 @@ export namespace Prisma {
|
|
|
123910
124183
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
123911
124184
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
123912
124185
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
124186
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
123913
124187
|
}
|
|
123914
124188
|
|
|
123915
124189
|
export type CampaignUncheckedUpdateWithoutStepsInput = {
|
|
@@ -123980,6 +124254,7 @@ export namespace Prisma {
|
|
|
123980
124254
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
123981
124255
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
123982
124256
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
124257
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
123983
124258
|
}
|
|
123984
124259
|
|
|
123985
124260
|
export type StepUpsertWithoutCampaignStepsInput = {
|
|
@@ -124503,6 +124778,7 @@ export namespace Prisma {
|
|
|
124503
124778
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
124504
124779
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
124505
124780
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
124781
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
124506
124782
|
}
|
|
124507
124783
|
|
|
124508
124784
|
export type CampaignUncheckedCreateWithoutOptInsInput = {
|
|
@@ -124573,6 +124849,7 @@ export namespace Prisma {
|
|
|
124573
124849
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
124574
124850
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
124575
124851
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
124852
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
124576
124853
|
}
|
|
124577
124854
|
|
|
124578
124855
|
export type CampaignCreateOrConnectWithoutOptInsInput = {
|
|
@@ -124792,6 +125069,7 @@ export namespace Prisma {
|
|
|
124792
125069
|
ipv6?: string | null
|
|
124793
125070
|
linkUrl: string
|
|
124794
125071
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
125072
|
+
campaign: CampaignCreateNestedOneWithoutExternalAffiliateClickInput
|
|
124795
125073
|
}
|
|
124796
125074
|
|
|
124797
125075
|
export type ExternalAffiliateClickUncheckedCreateWithoutOptinInput = {
|
|
@@ -124802,6 +125080,7 @@ export namespace Prisma {
|
|
|
124802
125080
|
ipv6?: string | null
|
|
124803
125081
|
linkUrl: string
|
|
124804
125082
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
125083
|
+
campaignId: number
|
|
124805
125084
|
}
|
|
124806
125085
|
|
|
124807
125086
|
export type ExternalAffiliateClickCreateOrConnectWithoutOptinInput = {
|
|
@@ -124984,6 +125263,7 @@ export namespace Prisma {
|
|
|
124984
125263
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
124985
125264
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
124986
125265
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
125266
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
124987
125267
|
}
|
|
124988
125268
|
|
|
124989
125269
|
export type CampaignUncheckedUpdateWithoutOptInsInput = {
|
|
@@ -125054,6 +125334,7 @@ export namespace Prisma {
|
|
|
125054
125334
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
125055
125335
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
125056
125336
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
125337
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
125057
125338
|
}
|
|
125058
125339
|
|
|
125059
125340
|
export type CampaignStepUpsertWithoutCurrentOptInsInput = {
|
|
@@ -125258,20 +125539,6 @@ export namespace Prisma {
|
|
|
125258
125539
|
data: XOR<ExternalAffiliateClickUpdateManyMutationInput, ExternalAffiliateClickUncheckedUpdateManyWithoutOptinInput>
|
|
125259
125540
|
}
|
|
125260
125541
|
|
|
125261
|
-
export type ExternalAffiliateClickScalarWhereInput = {
|
|
125262
|
-
AND?: ExternalAffiliateClickScalarWhereInput | ExternalAffiliateClickScalarWhereInput[]
|
|
125263
|
-
OR?: ExternalAffiliateClickScalarWhereInput[]
|
|
125264
|
-
NOT?: ExternalAffiliateClickScalarWhereInput | ExternalAffiliateClickScalarWhereInput[]
|
|
125265
|
-
id?: IntFilter<"ExternalAffiliateClick"> | number
|
|
125266
|
-
program?: StringFilter<"ExternalAffiliateClick"> | string
|
|
125267
|
-
created?: DateTimeFilter<"ExternalAffiliateClick"> | Date | string
|
|
125268
|
-
ipv4?: StringNullableFilter<"ExternalAffiliateClick"> | string | null
|
|
125269
|
-
ipv6?: StringNullableFilter<"ExternalAffiliateClick"> | string | null
|
|
125270
|
-
linkUrl?: StringFilter<"ExternalAffiliateClick"> | string
|
|
125271
|
-
metaData?: JsonFilter<"ExternalAffiliateClick">
|
|
125272
|
-
optInId?: IntFilter<"ExternalAffiliateClick"> | number
|
|
125273
|
-
}
|
|
125274
|
-
|
|
125275
125542
|
export type OptInCreateWithoutTrolleyPaymentsInput = {
|
|
125276
125543
|
status?: string
|
|
125277
125544
|
created?: Date | string
|
|
@@ -125773,6 +126040,7 @@ export namespace Prisma {
|
|
|
125773
126040
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
125774
126041
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
125775
126042
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
126043
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
125776
126044
|
}
|
|
125777
126045
|
|
|
125778
126046
|
export type CampaignUncheckedCreateWithoutSocialPostsInput = {
|
|
@@ -125843,6 +126111,7 @@ export namespace Prisma {
|
|
|
125843
126111
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
125844
126112
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
125845
126113
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
126114
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
125846
126115
|
}
|
|
125847
126116
|
|
|
125848
126117
|
export type CampaignCreateOrConnectWithoutSocialPostsInput = {
|
|
@@ -126039,6 +126308,7 @@ export namespace Prisma {
|
|
|
126039
126308
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
126040
126309
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
126041
126310
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
126311
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
126042
126312
|
}
|
|
126043
126313
|
|
|
126044
126314
|
export type CampaignUncheckedUpdateWithoutSocialPostsInput = {
|
|
@@ -126109,6 +126379,7 @@ export namespace Prisma {
|
|
|
126109
126379
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
126110
126380
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
126111
126381
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
126382
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
126112
126383
|
}
|
|
126113
126384
|
|
|
126114
126385
|
export type ListToSocialPostUpsertWithWhereUniqueWithoutSocialPostInput = {
|
|
@@ -126887,6 +127158,152 @@ export namespace Prisma {
|
|
|
126887
127158
|
create: XOR<OptInCreateWithoutExternalAffiliateClickInput, OptInUncheckedCreateWithoutExternalAffiliateClickInput>
|
|
126888
127159
|
}
|
|
126889
127160
|
|
|
127161
|
+
export type CampaignCreateWithoutExternalAffiliateClickInput = {
|
|
127162
|
+
title: string
|
|
127163
|
+
slug?: string | null
|
|
127164
|
+
status?: string
|
|
127165
|
+
date?: Date | string
|
|
127166
|
+
publishDate?: Date | string | null
|
|
127167
|
+
sfSyncDate?: Date | string | null
|
|
127168
|
+
description?: string | null
|
|
127169
|
+
productDescription?: string | null
|
|
127170
|
+
prizeDescription?: string | null
|
|
127171
|
+
strategy?: string | null
|
|
127172
|
+
socialChannel?: string | null
|
|
127173
|
+
socialChannels?: NullableJsonNullValueInput | InputJsonValue
|
|
127174
|
+
facebookReach?: number | null
|
|
127175
|
+
facebookEngagement?: number | null
|
|
127176
|
+
instagramReach?: number | null
|
|
127177
|
+
instagramEngagement?: number | null
|
|
127178
|
+
youtubeReach?: number | null
|
|
127179
|
+
youtubeEngagement?: number | null
|
|
127180
|
+
twitterReach?: number | null
|
|
127181
|
+
twitterEngagement?: number | null
|
|
127182
|
+
tiktokReach?: number | null
|
|
127183
|
+
tiktokEngagement?: number | null
|
|
127184
|
+
twitchReach?: number | null
|
|
127185
|
+
twitchEngagement?: number | null
|
|
127186
|
+
quantity?: number
|
|
127187
|
+
holdCost?: number | null
|
|
127188
|
+
value?: number | null
|
|
127189
|
+
paidAmount?: number | null
|
|
127190
|
+
minAge?: number | null
|
|
127191
|
+
maxAge?: number | null
|
|
127192
|
+
visuals?: string | null
|
|
127193
|
+
photoTags?: NullableJsonNullValueInput | InputJsonValue
|
|
127194
|
+
hashtags?: NullableJsonNullValueInput | InputJsonValue
|
|
127195
|
+
storyHashtags?: NullableJsonNullValueInput | InputJsonValue
|
|
127196
|
+
storyMentions?: NullableJsonNullValueInput | InputJsonValue
|
|
127197
|
+
caption?: string | null
|
|
127198
|
+
password?: string | null
|
|
127199
|
+
contentFormats?: NullableJsonNullValueInput | InputJsonValue
|
|
127200
|
+
paidCampaign?: boolean | null
|
|
127201
|
+
minPaidAmount?: number | null
|
|
127202
|
+
maxPaidAmount?: number | null
|
|
127203
|
+
paymentType?: string | null
|
|
127204
|
+
monthlyActivatedGoal?: number | null
|
|
127205
|
+
expectedOptIns?: number | null
|
|
127206
|
+
goalActivations?: number | null
|
|
127207
|
+
goalOptIns?: number | null
|
|
127208
|
+
requiresShipping?: boolean | null
|
|
127209
|
+
disableQualifications?: boolean | null
|
|
127210
|
+
disableActivations?: boolean | null
|
|
127211
|
+
affiliateLinkPath?: string | null
|
|
127212
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
127213
|
+
steps?: CampaignStepCreateNestedManyWithoutCampaignInput
|
|
127214
|
+
categories?: CampaignToCategoryCreateNestedManyWithoutCampaignInput
|
|
127215
|
+
optIns?: OptInCreateNestedManyWithoutCampaignInput
|
|
127216
|
+
images?: CampaignToImageCreateNestedManyWithoutCampaignInput
|
|
127217
|
+
variables?: VariableCreateNestedManyWithoutCampaignInput
|
|
127218
|
+
productLists?: CampaignToProductListCreateNestedManyWithoutCampaignInput
|
|
127219
|
+
countries?: CampaignToCountryCreateNestedManyWithoutCampaignInput
|
|
127220
|
+
campaignPins?: CampaignPinCreateNestedManyWithoutCampaignInput
|
|
127221
|
+
socialPosts?: SocialPostCreateNestedManyWithoutCampaignInput
|
|
127222
|
+
campaignInvites?: CampaignInviteCreateNestedManyWithoutCampaignInput
|
|
127223
|
+
campaignToShopifyProducts?: CampaignToShopifyProductCreateNestedManyWithoutCampaignInput
|
|
127224
|
+
campaignToBrandAffiliateLinks?: CampaignToBrandAffiliateLinkCreateNestedManyWithoutCampaignInput
|
|
127225
|
+
brand: BrandCreateNestedOneWithoutCampaignsInput
|
|
127226
|
+
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
127227
|
+
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
127228
|
+
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
127229
|
+
}
|
|
127230
|
+
|
|
127231
|
+
export type CampaignUncheckedCreateWithoutExternalAffiliateClickInput = {
|
|
127232
|
+
id?: number
|
|
127233
|
+
title: string
|
|
127234
|
+
slug?: string | null
|
|
127235
|
+
status?: string
|
|
127236
|
+
date?: Date | string
|
|
127237
|
+
publishDate?: Date | string | null
|
|
127238
|
+
sfSyncDate?: Date | string | null
|
|
127239
|
+
description?: string | null
|
|
127240
|
+
productDescription?: string | null
|
|
127241
|
+
prizeDescription?: string | null
|
|
127242
|
+
strategy?: string | null
|
|
127243
|
+
socialChannel?: string | null
|
|
127244
|
+
socialChannels?: NullableJsonNullValueInput | InputJsonValue
|
|
127245
|
+
facebookReach?: number | null
|
|
127246
|
+
facebookEngagement?: number | null
|
|
127247
|
+
instagramReach?: number | null
|
|
127248
|
+
instagramEngagement?: number | null
|
|
127249
|
+
youtubeReach?: number | null
|
|
127250
|
+
youtubeEngagement?: number | null
|
|
127251
|
+
twitterReach?: number | null
|
|
127252
|
+
twitterEngagement?: number | null
|
|
127253
|
+
tiktokReach?: number | null
|
|
127254
|
+
tiktokEngagement?: number | null
|
|
127255
|
+
twitchReach?: number | null
|
|
127256
|
+
twitchEngagement?: number | null
|
|
127257
|
+
quantity?: number
|
|
127258
|
+
holdCost?: number | null
|
|
127259
|
+
value?: number | null
|
|
127260
|
+
paidAmount?: number | null
|
|
127261
|
+
minAge?: number | null
|
|
127262
|
+
maxAge?: number | null
|
|
127263
|
+
visuals?: string | null
|
|
127264
|
+
photoTags?: NullableJsonNullValueInput | InputJsonValue
|
|
127265
|
+
hashtags?: NullableJsonNullValueInput | InputJsonValue
|
|
127266
|
+
storyHashtags?: NullableJsonNullValueInput | InputJsonValue
|
|
127267
|
+
storyMentions?: NullableJsonNullValueInput | InputJsonValue
|
|
127268
|
+
caption?: string | null
|
|
127269
|
+
password?: string | null
|
|
127270
|
+
contentFormats?: NullableJsonNullValueInput | InputJsonValue
|
|
127271
|
+
paidCampaign?: boolean | null
|
|
127272
|
+
minPaidAmount?: number | null
|
|
127273
|
+
maxPaidAmount?: number | null
|
|
127274
|
+
paymentType?: string | null
|
|
127275
|
+
monthlyActivatedGoal?: number | null
|
|
127276
|
+
expectedOptIns?: number | null
|
|
127277
|
+
goalActivations?: number | null
|
|
127278
|
+
goalOptIns?: number | null
|
|
127279
|
+
requiresShipping?: boolean | null
|
|
127280
|
+
disableQualifications?: boolean | null
|
|
127281
|
+
disableActivations?: boolean | null
|
|
127282
|
+
affiliateLinkPath?: string | null
|
|
127283
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
127284
|
+
brandId: number
|
|
127285
|
+
steps?: CampaignStepUncheckedCreateNestedManyWithoutCampaignInput
|
|
127286
|
+
categories?: CampaignToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
127287
|
+
optIns?: OptInUncheckedCreateNestedManyWithoutCampaignInput
|
|
127288
|
+
images?: CampaignToImageUncheckedCreateNestedManyWithoutCampaignInput
|
|
127289
|
+
variables?: VariableUncheckedCreateNestedManyWithoutCampaignInput
|
|
127290
|
+
productLists?: CampaignToProductListUncheckedCreateNestedManyWithoutCampaignInput
|
|
127291
|
+
countries?: CampaignToCountryUncheckedCreateNestedManyWithoutCampaignInput
|
|
127292
|
+
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutCampaignInput
|
|
127293
|
+
socialPosts?: SocialPostUncheckedCreateNestedManyWithoutCampaignInput
|
|
127294
|
+
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutCampaignInput
|
|
127295
|
+
campaignToShopifyProducts?: CampaignToShopifyProductUncheckedCreateNestedManyWithoutCampaignInput
|
|
127296
|
+
campaignToBrandAffiliateLinks?: CampaignToBrandAffiliateLinkUncheckedCreateNestedManyWithoutCampaignInput
|
|
127297
|
+
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
127298
|
+
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
127299
|
+
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
127300
|
+
}
|
|
127301
|
+
|
|
127302
|
+
export type CampaignCreateOrConnectWithoutExternalAffiliateClickInput = {
|
|
127303
|
+
where: CampaignWhereUniqueInput
|
|
127304
|
+
create: XOR<CampaignCreateWithoutExternalAffiliateClickInput, CampaignUncheckedCreateWithoutExternalAffiliateClickInput>
|
|
127305
|
+
}
|
|
127306
|
+
|
|
126890
127307
|
export type OptInUpsertWithoutExternalAffiliateClickInput = {
|
|
126891
127308
|
update: XOR<OptInUpdateWithoutExternalAffiliateClickInput, OptInUncheckedUpdateWithoutExternalAffiliateClickInput>
|
|
126892
127309
|
create: XOR<OptInCreateWithoutExternalAffiliateClickInput, OptInUncheckedCreateWithoutExternalAffiliateClickInput>
|
|
@@ -126953,6 +127370,158 @@ export namespace Prisma {
|
|
|
126953
127370
|
productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
|
|
126954
127371
|
}
|
|
126955
127372
|
|
|
127373
|
+
export type CampaignUpsertWithoutExternalAffiliateClickInput = {
|
|
127374
|
+
update: XOR<CampaignUpdateWithoutExternalAffiliateClickInput, CampaignUncheckedUpdateWithoutExternalAffiliateClickInput>
|
|
127375
|
+
create: XOR<CampaignCreateWithoutExternalAffiliateClickInput, CampaignUncheckedCreateWithoutExternalAffiliateClickInput>
|
|
127376
|
+
where?: CampaignWhereInput
|
|
127377
|
+
}
|
|
127378
|
+
|
|
127379
|
+
export type CampaignUpdateToOneWithWhereWithoutExternalAffiliateClickInput = {
|
|
127380
|
+
where?: CampaignWhereInput
|
|
127381
|
+
data: XOR<CampaignUpdateWithoutExternalAffiliateClickInput, CampaignUncheckedUpdateWithoutExternalAffiliateClickInput>
|
|
127382
|
+
}
|
|
127383
|
+
|
|
127384
|
+
export type CampaignUpdateWithoutExternalAffiliateClickInput = {
|
|
127385
|
+
title?: StringFieldUpdateOperationsInput | string
|
|
127386
|
+
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127387
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
127388
|
+
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
127389
|
+
publishDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
127390
|
+
sfSyncDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
127391
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127392
|
+
productDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127393
|
+
prizeDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127394
|
+
strategy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127395
|
+
socialChannel?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127396
|
+
socialChannels?: NullableJsonNullValueInput | InputJsonValue
|
|
127397
|
+
facebookReach?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127398
|
+
facebookEngagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127399
|
+
instagramReach?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127400
|
+
instagramEngagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127401
|
+
youtubeReach?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127402
|
+
youtubeEngagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127403
|
+
twitterReach?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127404
|
+
twitterEngagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127405
|
+
tiktokReach?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127406
|
+
tiktokEngagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127407
|
+
twitchReach?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127408
|
+
twitchEngagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127409
|
+
quantity?: IntFieldUpdateOperationsInput | number
|
|
127410
|
+
holdCost?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127411
|
+
value?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127412
|
+
paidAmount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127413
|
+
minAge?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127414
|
+
maxAge?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127415
|
+
visuals?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127416
|
+
photoTags?: NullableJsonNullValueInput | InputJsonValue
|
|
127417
|
+
hashtags?: NullableJsonNullValueInput | InputJsonValue
|
|
127418
|
+
storyHashtags?: NullableJsonNullValueInput | InputJsonValue
|
|
127419
|
+
storyMentions?: NullableJsonNullValueInput | InputJsonValue
|
|
127420
|
+
caption?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127421
|
+
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127422
|
+
contentFormats?: NullableJsonNullValueInput | InputJsonValue
|
|
127423
|
+
paidCampaign?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
127424
|
+
minPaidAmount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127425
|
+
maxPaidAmount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127426
|
+
paymentType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127427
|
+
monthlyActivatedGoal?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127428
|
+
expectedOptIns?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127429
|
+
goalActivations?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127430
|
+
goalOptIns?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127431
|
+
requiresShipping?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
127432
|
+
disableQualifications?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
127433
|
+
disableActivations?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
127434
|
+
affiliateLinkPath?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127435
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
127436
|
+
steps?: CampaignStepUpdateManyWithoutCampaignNestedInput
|
|
127437
|
+
categories?: CampaignToCategoryUpdateManyWithoutCampaignNestedInput
|
|
127438
|
+
optIns?: OptInUpdateManyWithoutCampaignNestedInput
|
|
127439
|
+
images?: CampaignToImageUpdateManyWithoutCampaignNestedInput
|
|
127440
|
+
variables?: VariableUpdateManyWithoutCampaignNestedInput
|
|
127441
|
+
productLists?: CampaignToProductListUpdateManyWithoutCampaignNestedInput
|
|
127442
|
+
countries?: CampaignToCountryUpdateManyWithoutCampaignNestedInput
|
|
127443
|
+
campaignPins?: CampaignPinUpdateManyWithoutCampaignNestedInput
|
|
127444
|
+
socialPosts?: SocialPostUpdateManyWithoutCampaignNestedInput
|
|
127445
|
+
campaignInvites?: CampaignInviteUpdateManyWithoutCampaignNestedInput
|
|
127446
|
+
campaignToShopifyProducts?: CampaignToShopifyProductUpdateManyWithoutCampaignNestedInput
|
|
127447
|
+
campaignToBrandAffiliateLinks?: CampaignToBrandAffiliateLinkUpdateManyWithoutCampaignNestedInput
|
|
127448
|
+
brand?: BrandUpdateOneRequiredWithoutCampaignsNestedInput
|
|
127449
|
+
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
127450
|
+
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
127451
|
+
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
127452
|
+
}
|
|
127453
|
+
|
|
127454
|
+
export type CampaignUncheckedUpdateWithoutExternalAffiliateClickInput = {
|
|
127455
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
127456
|
+
title?: StringFieldUpdateOperationsInput | string
|
|
127457
|
+
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127458
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
127459
|
+
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
127460
|
+
publishDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
127461
|
+
sfSyncDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
127462
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127463
|
+
productDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127464
|
+
prizeDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127465
|
+
strategy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127466
|
+
socialChannel?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127467
|
+
socialChannels?: NullableJsonNullValueInput | InputJsonValue
|
|
127468
|
+
facebookReach?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127469
|
+
facebookEngagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127470
|
+
instagramReach?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127471
|
+
instagramEngagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127472
|
+
youtubeReach?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127473
|
+
youtubeEngagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127474
|
+
twitterReach?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127475
|
+
twitterEngagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127476
|
+
tiktokReach?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127477
|
+
tiktokEngagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127478
|
+
twitchReach?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127479
|
+
twitchEngagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127480
|
+
quantity?: IntFieldUpdateOperationsInput | number
|
|
127481
|
+
holdCost?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127482
|
+
value?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127483
|
+
paidAmount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127484
|
+
minAge?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127485
|
+
maxAge?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127486
|
+
visuals?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127487
|
+
photoTags?: NullableJsonNullValueInput | InputJsonValue
|
|
127488
|
+
hashtags?: NullableJsonNullValueInput | InputJsonValue
|
|
127489
|
+
storyHashtags?: NullableJsonNullValueInput | InputJsonValue
|
|
127490
|
+
storyMentions?: NullableJsonNullValueInput | InputJsonValue
|
|
127491
|
+
caption?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127492
|
+
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127493
|
+
contentFormats?: NullableJsonNullValueInput | InputJsonValue
|
|
127494
|
+
paidCampaign?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
127495
|
+
minPaidAmount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127496
|
+
maxPaidAmount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127497
|
+
paymentType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127498
|
+
monthlyActivatedGoal?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127499
|
+
expectedOptIns?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127500
|
+
goalActivations?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127501
|
+
goalOptIns?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127502
|
+
requiresShipping?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
127503
|
+
disableQualifications?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
127504
|
+
disableActivations?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
127505
|
+
affiliateLinkPath?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127506
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
127507
|
+
brandId?: IntFieldUpdateOperationsInput | number
|
|
127508
|
+
steps?: CampaignStepUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127509
|
+
categories?: CampaignToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127510
|
+
optIns?: OptInUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127511
|
+
images?: CampaignToImageUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127512
|
+
variables?: VariableUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127513
|
+
productLists?: CampaignToProductListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127514
|
+
countries?: CampaignToCountryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127515
|
+
campaignPins?: CampaignPinUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127516
|
+
socialPosts?: SocialPostUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127517
|
+
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127518
|
+
campaignToShopifyProducts?: CampaignToShopifyProductUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127519
|
+
campaignToBrandAffiliateLinks?: CampaignToBrandAffiliateLinkUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127520
|
+
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127521
|
+
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127522
|
+
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127523
|
+
}
|
|
127524
|
+
|
|
126956
127525
|
export type AffiliateLinkCreateWithoutBrandAffiliateLinkInput = {
|
|
126957
127526
|
created?: Date | string
|
|
126958
127527
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
@@ -128089,6 +128658,7 @@ export namespace Prisma {
|
|
|
128089
128658
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
128090
128659
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
128091
128660
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
128661
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
128092
128662
|
}
|
|
128093
128663
|
|
|
128094
128664
|
export type CampaignUncheckedCreateWithoutCampaignInvitesInput = {
|
|
@@ -128159,6 +128729,7 @@ export namespace Prisma {
|
|
|
128159
128729
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
128160
128730
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
128161
128731
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
128732
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
128162
128733
|
}
|
|
128163
128734
|
|
|
128164
128735
|
export type CampaignCreateOrConnectWithoutCampaignInvitesInput = {
|
|
@@ -128440,6 +129011,7 @@ export namespace Prisma {
|
|
|
128440
129011
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
128441
129012
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
128442
129013
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
129014
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
128443
129015
|
}
|
|
128444
129016
|
|
|
128445
129017
|
export type CampaignUncheckedUpdateWithoutCampaignInvitesInput = {
|
|
@@ -128510,6 +129082,7 @@ export namespace Prisma {
|
|
|
128510
129082
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
128511
129083
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
128512
129084
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
129085
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
128513
129086
|
}
|
|
128514
129087
|
|
|
128515
129088
|
export type SocialProfileUpsertWithoutCampaignInvitesInput = {
|
|
@@ -128818,6 +129391,7 @@ export namespace Prisma {
|
|
|
128818
129391
|
brand: BrandCreateNestedOneWithoutCampaignsInput
|
|
128819
129392
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
128820
129393
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
129394
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
128821
129395
|
}
|
|
128822
129396
|
|
|
128823
129397
|
export type CampaignUncheckedCreateWithoutCreatorListsInput = {
|
|
@@ -128888,6 +129462,7 @@ export namespace Prisma {
|
|
|
128888
129462
|
campaignToBrandAffiliateLinks?: CampaignToBrandAffiliateLinkUncheckedCreateNestedManyWithoutCampaignInput
|
|
128889
129463
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
128890
129464
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
129465
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
128891
129466
|
}
|
|
128892
129467
|
|
|
128893
129468
|
export type CampaignCreateOrConnectWithoutCreatorListsInput = {
|
|
@@ -129129,6 +129704,7 @@ export namespace Prisma {
|
|
|
129129
129704
|
brand?: BrandUpdateOneRequiredWithoutCampaignsNestedInput
|
|
129130
129705
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
129131
129706
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
129707
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
129132
129708
|
}
|
|
129133
129709
|
|
|
129134
129710
|
export type CampaignUncheckedUpdateWithoutCreatorListsInput = {
|
|
@@ -129199,6 +129775,7 @@ export namespace Prisma {
|
|
|
129199
129775
|
campaignToBrandAffiliateLinks?: CampaignToBrandAffiliateLinkUncheckedUpdateManyWithoutCampaignNestedInput
|
|
129200
129776
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
129201
129777
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
129778
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
129202
129779
|
}
|
|
129203
129780
|
|
|
129204
129781
|
export type SequenceUpsertWithWhereUniqueWithoutCreatorListInput = {
|
|
@@ -130457,6 +131034,7 @@ export namespace Prisma {
|
|
|
130457
131034
|
hasCollaborators?: boolean | null
|
|
130458
131035
|
isOwnedByUser?: boolean | null
|
|
130459
131036
|
views?: number | null
|
|
131037
|
+
replays?: number | null
|
|
130460
131038
|
impressions?: number | null
|
|
130461
131039
|
impressionsOrganic?: number | null
|
|
130462
131040
|
impressionsPaid?: number | null
|
|
@@ -130492,6 +131070,7 @@ export namespace Prisma {
|
|
|
130492
131070
|
hasCollaborators?: boolean | null
|
|
130493
131071
|
isOwnedByUser?: boolean | null
|
|
130494
131072
|
views?: number | null
|
|
131073
|
+
replays?: number | null
|
|
130495
131074
|
impressions?: number | null
|
|
130496
131075
|
impressionsOrganic?: number | null
|
|
130497
131076
|
impressionsPaid?: number | null
|
|
@@ -130576,6 +131155,7 @@ export namespace Prisma {
|
|
|
130576
131155
|
hasCollaborators?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
130577
131156
|
isOwnedByUser?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
130578
131157
|
views?: NullableIntFieldUpdateOperationsInput | number | null
|
|
131158
|
+
replays?: NullableIntFieldUpdateOperationsInput | number | null
|
|
130579
131159
|
impressions?: NullableIntFieldUpdateOperationsInput | number | null
|
|
130580
131160
|
impressionsOrganic?: NullableIntFieldUpdateOperationsInput | number | null
|
|
130581
131161
|
impressionsPaid?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -130611,6 +131191,7 @@ export namespace Prisma {
|
|
|
130611
131191
|
hasCollaborators?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
130612
131192
|
isOwnedByUser?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
130613
131193
|
views?: NullableIntFieldUpdateOperationsInput | number | null
|
|
131194
|
+
replays?: NullableIntFieldUpdateOperationsInput | number | null
|
|
130614
131195
|
impressions?: NullableIntFieldUpdateOperationsInput | number | null
|
|
130615
131196
|
impressionsOrganic?: NullableIntFieldUpdateOperationsInput | number | null
|
|
130616
131197
|
impressionsPaid?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -130694,6 +131275,7 @@ export namespace Prisma {
|
|
|
130694
131275
|
brand: BrandCreateNestedOneWithoutCampaignsInput
|
|
130695
131276
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
130696
131277
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
131278
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
130697
131279
|
}
|
|
130698
131280
|
|
|
130699
131281
|
export type CampaignUncheckedCreateWithoutOptInViewsInput = {
|
|
@@ -130764,6 +131346,7 @@ export namespace Prisma {
|
|
|
130764
131346
|
campaignToBrandAffiliateLinks?: CampaignToBrandAffiliateLinkUncheckedCreateNestedManyWithoutCampaignInput
|
|
130765
131347
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
130766
131348
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
131349
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
130767
131350
|
}
|
|
130768
131351
|
|
|
130769
131352
|
export type CampaignCreateOrConnectWithoutOptInViewsInput = {
|
|
@@ -130849,6 +131432,7 @@ export namespace Prisma {
|
|
|
130849
131432
|
brand?: BrandUpdateOneRequiredWithoutCampaignsNestedInput
|
|
130850
131433
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
130851
131434
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
131435
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
130852
131436
|
}
|
|
130853
131437
|
|
|
130854
131438
|
export type CampaignUncheckedUpdateWithoutOptInViewsInput = {
|
|
@@ -130919,6 +131503,7 @@ export namespace Prisma {
|
|
|
130919
131503
|
campaignToBrandAffiliateLinks?: CampaignToBrandAffiliateLinkUncheckedUpdateManyWithoutCampaignNestedInput
|
|
130920
131504
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
130921
131505
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
131506
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
130922
131507
|
}
|
|
130923
131508
|
|
|
130924
131509
|
export type UserCreateWithoutRakutenActivityInput = {
|
|
@@ -131684,6 +132269,7 @@ export namespace Prisma {
|
|
|
131684
132269
|
brand: BrandCreateNestedOneWithoutCampaignsInput
|
|
131685
132270
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
131686
132271
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
132272
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
131687
132273
|
}
|
|
131688
132274
|
|
|
131689
132275
|
export type CampaignUncheckedCreateWithoutSequencesInput = {
|
|
@@ -131754,6 +132340,7 @@ export namespace Prisma {
|
|
|
131754
132340
|
campaignToBrandAffiliateLinks?: CampaignToBrandAffiliateLinkUncheckedCreateNestedManyWithoutCampaignInput
|
|
131755
132341
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
131756
132342
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
132343
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
131757
132344
|
}
|
|
131758
132345
|
|
|
131759
132346
|
export type CampaignCreateOrConnectWithoutSequencesInput = {
|
|
@@ -132046,6 +132633,7 @@ export namespace Prisma {
|
|
|
132046
132633
|
brand?: BrandUpdateOneRequiredWithoutCampaignsNestedInput
|
|
132047
132634
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
132048
132635
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
132636
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
132049
132637
|
}
|
|
132050
132638
|
|
|
132051
132639
|
export type CampaignUncheckedUpdateWithoutSequencesInput = {
|
|
@@ -132116,6 +132704,7 @@ export namespace Prisma {
|
|
|
132116
132704
|
campaignToBrandAffiliateLinks?: CampaignToBrandAffiliateLinkUncheckedUpdateManyWithoutCampaignNestedInput
|
|
132117
132705
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
132118
132706
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
132707
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
132119
132708
|
}
|
|
132120
132709
|
|
|
132121
132710
|
export type CreatorListUpsertWithoutSequencesInput = {
|
|
@@ -133435,6 +134024,7 @@ export namespace Prisma {
|
|
|
133435
134024
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
133436
134025
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
133437
134026
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
134027
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
133438
134028
|
}
|
|
133439
134029
|
|
|
133440
134030
|
export type CampaignUncheckedCreateWithoutCampaignToShopifyProductsInput = {
|
|
@@ -133505,6 +134095,7 @@ export namespace Prisma {
|
|
|
133505
134095
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
133506
134096
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
133507
134097
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
134098
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
133508
134099
|
}
|
|
133509
134100
|
|
|
133510
134101
|
export type CampaignCreateOrConnectWithoutCampaignToShopifyProductsInput = {
|
|
@@ -133616,6 +134207,7 @@ export namespace Prisma {
|
|
|
133616
134207
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
133617
134208
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
133618
134209
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
134210
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
133619
134211
|
}
|
|
133620
134212
|
|
|
133621
134213
|
export type CampaignUncheckedUpdateWithoutCampaignToShopifyProductsInput = {
|
|
@@ -133686,6 +134278,7 @@ export namespace Prisma {
|
|
|
133686
134278
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
133687
134279
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
133688
134280
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
134281
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
133689
134282
|
}
|
|
133690
134283
|
|
|
133691
134284
|
export type ShopifyProductUpsertWithoutCampaignToShopifyProductsInput = {
|
|
@@ -133818,6 +134411,7 @@ export namespace Prisma {
|
|
|
133818
134411
|
hasCollaborators?: boolean | null
|
|
133819
134412
|
isOwnedByUser?: boolean | null
|
|
133820
134413
|
views?: number | null
|
|
134414
|
+
replays?: number | null
|
|
133821
134415
|
impressions?: number | null
|
|
133822
134416
|
impressionsOrganic?: number | null
|
|
133823
134417
|
impressionsPaid?: number | null
|
|
@@ -134253,6 +134847,7 @@ export namespace Prisma {
|
|
|
134253
134847
|
hasCollaborators?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
134254
134848
|
isOwnedByUser?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
134255
134849
|
views?: NullableIntFieldUpdateOperationsInput | number | null
|
|
134850
|
+
replays?: NullableIntFieldUpdateOperationsInput | number | null
|
|
134256
134851
|
impressions?: NullableIntFieldUpdateOperationsInput | number | null
|
|
134257
134852
|
impressionsOrganic?: NullableIntFieldUpdateOperationsInput | number | null
|
|
134258
134853
|
impressionsPaid?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -134288,6 +134883,7 @@ export namespace Prisma {
|
|
|
134288
134883
|
hasCollaborators?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
134289
134884
|
isOwnedByUser?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
134290
134885
|
views?: NullableIntFieldUpdateOperationsInput | number | null
|
|
134886
|
+
replays?: NullableIntFieldUpdateOperationsInput | number | null
|
|
134291
134887
|
impressions?: NullableIntFieldUpdateOperationsInput | number | null
|
|
134292
134888
|
impressionsOrganic?: NullableIntFieldUpdateOperationsInput | number | null
|
|
134293
134889
|
impressionsPaid?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -134323,6 +134919,7 @@ export namespace Prisma {
|
|
|
134323
134919
|
hasCollaborators?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
134324
134920
|
isOwnedByUser?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
134325
134921
|
views?: NullableIntFieldUpdateOperationsInput | number | null
|
|
134922
|
+
replays?: NullableIntFieldUpdateOperationsInput | number | null
|
|
134326
134923
|
impressions?: NullableIntFieldUpdateOperationsInput | number | null
|
|
134327
134924
|
impressionsOrganic?: NullableIntFieldUpdateOperationsInput | number | null
|
|
134328
134925
|
impressionsPaid?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -134860,6 +135457,7 @@ export namespace Prisma {
|
|
|
134860
135457
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
134861
135458
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
134862
135459
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
135460
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
134863
135461
|
}
|
|
134864
135462
|
|
|
134865
135463
|
export type CampaignUncheckedUpdateWithoutBrandInput = {
|
|
@@ -134930,6 +135528,7 @@ export namespace Prisma {
|
|
|
134930
135528
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
134931
135529
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
134932
135530
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
135531
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
134933
135532
|
}
|
|
134934
135533
|
|
|
134935
135534
|
export type CampaignUncheckedUpdateManyWithoutBrandInput = {
|
|
@@ -135722,6 +136321,7 @@ export namespace Prisma {
|
|
|
135722
136321
|
hasCollaborators?: boolean | null
|
|
135723
136322
|
isOwnedByUser?: boolean | null
|
|
135724
136323
|
views?: number | null
|
|
136324
|
+
replays?: number | null
|
|
135725
136325
|
impressions?: number | null
|
|
135726
136326
|
impressionsOrganic?: number | null
|
|
135727
136327
|
impressionsPaid?: number | null
|
|
@@ -135782,6 +136382,17 @@ export namespace Prisma {
|
|
|
135782
136382
|
enabled?: boolean
|
|
135783
136383
|
}
|
|
135784
136384
|
|
|
136385
|
+
export type ExternalAffiliateClickCreateManyCampaignInput = {
|
|
136386
|
+
id?: number
|
|
136387
|
+
program: string
|
|
136388
|
+
created?: Date | string
|
|
136389
|
+
ipv4?: string | null
|
|
136390
|
+
ipv6?: string | null
|
|
136391
|
+
linkUrl: string
|
|
136392
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
136393
|
+
optInId: number
|
|
136394
|
+
}
|
|
136395
|
+
|
|
135785
136396
|
export type CampaignStepUpdateWithoutCampaignInput = {
|
|
135786
136397
|
placement?: IntFieldUpdateOperationsInput | number
|
|
135787
136398
|
stepSettings?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -136010,6 +136621,7 @@ export namespace Prisma {
|
|
|
136010
136621
|
hasCollaborators?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
136011
136622
|
isOwnedByUser?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
136012
136623
|
views?: NullableIntFieldUpdateOperationsInput | number | null
|
|
136624
|
+
replays?: NullableIntFieldUpdateOperationsInput | number | null
|
|
136013
136625
|
impressions?: NullableIntFieldUpdateOperationsInput | number | null
|
|
136014
136626
|
impressionsOrganic?: NullableIntFieldUpdateOperationsInput | number | null
|
|
136015
136627
|
impressionsPaid?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -136045,6 +136657,7 @@ export namespace Prisma {
|
|
|
136045
136657
|
hasCollaborators?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
136046
136658
|
isOwnedByUser?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
136047
136659
|
views?: NullableIntFieldUpdateOperationsInput | number | null
|
|
136660
|
+
replays?: NullableIntFieldUpdateOperationsInput | number | null
|
|
136048
136661
|
impressions?: NullableIntFieldUpdateOperationsInput | number | null
|
|
136049
136662
|
impressionsOrganic?: NullableIntFieldUpdateOperationsInput | number | null
|
|
136050
136663
|
impressionsPaid?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -136080,6 +136693,7 @@ export namespace Prisma {
|
|
|
136080
136693
|
hasCollaborators?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
136081
136694
|
isOwnedByUser?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
136082
136695
|
views?: NullableIntFieldUpdateOperationsInput | number | null
|
|
136696
|
+
replays?: NullableIntFieldUpdateOperationsInput | number | null
|
|
136083
136697
|
impressions?: NullableIntFieldUpdateOperationsInput | number | null
|
|
136084
136698
|
impressionsOrganic?: NullableIntFieldUpdateOperationsInput | number | null
|
|
136085
136699
|
impressionsPaid?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -136238,6 +136852,38 @@ export namespace Prisma {
|
|
|
136238
136852
|
enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
136239
136853
|
}
|
|
136240
136854
|
|
|
136855
|
+
export type ExternalAffiliateClickUpdateWithoutCampaignInput = {
|
|
136856
|
+
program?: StringFieldUpdateOperationsInput | string
|
|
136857
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
136858
|
+
ipv4?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136859
|
+
ipv6?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136860
|
+
linkUrl?: StringFieldUpdateOperationsInput | string
|
|
136861
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
136862
|
+
optin?: OptInUpdateOneRequiredWithoutExternalAffiliateClickNestedInput
|
|
136863
|
+
}
|
|
136864
|
+
|
|
136865
|
+
export type ExternalAffiliateClickUncheckedUpdateWithoutCampaignInput = {
|
|
136866
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
136867
|
+
program?: StringFieldUpdateOperationsInput | string
|
|
136868
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
136869
|
+
ipv4?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136870
|
+
ipv6?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136871
|
+
linkUrl?: StringFieldUpdateOperationsInput | string
|
|
136872
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
136873
|
+
optInId?: IntFieldUpdateOperationsInput | number
|
|
136874
|
+
}
|
|
136875
|
+
|
|
136876
|
+
export type ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignInput = {
|
|
136877
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
136878
|
+
program?: StringFieldUpdateOperationsInput | string
|
|
136879
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
136880
|
+
ipv4?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136881
|
+
ipv6?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136882
|
+
linkUrl?: StringFieldUpdateOperationsInput | string
|
|
136883
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
136884
|
+
optInId?: IntFieldUpdateOperationsInput | number
|
|
136885
|
+
}
|
|
136886
|
+
|
|
136241
136887
|
export type ImageCreateManyCampaignImageInput = {
|
|
136242
136888
|
id?: number
|
|
136243
136889
|
url: string
|
|
@@ -136682,6 +137328,7 @@ export namespace Prisma {
|
|
|
136682
137328
|
ipv6?: string | null
|
|
136683
137329
|
linkUrl: string
|
|
136684
137330
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
137331
|
+
campaignId: number
|
|
136685
137332
|
}
|
|
136686
137333
|
|
|
136687
137334
|
export type OptInVariableUpdateWithoutOptInInput = {
|
|
@@ -136832,6 +137479,7 @@ export namespace Prisma {
|
|
|
136832
137479
|
ipv6?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136833
137480
|
linkUrl?: StringFieldUpdateOperationsInput | string
|
|
136834
137481
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
137482
|
+
campaign?: CampaignUpdateOneRequiredWithoutExternalAffiliateClickNestedInput
|
|
136835
137483
|
}
|
|
136836
137484
|
|
|
136837
137485
|
export type ExternalAffiliateClickUncheckedUpdateWithoutOptinInput = {
|
|
@@ -136842,6 +137490,7 @@ export namespace Prisma {
|
|
|
136842
137490
|
ipv6?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136843
137491
|
linkUrl?: StringFieldUpdateOperationsInput | string
|
|
136844
137492
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
137493
|
+
campaignId?: IntFieldUpdateOperationsInput | number
|
|
136845
137494
|
}
|
|
136846
137495
|
|
|
136847
137496
|
export type ExternalAffiliateClickUncheckedUpdateManyWithoutOptinInput = {
|
|
@@ -136852,6 +137501,7 @@ export namespace Prisma {
|
|
|
136852
137501
|
ipv6?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136853
137502
|
linkUrl?: StringFieldUpdateOperationsInput | string
|
|
136854
137503
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
137504
|
+
campaignId?: IntFieldUpdateOperationsInput | number
|
|
136855
137505
|
}
|
|
136856
137506
|
|
|
136857
137507
|
export type ListToSocialPostCreateManySocialPostInput = {
|