@creator.co/creatorco-prisma-client 1.0.42-alpha-60c9b5d → 1.0.42
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 +6 -5
- package/index-browser.js +2 -1
- package/index.d.ts +624 -25
- package/index.js +6 -5
- package/package.json +1 -1
- package/schema.prisma +11 -7
- package/wasm.js +2 -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
|
*/
|
|
@@ -57870,11 +57904,13 @@ export namespace Prisma {
|
|
|
57870
57904
|
export type ExternalAffiliateClickAvgAggregateOutputType = {
|
|
57871
57905
|
id: number | null
|
|
57872
57906
|
optInId: number | null
|
|
57907
|
+
campaignId: number | null
|
|
57873
57908
|
}
|
|
57874
57909
|
|
|
57875
57910
|
export type ExternalAffiliateClickSumAggregateOutputType = {
|
|
57876
57911
|
id: number | null
|
|
57877
57912
|
optInId: number | null
|
|
57913
|
+
campaignId: number | null
|
|
57878
57914
|
}
|
|
57879
57915
|
|
|
57880
57916
|
export type ExternalAffiliateClickMinAggregateOutputType = {
|
|
@@ -57885,6 +57921,7 @@ export namespace Prisma {
|
|
|
57885
57921
|
ipv6: string | null
|
|
57886
57922
|
linkUrl: string | null
|
|
57887
57923
|
optInId: number | null
|
|
57924
|
+
campaignId: number | null
|
|
57888
57925
|
}
|
|
57889
57926
|
|
|
57890
57927
|
export type ExternalAffiliateClickMaxAggregateOutputType = {
|
|
@@ -57895,6 +57932,7 @@ export namespace Prisma {
|
|
|
57895
57932
|
ipv6: string | null
|
|
57896
57933
|
linkUrl: string | null
|
|
57897
57934
|
optInId: number | null
|
|
57935
|
+
campaignId: number | null
|
|
57898
57936
|
}
|
|
57899
57937
|
|
|
57900
57938
|
export type ExternalAffiliateClickCountAggregateOutputType = {
|
|
@@ -57906,6 +57944,7 @@ export namespace Prisma {
|
|
|
57906
57944
|
linkUrl: number
|
|
57907
57945
|
metaData: number
|
|
57908
57946
|
optInId: number
|
|
57947
|
+
campaignId: number
|
|
57909
57948
|
_all: number
|
|
57910
57949
|
}
|
|
57911
57950
|
|
|
@@ -57913,11 +57952,13 @@ export namespace Prisma {
|
|
|
57913
57952
|
export type ExternalAffiliateClickAvgAggregateInputType = {
|
|
57914
57953
|
id?: true
|
|
57915
57954
|
optInId?: true
|
|
57955
|
+
campaignId?: true
|
|
57916
57956
|
}
|
|
57917
57957
|
|
|
57918
57958
|
export type ExternalAffiliateClickSumAggregateInputType = {
|
|
57919
57959
|
id?: true
|
|
57920
57960
|
optInId?: true
|
|
57961
|
+
campaignId?: true
|
|
57921
57962
|
}
|
|
57922
57963
|
|
|
57923
57964
|
export type ExternalAffiliateClickMinAggregateInputType = {
|
|
@@ -57928,6 +57969,7 @@ export namespace Prisma {
|
|
|
57928
57969
|
ipv6?: true
|
|
57929
57970
|
linkUrl?: true
|
|
57930
57971
|
optInId?: true
|
|
57972
|
+
campaignId?: true
|
|
57931
57973
|
}
|
|
57932
57974
|
|
|
57933
57975
|
export type ExternalAffiliateClickMaxAggregateInputType = {
|
|
@@ -57938,6 +57980,7 @@ export namespace Prisma {
|
|
|
57938
57980
|
ipv6?: true
|
|
57939
57981
|
linkUrl?: true
|
|
57940
57982
|
optInId?: true
|
|
57983
|
+
campaignId?: true
|
|
57941
57984
|
}
|
|
57942
57985
|
|
|
57943
57986
|
export type ExternalAffiliateClickCountAggregateInputType = {
|
|
@@ -57949,6 +57992,7 @@ export namespace Prisma {
|
|
|
57949
57992
|
linkUrl?: true
|
|
57950
57993
|
metaData?: true
|
|
57951
57994
|
optInId?: true
|
|
57995
|
+
campaignId?: true
|
|
57952
57996
|
_all?: true
|
|
57953
57997
|
}
|
|
57954
57998
|
|
|
@@ -58047,6 +58091,7 @@ export namespace Prisma {
|
|
|
58047
58091
|
linkUrl: string
|
|
58048
58092
|
metaData: JsonValue
|
|
58049
58093
|
optInId: number
|
|
58094
|
+
campaignId: number
|
|
58050
58095
|
_count: ExternalAffiliateClickCountAggregateOutputType | null
|
|
58051
58096
|
_avg: ExternalAffiliateClickAvgAggregateOutputType | null
|
|
58052
58097
|
_sum: ExternalAffiliateClickSumAggregateOutputType | null
|
|
@@ -58077,7 +58122,9 @@ export namespace Prisma {
|
|
|
58077
58122
|
linkUrl?: boolean
|
|
58078
58123
|
metaData?: boolean
|
|
58079
58124
|
optInId?: boolean
|
|
58125
|
+
campaignId?: boolean
|
|
58080
58126
|
optin?: boolean | OptInDefaultArgs<ExtArgs>
|
|
58127
|
+
campaign?: boolean | CampaignDefaultArgs<ExtArgs>
|
|
58081
58128
|
}, ExtArgs["result"]["externalAffiliateClick"]>
|
|
58082
58129
|
|
|
58083
58130
|
export type ExternalAffiliateClickSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
@@ -58089,7 +58136,9 @@ export namespace Prisma {
|
|
|
58089
58136
|
linkUrl?: boolean
|
|
58090
58137
|
metaData?: boolean
|
|
58091
58138
|
optInId?: boolean
|
|
58139
|
+
campaignId?: boolean
|
|
58092
58140
|
optin?: boolean | OptInDefaultArgs<ExtArgs>
|
|
58141
|
+
campaign?: boolean | CampaignDefaultArgs<ExtArgs>
|
|
58093
58142
|
}, ExtArgs["result"]["externalAffiliateClick"]>
|
|
58094
58143
|
|
|
58095
58144
|
export type ExternalAffiliateClickSelectScalar = {
|
|
@@ -58101,19 +58150,23 @@ export namespace Prisma {
|
|
|
58101
58150
|
linkUrl?: boolean
|
|
58102
58151
|
metaData?: boolean
|
|
58103
58152
|
optInId?: boolean
|
|
58153
|
+
campaignId?: boolean
|
|
58104
58154
|
}
|
|
58105
58155
|
|
|
58106
58156
|
export type ExternalAffiliateClickInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58107
58157
|
optin?: boolean | OptInDefaultArgs<ExtArgs>
|
|
58158
|
+
campaign?: boolean | CampaignDefaultArgs<ExtArgs>
|
|
58108
58159
|
}
|
|
58109
58160
|
export type ExternalAffiliateClickIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58110
58161
|
optin?: boolean | OptInDefaultArgs<ExtArgs>
|
|
58162
|
+
campaign?: boolean | CampaignDefaultArgs<ExtArgs>
|
|
58111
58163
|
}
|
|
58112
58164
|
|
|
58113
58165
|
export type $ExternalAffiliateClickPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58114
58166
|
name: "ExternalAffiliateClick"
|
|
58115
58167
|
objects: {
|
|
58116
58168
|
optin: Prisma.$OptInPayload<ExtArgs>
|
|
58169
|
+
campaign: Prisma.$CampaignPayload<ExtArgs>
|
|
58117
58170
|
}
|
|
58118
58171
|
scalars: $Extensions.GetPayloadResult<{
|
|
58119
58172
|
id: number
|
|
@@ -58124,6 +58177,7 @@ export namespace Prisma {
|
|
|
58124
58177
|
linkUrl: string
|
|
58125
58178
|
metaData: Prisma.JsonValue
|
|
58126
58179
|
optInId: number
|
|
58180
|
+
campaignId: number
|
|
58127
58181
|
}, ExtArgs["result"]["externalAffiliateClick"]>
|
|
58128
58182
|
composites: {}
|
|
58129
58183
|
}
|
|
@@ -58516,6 +58570,8 @@ export namespace Prisma {
|
|
|
58516
58570
|
|
|
58517
58571
|
optin<T extends OptInDefaultArgs<ExtArgs> = {}>(args?: Subset<T, OptInDefaultArgs<ExtArgs>>): Prisma__OptInClient<$Result.GetResult<Prisma.$OptInPayload<ExtArgs>, T, 'findUniqueOrThrow'> | Null, Null, ExtArgs>;
|
|
58518
58572
|
|
|
58573
|
+
campaign<T extends CampaignDefaultArgs<ExtArgs> = {}>(args?: Subset<T, CampaignDefaultArgs<ExtArgs>>): Prisma__CampaignClient<$Result.GetResult<Prisma.$CampaignPayload<ExtArgs>, T, 'findUniqueOrThrow'> | Null, Null, ExtArgs>;
|
|
58574
|
+
|
|
58519
58575
|
/**
|
|
58520
58576
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
58521
58577
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -58552,6 +58608,7 @@ export namespace Prisma {
|
|
|
58552
58608
|
readonly linkUrl: FieldRef<"ExternalAffiliateClick", 'String'>
|
|
58553
58609
|
readonly metaData: FieldRef<"ExternalAffiliateClick", 'Json'>
|
|
58554
58610
|
readonly optInId: FieldRef<"ExternalAffiliateClick", 'Int'>
|
|
58611
|
+
readonly campaignId: FieldRef<"ExternalAffiliateClick", 'Int'>
|
|
58555
58612
|
}
|
|
58556
58613
|
|
|
58557
58614
|
|
|
@@ -87089,7 +87146,8 @@ export namespace Prisma {
|
|
|
87089
87146
|
ipv6: 'ipv6',
|
|
87090
87147
|
linkUrl: 'linkUrl',
|
|
87091
87148
|
metaData: 'metaData',
|
|
87092
|
-
optInId: 'optInId'
|
|
87149
|
+
optInId: 'optInId',
|
|
87150
|
+
campaignId: 'campaignId'
|
|
87093
87151
|
};
|
|
87094
87152
|
|
|
87095
87153
|
export type ExternalAffiliateClickScalarFieldEnum = (typeof ExternalAffiliateClickScalarFieldEnum)[keyof typeof ExternalAffiliateClickScalarFieldEnum]
|
|
@@ -89973,6 +90031,7 @@ export namespace Prisma {
|
|
|
89973
90031
|
creatorLists?: CreatorListListRelationFilter
|
|
89974
90032
|
optInViews?: OptInViewListRelationFilter
|
|
89975
90033
|
sequences?: SequenceListRelationFilter
|
|
90034
|
+
ExternalAffiliateClick?: ExternalAffiliateClickListRelationFilter
|
|
89976
90035
|
}
|
|
89977
90036
|
|
|
89978
90037
|
export type CampaignOrderByWithRelationAndSearchRelevanceInput = {
|
|
@@ -90045,6 +90104,7 @@ export namespace Prisma {
|
|
|
90045
90104
|
creatorLists?: CreatorListOrderByRelationAggregateInput
|
|
90046
90105
|
optInViews?: OptInViewOrderByRelationAggregateInput
|
|
90047
90106
|
sequences?: SequenceOrderByRelationAggregateInput
|
|
90107
|
+
ExternalAffiliateClick?: ExternalAffiliateClickOrderByRelationAggregateInput
|
|
90048
90108
|
_relevance?: CampaignOrderByRelevanceInput
|
|
90049
90109
|
}
|
|
90050
90110
|
|
|
@@ -90121,6 +90181,7 @@ export namespace Prisma {
|
|
|
90121
90181
|
creatorLists?: CreatorListListRelationFilter
|
|
90122
90182
|
optInViews?: OptInViewListRelationFilter
|
|
90123
90183
|
sequences?: SequenceListRelationFilter
|
|
90184
|
+
ExternalAffiliateClick?: ExternalAffiliateClickListRelationFilter
|
|
90124
90185
|
}, "id" | "slug">
|
|
90125
90186
|
|
|
90126
90187
|
export type CampaignOrderByWithAggregationInput = {
|
|
@@ -92106,7 +92167,9 @@ export namespace Prisma {
|
|
|
92106
92167
|
linkUrl?: StringFilter<"ExternalAffiliateClick"> | string
|
|
92107
92168
|
metaData?: JsonFilter<"ExternalAffiliateClick">
|
|
92108
92169
|
optInId?: IntFilter<"ExternalAffiliateClick"> | number
|
|
92170
|
+
campaignId?: IntFilter<"ExternalAffiliateClick"> | number
|
|
92109
92171
|
optin?: XOR<OptInRelationFilter, OptInWhereInput>
|
|
92172
|
+
campaign?: XOR<CampaignRelationFilter, CampaignWhereInput>
|
|
92110
92173
|
}
|
|
92111
92174
|
|
|
92112
92175
|
export type ExternalAffiliateClickOrderByWithRelationAndSearchRelevanceInput = {
|
|
@@ -92118,7 +92181,9 @@ export namespace Prisma {
|
|
|
92118
92181
|
linkUrl?: SortOrder
|
|
92119
92182
|
metaData?: SortOrder
|
|
92120
92183
|
optInId?: SortOrder
|
|
92184
|
+
campaignId?: SortOrder
|
|
92121
92185
|
optin?: OptInOrderByWithRelationAndSearchRelevanceInput
|
|
92186
|
+
campaign?: CampaignOrderByWithRelationAndSearchRelevanceInput
|
|
92122
92187
|
_relevance?: ExternalAffiliateClickOrderByRelevanceInput
|
|
92123
92188
|
}
|
|
92124
92189
|
|
|
@@ -92134,7 +92199,9 @@ export namespace Prisma {
|
|
|
92134
92199
|
linkUrl?: StringFilter<"ExternalAffiliateClick"> | string
|
|
92135
92200
|
metaData?: JsonFilter<"ExternalAffiliateClick">
|
|
92136
92201
|
optInId?: IntFilter<"ExternalAffiliateClick"> | number
|
|
92202
|
+
campaignId?: IntFilter<"ExternalAffiliateClick"> | number
|
|
92137
92203
|
optin?: XOR<OptInRelationFilter, OptInWhereInput>
|
|
92204
|
+
campaign?: XOR<CampaignRelationFilter, CampaignWhereInput>
|
|
92138
92205
|
}, "id">
|
|
92139
92206
|
|
|
92140
92207
|
export type ExternalAffiliateClickOrderByWithAggregationInput = {
|
|
@@ -92146,6 +92213,7 @@ export namespace Prisma {
|
|
|
92146
92213
|
linkUrl?: SortOrder
|
|
92147
92214
|
metaData?: SortOrder
|
|
92148
92215
|
optInId?: SortOrder
|
|
92216
|
+
campaignId?: SortOrder
|
|
92149
92217
|
_count?: ExternalAffiliateClickCountOrderByAggregateInput
|
|
92150
92218
|
_avg?: ExternalAffiliateClickAvgOrderByAggregateInput
|
|
92151
92219
|
_max?: ExternalAffiliateClickMaxOrderByAggregateInput
|
|
@@ -92165,6 +92233,7 @@ export namespace Prisma {
|
|
|
92165
92233
|
linkUrl?: StringWithAggregatesFilter<"ExternalAffiliateClick"> | string
|
|
92166
92234
|
metaData?: JsonWithAggregatesFilter<"ExternalAffiliateClick">
|
|
92167
92235
|
optInId?: IntWithAggregatesFilter<"ExternalAffiliateClick"> | number
|
|
92236
|
+
campaignId?: IntWithAggregatesFilter<"ExternalAffiliateClick"> | number
|
|
92168
92237
|
}
|
|
92169
92238
|
|
|
92170
92239
|
export type BrandAffiliateLinkWhereInput = {
|
|
@@ -96054,6 +96123,7 @@ export namespace Prisma {
|
|
|
96054
96123
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
96055
96124
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
96056
96125
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
96126
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
96057
96127
|
}
|
|
96058
96128
|
|
|
96059
96129
|
export type CampaignUncheckedCreateInput = {
|
|
@@ -96125,6 +96195,7 @@ export namespace Prisma {
|
|
|
96125
96195
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
96126
96196
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
96127
96197
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
96198
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
96128
96199
|
}
|
|
96129
96200
|
|
|
96130
96201
|
export type CampaignUpdateInput = {
|
|
@@ -96195,6 +96266,7 @@ export namespace Prisma {
|
|
|
96195
96266
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
96196
96267
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
96197
96268
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
96269
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
96198
96270
|
}
|
|
96199
96271
|
|
|
96200
96272
|
export type CampaignUncheckedUpdateInput = {
|
|
@@ -96266,6 +96338,7 @@ export namespace Prisma {
|
|
|
96266
96338
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
96267
96339
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
96268
96340
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
96341
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
96269
96342
|
}
|
|
96270
96343
|
|
|
96271
96344
|
export type CampaignCreateManyInput = {
|
|
@@ -98265,6 +98338,7 @@ export namespace Prisma {
|
|
|
98265
98338
|
linkUrl: string
|
|
98266
98339
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
98267
98340
|
optin: OptInCreateNestedOneWithoutExternalAffiliateClickInput
|
|
98341
|
+
campaign: CampaignCreateNestedOneWithoutExternalAffiliateClickInput
|
|
98268
98342
|
}
|
|
98269
98343
|
|
|
98270
98344
|
export type ExternalAffiliateClickUncheckedCreateInput = {
|
|
@@ -98276,6 +98350,7 @@ export namespace Prisma {
|
|
|
98276
98350
|
linkUrl: string
|
|
98277
98351
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
98278
98352
|
optInId: number
|
|
98353
|
+
campaignId: number
|
|
98279
98354
|
}
|
|
98280
98355
|
|
|
98281
98356
|
export type ExternalAffiliateClickUpdateInput = {
|
|
@@ -98286,6 +98361,7 @@ export namespace Prisma {
|
|
|
98286
98361
|
linkUrl?: StringFieldUpdateOperationsInput | string
|
|
98287
98362
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
98288
98363
|
optin?: OptInUpdateOneRequiredWithoutExternalAffiliateClickNestedInput
|
|
98364
|
+
campaign?: CampaignUpdateOneRequiredWithoutExternalAffiliateClickNestedInput
|
|
98289
98365
|
}
|
|
98290
98366
|
|
|
98291
98367
|
export type ExternalAffiliateClickUncheckedUpdateInput = {
|
|
@@ -98297,6 +98373,7 @@ export namespace Prisma {
|
|
|
98297
98373
|
linkUrl?: StringFieldUpdateOperationsInput | string
|
|
98298
98374
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
98299
98375
|
optInId?: IntFieldUpdateOperationsInput | number
|
|
98376
|
+
campaignId?: IntFieldUpdateOperationsInput | number
|
|
98300
98377
|
}
|
|
98301
98378
|
|
|
98302
98379
|
export type ExternalAffiliateClickCreateManyInput = {
|
|
@@ -98308,6 +98385,7 @@ export namespace Prisma {
|
|
|
98308
98385
|
linkUrl: string
|
|
98309
98386
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
98310
98387
|
optInId: number
|
|
98388
|
+
campaignId: number
|
|
98311
98389
|
}
|
|
98312
98390
|
|
|
98313
98391
|
export type ExternalAffiliateClickUpdateManyMutationInput = {
|
|
@@ -98328,6 +98406,7 @@ export namespace Prisma {
|
|
|
98328
98406
|
linkUrl?: StringFieldUpdateOperationsInput | string
|
|
98329
98407
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
98330
98408
|
optInId?: IntFieldUpdateOperationsInput | number
|
|
98409
|
+
campaignId?: IntFieldUpdateOperationsInput | number
|
|
98331
98410
|
}
|
|
98332
98411
|
|
|
98333
98412
|
export type BrandAffiliateLinkCreateInput = {
|
|
@@ -102034,6 +102113,12 @@ export namespace Prisma {
|
|
|
102034
102113
|
none?: OptInViewWhereInput
|
|
102035
102114
|
}
|
|
102036
102115
|
|
|
102116
|
+
export type ExternalAffiliateClickListRelationFilter = {
|
|
102117
|
+
every?: ExternalAffiliateClickWhereInput
|
|
102118
|
+
some?: ExternalAffiliateClickWhereInput
|
|
102119
|
+
none?: ExternalAffiliateClickWhereInput
|
|
102120
|
+
}
|
|
102121
|
+
|
|
102037
102122
|
export type CampaignStepOrderByRelationAggregateInput = {
|
|
102038
102123
|
_count?: SortOrder
|
|
102039
102124
|
}
|
|
@@ -102070,6 +102155,10 @@ export namespace Prisma {
|
|
|
102070
102155
|
_count?: SortOrder
|
|
102071
102156
|
}
|
|
102072
102157
|
|
|
102158
|
+
export type ExternalAffiliateClickOrderByRelationAggregateInput = {
|
|
102159
|
+
_count?: SortOrder
|
|
102160
|
+
}
|
|
102161
|
+
|
|
102073
102162
|
export type CampaignOrderByRelevanceInput = {
|
|
102074
102163
|
fields: CampaignOrderByRelevanceFieldEnum | CampaignOrderByRelevanceFieldEnum[]
|
|
102075
102164
|
sort: SortOrder
|
|
@@ -102953,12 +103042,6 @@ export namespace Prisma {
|
|
|
102953
103042
|
none?: AffiliateClickWhereInput
|
|
102954
103043
|
}
|
|
102955
103044
|
|
|
102956
|
-
export type ExternalAffiliateClickListRelationFilter = {
|
|
102957
|
-
every?: ExternalAffiliateClickWhereInput
|
|
102958
|
-
some?: ExternalAffiliateClickWhereInput
|
|
102959
|
-
none?: ExternalAffiliateClickWhereInput
|
|
102960
|
-
}
|
|
102961
|
-
|
|
102962
103045
|
export type TrolleyPaymentOrderByRelationAggregateInput = {
|
|
102963
103046
|
_count?: SortOrder
|
|
102964
103047
|
}
|
|
@@ -102967,10 +103050,6 @@ export namespace Prisma {
|
|
|
102967
103050
|
_count?: SortOrder
|
|
102968
103051
|
}
|
|
102969
103052
|
|
|
102970
|
-
export type ExternalAffiliateClickOrderByRelationAggregateInput = {
|
|
102971
|
-
_count?: SortOrder
|
|
102972
|
-
}
|
|
102973
|
-
|
|
102974
103053
|
export type OptInOrderByRelevanceInput = {
|
|
102975
103054
|
fields: OptInOrderByRelevanceFieldEnum | OptInOrderByRelevanceFieldEnum[]
|
|
102976
103055
|
sort: SortOrder
|
|
@@ -103738,11 +103817,13 @@ export namespace Prisma {
|
|
|
103738
103817
|
linkUrl?: SortOrder
|
|
103739
103818
|
metaData?: SortOrder
|
|
103740
103819
|
optInId?: SortOrder
|
|
103820
|
+
campaignId?: SortOrder
|
|
103741
103821
|
}
|
|
103742
103822
|
|
|
103743
103823
|
export type ExternalAffiliateClickAvgOrderByAggregateInput = {
|
|
103744
103824
|
id?: SortOrder
|
|
103745
103825
|
optInId?: SortOrder
|
|
103826
|
+
campaignId?: SortOrder
|
|
103746
103827
|
}
|
|
103747
103828
|
|
|
103748
103829
|
export type ExternalAffiliateClickMaxOrderByAggregateInput = {
|
|
@@ -103753,6 +103834,7 @@ export namespace Prisma {
|
|
|
103753
103834
|
ipv6?: SortOrder
|
|
103754
103835
|
linkUrl?: SortOrder
|
|
103755
103836
|
optInId?: SortOrder
|
|
103837
|
+
campaignId?: SortOrder
|
|
103756
103838
|
}
|
|
103757
103839
|
|
|
103758
103840
|
export type ExternalAffiliateClickMinOrderByAggregateInput = {
|
|
@@ -103763,11 +103845,13 @@ export namespace Prisma {
|
|
|
103763
103845
|
ipv6?: SortOrder
|
|
103764
103846
|
linkUrl?: SortOrder
|
|
103765
103847
|
optInId?: SortOrder
|
|
103848
|
+
campaignId?: SortOrder
|
|
103766
103849
|
}
|
|
103767
103850
|
|
|
103768
103851
|
export type ExternalAffiliateClickSumOrderByAggregateInput = {
|
|
103769
103852
|
id?: SortOrder
|
|
103770
103853
|
optInId?: SortOrder
|
|
103854
|
+
campaignId?: SortOrder
|
|
103771
103855
|
}
|
|
103772
103856
|
|
|
103773
103857
|
export type BrandAffiliateLinkOrderByRelevanceInput = {
|
|
@@ -107614,6 +107698,13 @@ export namespace Prisma {
|
|
|
107614
107698
|
connect?: SequenceWhereUniqueInput | SequenceWhereUniqueInput[]
|
|
107615
107699
|
}
|
|
107616
107700
|
|
|
107701
|
+
export type ExternalAffiliateClickCreateNestedManyWithoutCampaignInput = {
|
|
107702
|
+
create?: XOR<ExternalAffiliateClickCreateWithoutCampaignInput, ExternalAffiliateClickUncheckedCreateWithoutCampaignInput> | ExternalAffiliateClickCreateWithoutCampaignInput[] | ExternalAffiliateClickUncheckedCreateWithoutCampaignInput[]
|
|
107703
|
+
connectOrCreate?: ExternalAffiliateClickCreateOrConnectWithoutCampaignInput | ExternalAffiliateClickCreateOrConnectWithoutCampaignInput[]
|
|
107704
|
+
createMany?: ExternalAffiliateClickCreateManyCampaignInputEnvelope
|
|
107705
|
+
connect?: ExternalAffiliateClickWhereUniqueInput | ExternalAffiliateClickWhereUniqueInput[]
|
|
107706
|
+
}
|
|
107707
|
+
|
|
107617
107708
|
export type CampaignStepUncheckedCreateNestedManyWithoutCampaignInput = {
|
|
107618
107709
|
create?: XOR<CampaignStepCreateWithoutCampaignInput, CampaignStepUncheckedCreateWithoutCampaignInput> | CampaignStepCreateWithoutCampaignInput[] | CampaignStepUncheckedCreateWithoutCampaignInput[]
|
|
107619
107710
|
connectOrCreate?: CampaignStepCreateOrConnectWithoutCampaignInput | CampaignStepCreateOrConnectWithoutCampaignInput[]
|
|
@@ -107719,6 +107810,13 @@ export namespace Prisma {
|
|
|
107719
107810
|
connect?: SequenceWhereUniqueInput | SequenceWhereUniqueInput[]
|
|
107720
107811
|
}
|
|
107721
107812
|
|
|
107813
|
+
export type ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput = {
|
|
107814
|
+
create?: XOR<ExternalAffiliateClickCreateWithoutCampaignInput, ExternalAffiliateClickUncheckedCreateWithoutCampaignInput> | ExternalAffiliateClickCreateWithoutCampaignInput[] | ExternalAffiliateClickUncheckedCreateWithoutCampaignInput[]
|
|
107815
|
+
connectOrCreate?: ExternalAffiliateClickCreateOrConnectWithoutCampaignInput | ExternalAffiliateClickCreateOrConnectWithoutCampaignInput[]
|
|
107816
|
+
createMany?: ExternalAffiliateClickCreateManyCampaignInputEnvelope
|
|
107817
|
+
connect?: ExternalAffiliateClickWhereUniqueInput | ExternalAffiliateClickWhereUniqueInput[]
|
|
107818
|
+
}
|
|
107819
|
+
|
|
107722
107820
|
export type CampaignStepUpdateManyWithoutCampaignNestedInput = {
|
|
107723
107821
|
create?: XOR<CampaignStepCreateWithoutCampaignInput, CampaignStepUncheckedCreateWithoutCampaignInput> | CampaignStepCreateWithoutCampaignInput[] | CampaignStepUncheckedCreateWithoutCampaignInput[]
|
|
107724
107822
|
connectOrCreate?: CampaignStepCreateOrConnectWithoutCampaignInput | CampaignStepCreateOrConnectWithoutCampaignInput[]
|
|
@@ -107937,6 +108035,20 @@ export namespace Prisma {
|
|
|
107937
108035
|
deleteMany?: SequenceScalarWhereInput | SequenceScalarWhereInput[]
|
|
107938
108036
|
}
|
|
107939
108037
|
|
|
108038
|
+
export type ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput = {
|
|
108039
|
+
create?: XOR<ExternalAffiliateClickCreateWithoutCampaignInput, ExternalAffiliateClickUncheckedCreateWithoutCampaignInput> | ExternalAffiliateClickCreateWithoutCampaignInput[] | ExternalAffiliateClickUncheckedCreateWithoutCampaignInput[]
|
|
108040
|
+
connectOrCreate?: ExternalAffiliateClickCreateOrConnectWithoutCampaignInput | ExternalAffiliateClickCreateOrConnectWithoutCampaignInput[]
|
|
108041
|
+
upsert?: ExternalAffiliateClickUpsertWithWhereUniqueWithoutCampaignInput | ExternalAffiliateClickUpsertWithWhereUniqueWithoutCampaignInput[]
|
|
108042
|
+
createMany?: ExternalAffiliateClickCreateManyCampaignInputEnvelope
|
|
108043
|
+
set?: ExternalAffiliateClickWhereUniqueInput | ExternalAffiliateClickWhereUniqueInput[]
|
|
108044
|
+
disconnect?: ExternalAffiliateClickWhereUniqueInput | ExternalAffiliateClickWhereUniqueInput[]
|
|
108045
|
+
delete?: ExternalAffiliateClickWhereUniqueInput | ExternalAffiliateClickWhereUniqueInput[]
|
|
108046
|
+
connect?: ExternalAffiliateClickWhereUniqueInput | ExternalAffiliateClickWhereUniqueInput[]
|
|
108047
|
+
update?: ExternalAffiliateClickUpdateWithWhereUniqueWithoutCampaignInput | ExternalAffiliateClickUpdateWithWhereUniqueWithoutCampaignInput[]
|
|
108048
|
+
updateMany?: ExternalAffiliateClickUpdateManyWithWhereWithoutCampaignInput | ExternalAffiliateClickUpdateManyWithWhereWithoutCampaignInput[]
|
|
108049
|
+
deleteMany?: ExternalAffiliateClickScalarWhereInput | ExternalAffiliateClickScalarWhereInput[]
|
|
108050
|
+
}
|
|
108051
|
+
|
|
107940
108052
|
export type CampaignStepUncheckedUpdateManyWithoutCampaignNestedInput = {
|
|
107941
108053
|
create?: XOR<CampaignStepCreateWithoutCampaignInput, CampaignStepUncheckedCreateWithoutCampaignInput> | CampaignStepCreateWithoutCampaignInput[] | CampaignStepUncheckedCreateWithoutCampaignInput[]
|
|
107942
108054
|
connectOrCreate?: CampaignStepCreateOrConnectWithoutCampaignInput | CampaignStepCreateOrConnectWithoutCampaignInput[]
|
|
@@ -108147,6 +108259,20 @@ export namespace Prisma {
|
|
|
108147
108259
|
deleteMany?: SequenceScalarWhereInput | SequenceScalarWhereInput[]
|
|
108148
108260
|
}
|
|
108149
108261
|
|
|
108262
|
+
export type ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput = {
|
|
108263
|
+
create?: XOR<ExternalAffiliateClickCreateWithoutCampaignInput, ExternalAffiliateClickUncheckedCreateWithoutCampaignInput> | ExternalAffiliateClickCreateWithoutCampaignInput[] | ExternalAffiliateClickUncheckedCreateWithoutCampaignInput[]
|
|
108264
|
+
connectOrCreate?: ExternalAffiliateClickCreateOrConnectWithoutCampaignInput | ExternalAffiliateClickCreateOrConnectWithoutCampaignInput[]
|
|
108265
|
+
upsert?: ExternalAffiliateClickUpsertWithWhereUniqueWithoutCampaignInput | ExternalAffiliateClickUpsertWithWhereUniqueWithoutCampaignInput[]
|
|
108266
|
+
createMany?: ExternalAffiliateClickCreateManyCampaignInputEnvelope
|
|
108267
|
+
set?: ExternalAffiliateClickWhereUniqueInput | ExternalAffiliateClickWhereUniqueInput[]
|
|
108268
|
+
disconnect?: ExternalAffiliateClickWhereUniqueInput | ExternalAffiliateClickWhereUniqueInput[]
|
|
108269
|
+
delete?: ExternalAffiliateClickWhereUniqueInput | ExternalAffiliateClickWhereUniqueInput[]
|
|
108270
|
+
connect?: ExternalAffiliateClickWhereUniqueInput | ExternalAffiliateClickWhereUniqueInput[]
|
|
108271
|
+
update?: ExternalAffiliateClickUpdateWithWhereUniqueWithoutCampaignInput | ExternalAffiliateClickUpdateWithWhereUniqueWithoutCampaignInput[]
|
|
108272
|
+
updateMany?: ExternalAffiliateClickUpdateManyWithWhereWithoutCampaignInput | ExternalAffiliateClickUpdateManyWithWhereWithoutCampaignInput[]
|
|
108273
|
+
deleteMany?: ExternalAffiliateClickScalarWhereInput | ExternalAffiliateClickScalarWhereInput[]
|
|
108274
|
+
}
|
|
108275
|
+
|
|
108150
108276
|
export type UserCreateNestedOneWithoutCampaignPinsInput = {
|
|
108151
108277
|
create?: XOR<UserCreateWithoutCampaignPinsInput, UserUncheckedCreateWithoutCampaignPinsInput>
|
|
108152
108278
|
connectOrCreate?: UserCreateOrConnectWithoutCampaignPinsInput
|
|
@@ -109711,6 +109837,12 @@ export namespace Prisma {
|
|
|
109711
109837
|
connect?: OptInWhereUniqueInput
|
|
109712
109838
|
}
|
|
109713
109839
|
|
|
109840
|
+
export type CampaignCreateNestedOneWithoutExternalAffiliateClickInput = {
|
|
109841
|
+
create?: XOR<CampaignCreateWithoutExternalAffiliateClickInput, CampaignUncheckedCreateWithoutExternalAffiliateClickInput>
|
|
109842
|
+
connectOrCreate?: CampaignCreateOrConnectWithoutExternalAffiliateClickInput
|
|
109843
|
+
connect?: CampaignWhereUniqueInput
|
|
109844
|
+
}
|
|
109845
|
+
|
|
109714
109846
|
export type OptInUpdateOneRequiredWithoutExternalAffiliateClickNestedInput = {
|
|
109715
109847
|
create?: XOR<OptInCreateWithoutExternalAffiliateClickInput, OptInUncheckedCreateWithoutExternalAffiliateClickInput>
|
|
109716
109848
|
connectOrCreate?: OptInCreateOrConnectWithoutExternalAffiliateClickInput
|
|
@@ -109719,6 +109851,14 @@ export namespace Prisma {
|
|
|
109719
109851
|
update?: XOR<XOR<OptInUpdateToOneWithWhereWithoutExternalAffiliateClickInput, OptInUpdateWithoutExternalAffiliateClickInput>, OptInUncheckedUpdateWithoutExternalAffiliateClickInput>
|
|
109720
109852
|
}
|
|
109721
109853
|
|
|
109854
|
+
export type CampaignUpdateOneRequiredWithoutExternalAffiliateClickNestedInput = {
|
|
109855
|
+
create?: XOR<CampaignCreateWithoutExternalAffiliateClickInput, CampaignUncheckedCreateWithoutExternalAffiliateClickInput>
|
|
109856
|
+
connectOrCreate?: CampaignCreateOrConnectWithoutExternalAffiliateClickInput
|
|
109857
|
+
upsert?: CampaignUpsertWithoutExternalAffiliateClickInput
|
|
109858
|
+
connect?: CampaignWhereUniqueInput
|
|
109859
|
+
update?: XOR<XOR<CampaignUpdateToOneWithWhereWithoutExternalAffiliateClickInput, CampaignUpdateWithoutExternalAffiliateClickInput>, CampaignUncheckedUpdateWithoutExternalAffiliateClickInput>
|
|
109860
|
+
}
|
|
109861
|
+
|
|
109722
109862
|
export type AffiliateLinkCreateNestedManyWithoutBrandAffiliateLinkInput = {
|
|
109723
109863
|
create?: XOR<AffiliateLinkCreateWithoutBrandAffiliateLinkInput, AffiliateLinkUncheckedCreateWithoutBrandAffiliateLinkInput> | AffiliateLinkCreateWithoutBrandAffiliateLinkInput[] | AffiliateLinkUncheckedCreateWithoutBrandAffiliateLinkInput[]
|
|
109724
109864
|
connectOrCreate?: AffiliateLinkCreateOrConnectWithoutBrandAffiliateLinkInput | AffiliateLinkCreateOrConnectWithoutBrandAffiliateLinkInput[]
|
|
@@ -116112,6 +116252,7 @@ export namespace Prisma {
|
|
|
116112
116252
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
116113
116253
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
116114
116254
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
116255
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
116115
116256
|
}
|
|
116116
116257
|
|
|
116117
116258
|
export type CampaignUncheckedCreateWithoutBrandInput = {
|
|
@@ -116182,6 +116323,7 @@ export namespace Prisma {
|
|
|
116182
116323
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
116183
116324
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
116184
116325
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
116326
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
116185
116327
|
}
|
|
116186
116328
|
|
|
116187
116329
|
export type CampaignCreateOrConnectWithoutBrandInput = {
|
|
@@ -119907,6 +120049,37 @@ export namespace Prisma {
|
|
|
119907
120049
|
skipDuplicates?: boolean
|
|
119908
120050
|
}
|
|
119909
120051
|
|
|
120052
|
+
export type ExternalAffiliateClickCreateWithoutCampaignInput = {
|
|
120053
|
+
program: string
|
|
120054
|
+
created?: Date | string
|
|
120055
|
+
ipv4?: string | null
|
|
120056
|
+
ipv6?: string | null
|
|
120057
|
+
linkUrl: string
|
|
120058
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
120059
|
+
optin: OptInCreateNestedOneWithoutExternalAffiliateClickInput
|
|
120060
|
+
}
|
|
120061
|
+
|
|
120062
|
+
export type ExternalAffiliateClickUncheckedCreateWithoutCampaignInput = {
|
|
120063
|
+
id?: number
|
|
120064
|
+
program: string
|
|
120065
|
+
created?: Date | string
|
|
120066
|
+
ipv4?: string | null
|
|
120067
|
+
ipv6?: string | null
|
|
120068
|
+
linkUrl: string
|
|
120069
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
120070
|
+
optInId: number
|
|
120071
|
+
}
|
|
120072
|
+
|
|
120073
|
+
export type ExternalAffiliateClickCreateOrConnectWithoutCampaignInput = {
|
|
120074
|
+
where: ExternalAffiliateClickWhereUniqueInput
|
|
120075
|
+
create: XOR<ExternalAffiliateClickCreateWithoutCampaignInput, ExternalAffiliateClickUncheckedCreateWithoutCampaignInput>
|
|
120076
|
+
}
|
|
120077
|
+
|
|
120078
|
+
export type ExternalAffiliateClickCreateManyCampaignInputEnvelope = {
|
|
120079
|
+
data: ExternalAffiliateClickCreateManyCampaignInput | ExternalAffiliateClickCreateManyCampaignInput[]
|
|
120080
|
+
skipDuplicates?: boolean
|
|
120081
|
+
}
|
|
120082
|
+
|
|
119910
120083
|
export type CampaignStepUpsertWithWhereUniqueWithoutCampaignInput = {
|
|
119911
120084
|
where: CampaignStepWhereUniqueInput
|
|
119912
120085
|
update: XOR<CampaignStepUpdateWithoutCampaignInput, CampaignStepUncheckedUpdateWithoutCampaignInput>
|
|
@@ -120321,6 +120494,37 @@ export namespace Prisma {
|
|
|
120321
120494
|
data: XOR<SequenceUpdateManyMutationInput, SequenceUncheckedUpdateManyWithoutCampaignInput>
|
|
120322
120495
|
}
|
|
120323
120496
|
|
|
120497
|
+
export type ExternalAffiliateClickUpsertWithWhereUniqueWithoutCampaignInput = {
|
|
120498
|
+
where: ExternalAffiliateClickWhereUniqueInput
|
|
120499
|
+
update: XOR<ExternalAffiliateClickUpdateWithoutCampaignInput, ExternalAffiliateClickUncheckedUpdateWithoutCampaignInput>
|
|
120500
|
+
create: XOR<ExternalAffiliateClickCreateWithoutCampaignInput, ExternalAffiliateClickUncheckedCreateWithoutCampaignInput>
|
|
120501
|
+
}
|
|
120502
|
+
|
|
120503
|
+
export type ExternalAffiliateClickUpdateWithWhereUniqueWithoutCampaignInput = {
|
|
120504
|
+
where: ExternalAffiliateClickWhereUniqueInput
|
|
120505
|
+
data: XOR<ExternalAffiliateClickUpdateWithoutCampaignInput, ExternalAffiliateClickUncheckedUpdateWithoutCampaignInput>
|
|
120506
|
+
}
|
|
120507
|
+
|
|
120508
|
+
export type ExternalAffiliateClickUpdateManyWithWhereWithoutCampaignInput = {
|
|
120509
|
+
where: ExternalAffiliateClickScalarWhereInput
|
|
120510
|
+
data: XOR<ExternalAffiliateClickUpdateManyMutationInput, ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignInput>
|
|
120511
|
+
}
|
|
120512
|
+
|
|
120513
|
+
export type ExternalAffiliateClickScalarWhereInput = {
|
|
120514
|
+
AND?: ExternalAffiliateClickScalarWhereInput | ExternalAffiliateClickScalarWhereInput[]
|
|
120515
|
+
OR?: ExternalAffiliateClickScalarWhereInput[]
|
|
120516
|
+
NOT?: ExternalAffiliateClickScalarWhereInput | ExternalAffiliateClickScalarWhereInput[]
|
|
120517
|
+
id?: IntFilter<"ExternalAffiliateClick"> | number
|
|
120518
|
+
program?: StringFilter<"ExternalAffiliateClick"> | string
|
|
120519
|
+
created?: DateTimeFilter<"ExternalAffiliateClick"> | Date | string
|
|
120520
|
+
ipv4?: StringNullableFilter<"ExternalAffiliateClick"> | string | null
|
|
120521
|
+
ipv6?: StringNullableFilter<"ExternalAffiliateClick"> | string | null
|
|
120522
|
+
linkUrl?: StringFilter<"ExternalAffiliateClick"> | string
|
|
120523
|
+
metaData?: JsonFilter<"ExternalAffiliateClick">
|
|
120524
|
+
optInId?: IntFilter<"ExternalAffiliateClick"> | number
|
|
120525
|
+
campaignId?: IntFilter<"ExternalAffiliateClick"> | number
|
|
120526
|
+
}
|
|
120527
|
+
|
|
120324
120528
|
export type UserCreateWithoutCampaignPinsInput = {
|
|
120325
120529
|
role: string
|
|
120326
120530
|
email?: string | null
|
|
@@ -120474,6 +120678,7 @@ export namespace Prisma {
|
|
|
120474
120678
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
120475
120679
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
120476
120680
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
120681
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
120477
120682
|
}
|
|
120478
120683
|
|
|
120479
120684
|
export type CampaignUncheckedCreateWithoutCampaignPinsInput = {
|
|
@@ -120544,6 +120749,7 @@ export namespace Prisma {
|
|
|
120544
120749
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
120545
120750
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
120546
120751
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
120752
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
120547
120753
|
}
|
|
120548
120754
|
|
|
120549
120755
|
export type CampaignCreateOrConnectWithoutCampaignPinsInput = {
|
|
@@ -120721,6 +120927,7 @@ export namespace Prisma {
|
|
|
120721
120927
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
120722
120928
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
120723
120929
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
120930
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
120724
120931
|
}
|
|
120725
120932
|
|
|
120726
120933
|
export type CampaignUncheckedUpdateWithoutCampaignPinsInput = {
|
|
@@ -120791,6 +120998,7 @@ export namespace Prisma {
|
|
|
120791
120998
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
120792
120999
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
120793
121000
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
121001
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
120794
121002
|
}
|
|
120795
121003
|
|
|
120796
121004
|
export type CampaignCreateWithoutImagesInput = {
|
|
@@ -120860,6 +121068,7 @@ export namespace Prisma {
|
|
|
120860
121068
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
120861
121069
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
120862
121070
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
121071
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
120863
121072
|
}
|
|
120864
121073
|
|
|
120865
121074
|
export type CampaignUncheckedCreateWithoutImagesInput = {
|
|
@@ -120930,6 +121139,7 @@ export namespace Prisma {
|
|
|
120930
121139
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
120931
121140
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
120932
121141
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
121142
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
120933
121143
|
}
|
|
120934
121144
|
|
|
120935
121145
|
export type CampaignCreateOrConnectWithoutImagesInput = {
|
|
@@ -121036,6 +121246,7 @@ export namespace Prisma {
|
|
|
121036
121246
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
121037
121247
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
121038
121248
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
121249
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
121039
121250
|
}
|
|
121040
121251
|
|
|
121041
121252
|
export type CampaignUncheckedUpdateWithoutImagesInput = {
|
|
@@ -121106,6 +121317,7 @@ export namespace Prisma {
|
|
|
121106
121317
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
121107
121318
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
121108
121319
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
121320
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
121109
121321
|
}
|
|
121110
121322
|
|
|
121111
121323
|
export type ImageUpsertWithWhereUniqueWithoutCampaignImageInput = {
|
|
@@ -121201,6 +121413,7 @@ export namespace Prisma {
|
|
|
121201
121413
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
121202
121414
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
121203
121415
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
121416
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
121204
121417
|
}
|
|
121205
121418
|
|
|
121206
121419
|
export type CampaignUncheckedCreateWithoutCampaignToBrandAffiliateLinksInput = {
|
|
@@ -121271,6 +121484,7 @@ export namespace Prisma {
|
|
|
121271
121484
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
121272
121485
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
121273
121486
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
121487
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
121274
121488
|
}
|
|
121275
121489
|
|
|
121276
121490
|
export type CampaignCreateOrConnectWithoutCampaignToBrandAffiliateLinksInput = {
|
|
@@ -121382,6 +121596,7 @@ export namespace Prisma {
|
|
|
121382
121596
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
121383
121597
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
121384
121598
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
121599
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
121385
121600
|
}
|
|
121386
121601
|
|
|
121387
121602
|
export type CampaignUncheckedUpdateWithoutCampaignToBrandAffiliateLinksInput = {
|
|
@@ -121452,6 +121667,7 @@ export namespace Prisma {
|
|
|
121452
121667
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
121453
121668
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
121454
121669
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
121670
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
121455
121671
|
}
|
|
121456
121672
|
|
|
121457
121673
|
export type BrandAffiliateLinkUpsertWithoutCampaignToBrandAffiliateLinkInput = {
|
|
@@ -121553,6 +121769,7 @@ export namespace Prisma {
|
|
|
121553
121769
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
121554
121770
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
121555
121771
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
121772
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
121556
121773
|
}
|
|
121557
121774
|
|
|
121558
121775
|
export type CampaignUncheckedCreateWithoutCategoriesInput = {
|
|
@@ -121623,6 +121840,7 @@ export namespace Prisma {
|
|
|
121623
121840
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
121624
121841
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
121625
121842
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
121843
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
121626
121844
|
}
|
|
121627
121845
|
|
|
121628
121846
|
export type CampaignCreateOrConnectWithoutCategoriesInput = {
|
|
@@ -121728,6 +121946,7 @@ export namespace Prisma {
|
|
|
121728
121946
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
121729
121947
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
121730
121948
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
121949
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
121731
121950
|
}
|
|
121732
121951
|
|
|
121733
121952
|
export type CampaignUncheckedUpdateWithoutCategoriesInput = {
|
|
@@ -121798,6 +122017,7 @@ export namespace Prisma {
|
|
|
121798
122017
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
121799
122018
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
121800
122019
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
122020
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
121801
122021
|
}
|
|
121802
122022
|
|
|
121803
122023
|
export type CategoryUpsertWithoutCampaignsInput = {
|
|
@@ -121893,6 +122113,7 @@ export namespace Prisma {
|
|
|
121893
122113
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
121894
122114
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
121895
122115
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
122116
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
121896
122117
|
}
|
|
121897
122118
|
|
|
121898
122119
|
export type CampaignUncheckedCreateWithoutCountriesInput = {
|
|
@@ -121963,6 +122184,7 @@ export namespace Prisma {
|
|
|
121963
122184
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
121964
122185
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
121965
122186
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
122187
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
121966
122188
|
}
|
|
121967
122189
|
|
|
121968
122190
|
export type CampaignCreateOrConnectWithoutCountriesInput = {
|
|
@@ -122068,6 +122290,7 @@ export namespace Prisma {
|
|
|
122068
122290
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
122069
122291
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
122070
122292
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
122293
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
122071
122294
|
}
|
|
122072
122295
|
|
|
122073
122296
|
export type CampaignUncheckedUpdateWithoutCountriesInput = {
|
|
@@ -122138,6 +122361,7 @@ export namespace Prisma {
|
|
|
122138
122361
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
122139
122362
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
122140
122363
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
122364
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
122141
122365
|
}
|
|
122142
122366
|
|
|
122143
122367
|
export type CountryUpsertWithoutCampaignsInput = {
|
|
@@ -122588,6 +122812,7 @@ export namespace Prisma {
|
|
|
122588
122812
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
122589
122813
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
122590
122814
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
122815
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
122591
122816
|
}
|
|
122592
122817
|
|
|
122593
122818
|
export type CampaignUncheckedCreateWithoutProductListsInput = {
|
|
@@ -122658,6 +122883,7 @@ export namespace Prisma {
|
|
|
122658
122883
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
122659
122884
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
122660
122885
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
122886
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
122661
122887
|
}
|
|
122662
122888
|
|
|
122663
122889
|
export type CampaignCreateOrConnectWithoutProductListsInput = {
|
|
@@ -122767,6 +122993,7 @@ export namespace Prisma {
|
|
|
122767
122993
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
122768
122994
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
122769
122995
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
122996
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
122770
122997
|
}
|
|
122771
122998
|
|
|
122772
122999
|
export type CampaignUncheckedUpdateWithoutProductListsInput = {
|
|
@@ -122837,6 +123064,7 @@ export namespace Prisma {
|
|
|
122837
123064
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
122838
123065
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
122839
123066
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
123067
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
122840
123068
|
}
|
|
122841
123069
|
|
|
122842
123070
|
export type ProductListUpsertWithoutCampaignProductListsInput = {
|
|
@@ -123112,6 +123340,7 @@ export namespace Prisma {
|
|
|
123112
123340
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
123113
123341
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
123114
123342
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
123343
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
123115
123344
|
}
|
|
123116
123345
|
|
|
123117
123346
|
export type CampaignUncheckedCreateWithoutVariablesInput = {
|
|
@@ -123182,6 +123411,7 @@ export namespace Prisma {
|
|
|
123182
123411
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
123183
123412
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
123184
123413
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
123414
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
123185
123415
|
}
|
|
123186
123416
|
|
|
123187
123417
|
export type CampaignCreateOrConnectWithoutVariablesInput = {
|
|
@@ -123313,6 +123543,7 @@ export namespace Prisma {
|
|
|
123313
123543
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
123314
123544
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
123315
123545
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
123546
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
123316
123547
|
}
|
|
123317
123548
|
|
|
123318
123549
|
export type CampaignUncheckedUpdateWithoutVariablesInput = {
|
|
@@ -123383,6 +123614,7 @@ export namespace Prisma {
|
|
|
123383
123614
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
123384
123615
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
123385
123616
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
123617
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
123386
123618
|
}
|
|
123387
123619
|
|
|
123388
123620
|
export type VariableOptionUpsertWithWhereUniqueWithoutVariableInput = {
|
|
@@ -123645,6 +123877,7 @@ export namespace Prisma {
|
|
|
123645
123877
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
123646
123878
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
123647
123879
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
123880
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
123648
123881
|
}
|
|
123649
123882
|
|
|
123650
123883
|
export type CampaignUncheckedCreateWithoutStepsInput = {
|
|
@@ -123715,6 +123948,7 @@ export namespace Prisma {
|
|
|
123715
123948
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
123716
123949
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
123717
123950
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
123951
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
123718
123952
|
}
|
|
123719
123953
|
|
|
123720
123954
|
export type CampaignCreateOrConnectWithoutStepsInput = {
|
|
@@ -123910,6 +124144,7 @@ export namespace Prisma {
|
|
|
123910
124144
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
123911
124145
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
123912
124146
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
124147
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
123913
124148
|
}
|
|
123914
124149
|
|
|
123915
124150
|
export type CampaignUncheckedUpdateWithoutStepsInput = {
|
|
@@ -123980,6 +124215,7 @@ export namespace Prisma {
|
|
|
123980
124215
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
123981
124216
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
123982
124217
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
124218
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
123983
124219
|
}
|
|
123984
124220
|
|
|
123985
124221
|
export type StepUpsertWithoutCampaignStepsInput = {
|
|
@@ -124503,6 +124739,7 @@ export namespace Prisma {
|
|
|
124503
124739
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
124504
124740
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
124505
124741
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
124742
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
124506
124743
|
}
|
|
124507
124744
|
|
|
124508
124745
|
export type CampaignUncheckedCreateWithoutOptInsInput = {
|
|
@@ -124573,6 +124810,7 @@ export namespace Prisma {
|
|
|
124573
124810
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
124574
124811
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
124575
124812
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
124813
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
124576
124814
|
}
|
|
124577
124815
|
|
|
124578
124816
|
export type CampaignCreateOrConnectWithoutOptInsInput = {
|
|
@@ -124792,6 +125030,7 @@ export namespace Prisma {
|
|
|
124792
125030
|
ipv6?: string | null
|
|
124793
125031
|
linkUrl: string
|
|
124794
125032
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
125033
|
+
campaign: CampaignCreateNestedOneWithoutExternalAffiliateClickInput
|
|
124795
125034
|
}
|
|
124796
125035
|
|
|
124797
125036
|
export type ExternalAffiliateClickUncheckedCreateWithoutOptinInput = {
|
|
@@ -124802,6 +125041,7 @@ export namespace Prisma {
|
|
|
124802
125041
|
ipv6?: string | null
|
|
124803
125042
|
linkUrl: string
|
|
124804
125043
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
125044
|
+
campaignId: number
|
|
124805
125045
|
}
|
|
124806
125046
|
|
|
124807
125047
|
export type ExternalAffiliateClickCreateOrConnectWithoutOptinInput = {
|
|
@@ -124984,6 +125224,7 @@ export namespace Prisma {
|
|
|
124984
125224
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
124985
125225
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
124986
125226
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
125227
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
124987
125228
|
}
|
|
124988
125229
|
|
|
124989
125230
|
export type CampaignUncheckedUpdateWithoutOptInsInput = {
|
|
@@ -125054,6 +125295,7 @@ export namespace Prisma {
|
|
|
125054
125295
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
125055
125296
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
125056
125297
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
125298
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
125057
125299
|
}
|
|
125058
125300
|
|
|
125059
125301
|
export type CampaignStepUpsertWithoutCurrentOptInsInput = {
|
|
@@ -125258,20 +125500,6 @@ export namespace Prisma {
|
|
|
125258
125500
|
data: XOR<ExternalAffiliateClickUpdateManyMutationInput, ExternalAffiliateClickUncheckedUpdateManyWithoutOptinInput>
|
|
125259
125501
|
}
|
|
125260
125502
|
|
|
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
125503
|
export type OptInCreateWithoutTrolleyPaymentsInput = {
|
|
125276
125504
|
status?: string
|
|
125277
125505
|
created?: Date | string
|
|
@@ -125773,6 +126001,7 @@ export namespace Prisma {
|
|
|
125773
126001
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
125774
126002
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
125775
126003
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
126004
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
125776
126005
|
}
|
|
125777
126006
|
|
|
125778
126007
|
export type CampaignUncheckedCreateWithoutSocialPostsInput = {
|
|
@@ -125843,6 +126072,7 @@ export namespace Prisma {
|
|
|
125843
126072
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
125844
126073
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
125845
126074
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
126075
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
125846
126076
|
}
|
|
125847
126077
|
|
|
125848
126078
|
export type CampaignCreateOrConnectWithoutSocialPostsInput = {
|
|
@@ -126039,6 +126269,7 @@ export namespace Prisma {
|
|
|
126039
126269
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
126040
126270
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
126041
126271
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
126272
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
126042
126273
|
}
|
|
126043
126274
|
|
|
126044
126275
|
export type CampaignUncheckedUpdateWithoutSocialPostsInput = {
|
|
@@ -126109,6 +126340,7 @@ export namespace Prisma {
|
|
|
126109
126340
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
126110
126341
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
126111
126342
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
126343
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
126112
126344
|
}
|
|
126113
126345
|
|
|
126114
126346
|
export type ListToSocialPostUpsertWithWhereUniqueWithoutSocialPostInput = {
|
|
@@ -126887,6 +127119,152 @@ export namespace Prisma {
|
|
|
126887
127119
|
create: XOR<OptInCreateWithoutExternalAffiliateClickInput, OptInUncheckedCreateWithoutExternalAffiliateClickInput>
|
|
126888
127120
|
}
|
|
126889
127121
|
|
|
127122
|
+
export type CampaignCreateWithoutExternalAffiliateClickInput = {
|
|
127123
|
+
title: string
|
|
127124
|
+
slug?: string | null
|
|
127125
|
+
status?: string
|
|
127126
|
+
date?: Date | string
|
|
127127
|
+
publishDate?: Date | string | null
|
|
127128
|
+
sfSyncDate?: Date | string | null
|
|
127129
|
+
description?: string | null
|
|
127130
|
+
productDescription?: string | null
|
|
127131
|
+
prizeDescription?: string | null
|
|
127132
|
+
strategy?: string | null
|
|
127133
|
+
socialChannel?: string | null
|
|
127134
|
+
socialChannels?: NullableJsonNullValueInput | InputJsonValue
|
|
127135
|
+
facebookReach?: number | null
|
|
127136
|
+
facebookEngagement?: number | null
|
|
127137
|
+
instagramReach?: number | null
|
|
127138
|
+
instagramEngagement?: number | null
|
|
127139
|
+
youtubeReach?: number | null
|
|
127140
|
+
youtubeEngagement?: number | null
|
|
127141
|
+
twitterReach?: number | null
|
|
127142
|
+
twitterEngagement?: number | null
|
|
127143
|
+
tiktokReach?: number | null
|
|
127144
|
+
tiktokEngagement?: number | null
|
|
127145
|
+
twitchReach?: number | null
|
|
127146
|
+
twitchEngagement?: number | null
|
|
127147
|
+
quantity?: number
|
|
127148
|
+
holdCost?: number | null
|
|
127149
|
+
value?: number | null
|
|
127150
|
+
paidAmount?: number | null
|
|
127151
|
+
minAge?: number | null
|
|
127152
|
+
maxAge?: number | null
|
|
127153
|
+
visuals?: string | null
|
|
127154
|
+
photoTags?: NullableJsonNullValueInput | InputJsonValue
|
|
127155
|
+
hashtags?: NullableJsonNullValueInput | InputJsonValue
|
|
127156
|
+
storyHashtags?: NullableJsonNullValueInput | InputJsonValue
|
|
127157
|
+
storyMentions?: NullableJsonNullValueInput | InputJsonValue
|
|
127158
|
+
caption?: string | null
|
|
127159
|
+
password?: string | null
|
|
127160
|
+
contentFormats?: NullableJsonNullValueInput | InputJsonValue
|
|
127161
|
+
paidCampaign?: boolean | null
|
|
127162
|
+
minPaidAmount?: number | null
|
|
127163
|
+
maxPaidAmount?: number | null
|
|
127164
|
+
paymentType?: string | null
|
|
127165
|
+
monthlyActivatedGoal?: number | null
|
|
127166
|
+
expectedOptIns?: number | null
|
|
127167
|
+
goalActivations?: number | null
|
|
127168
|
+
goalOptIns?: number | null
|
|
127169
|
+
requiresShipping?: boolean | null
|
|
127170
|
+
disableQualifications?: boolean | null
|
|
127171
|
+
disableActivations?: boolean | null
|
|
127172
|
+
affiliateLinkPath?: string | null
|
|
127173
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
127174
|
+
steps?: CampaignStepCreateNestedManyWithoutCampaignInput
|
|
127175
|
+
categories?: CampaignToCategoryCreateNestedManyWithoutCampaignInput
|
|
127176
|
+
optIns?: OptInCreateNestedManyWithoutCampaignInput
|
|
127177
|
+
images?: CampaignToImageCreateNestedManyWithoutCampaignInput
|
|
127178
|
+
variables?: VariableCreateNestedManyWithoutCampaignInput
|
|
127179
|
+
productLists?: CampaignToProductListCreateNestedManyWithoutCampaignInput
|
|
127180
|
+
countries?: CampaignToCountryCreateNestedManyWithoutCampaignInput
|
|
127181
|
+
campaignPins?: CampaignPinCreateNestedManyWithoutCampaignInput
|
|
127182
|
+
socialPosts?: SocialPostCreateNestedManyWithoutCampaignInput
|
|
127183
|
+
campaignInvites?: CampaignInviteCreateNestedManyWithoutCampaignInput
|
|
127184
|
+
campaignToShopifyProducts?: CampaignToShopifyProductCreateNestedManyWithoutCampaignInput
|
|
127185
|
+
campaignToBrandAffiliateLinks?: CampaignToBrandAffiliateLinkCreateNestedManyWithoutCampaignInput
|
|
127186
|
+
brand: BrandCreateNestedOneWithoutCampaignsInput
|
|
127187
|
+
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
127188
|
+
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
127189
|
+
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
127190
|
+
}
|
|
127191
|
+
|
|
127192
|
+
export type CampaignUncheckedCreateWithoutExternalAffiliateClickInput = {
|
|
127193
|
+
id?: number
|
|
127194
|
+
title: string
|
|
127195
|
+
slug?: string | null
|
|
127196
|
+
status?: string
|
|
127197
|
+
date?: Date | string
|
|
127198
|
+
publishDate?: Date | string | null
|
|
127199
|
+
sfSyncDate?: Date | string | null
|
|
127200
|
+
description?: string | null
|
|
127201
|
+
productDescription?: string | null
|
|
127202
|
+
prizeDescription?: string | null
|
|
127203
|
+
strategy?: string | null
|
|
127204
|
+
socialChannel?: string | null
|
|
127205
|
+
socialChannels?: NullableJsonNullValueInput | InputJsonValue
|
|
127206
|
+
facebookReach?: number | null
|
|
127207
|
+
facebookEngagement?: number | null
|
|
127208
|
+
instagramReach?: number | null
|
|
127209
|
+
instagramEngagement?: number | null
|
|
127210
|
+
youtubeReach?: number | null
|
|
127211
|
+
youtubeEngagement?: number | null
|
|
127212
|
+
twitterReach?: number | null
|
|
127213
|
+
twitterEngagement?: number | null
|
|
127214
|
+
tiktokReach?: number | null
|
|
127215
|
+
tiktokEngagement?: number | null
|
|
127216
|
+
twitchReach?: number | null
|
|
127217
|
+
twitchEngagement?: number | null
|
|
127218
|
+
quantity?: number
|
|
127219
|
+
holdCost?: number | null
|
|
127220
|
+
value?: number | null
|
|
127221
|
+
paidAmount?: number | null
|
|
127222
|
+
minAge?: number | null
|
|
127223
|
+
maxAge?: number | null
|
|
127224
|
+
visuals?: string | null
|
|
127225
|
+
photoTags?: NullableJsonNullValueInput | InputJsonValue
|
|
127226
|
+
hashtags?: NullableJsonNullValueInput | InputJsonValue
|
|
127227
|
+
storyHashtags?: NullableJsonNullValueInput | InputJsonValue
|
|
127228
|
+
storyMentions?: NullableJsonNullValueInput | InputJsonValue
|
|
127229
|
+
caption?: string | null
|
|
127230
|
+
password?: string | null
|
|
127231
|
+
contentFormats?: NullableJsonNullValueInput | InputJsonValue
|
|
127232
|
+
paidCampaign?: boolean | null
|
|
127233
|
+
minPaidAmount?: number | null
|
|
127234
|
+
maxPaidAmount?: number | null
|
|
127235
|
+
paymentType?: string | null
|
|
127236
|
+
monthlyActivatedGoal?: number | null
|
|
127237
|
+
expectedOptIns?: number | null
|
|
127238
|
+
goalActivations?: number | null
|
|
127239
|
+
goalOptIns?: number | null
|
|
127240
|
+
requiresShipping?: boolean | null
|
|
127241
|
+
disableQualifications?: boolean | null
|
|
127242
|
+
disableActivations?: boolean | null
|
|
127243
|
+
affiliateLinkPath?: string | null
|
|
127244
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
127245
|
+
brandId: number
|
|
127246
|
+
steps?: CampaignStepUncheckedCreateNestedManyWithoutCampaignInput
|
|
127247
|
+
categories?: CampaignToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
127248
|
+
optIns?: OptInUncheckedCreateNestedManyWithoutCampaignInput
|
|
127249
|
+
images?: CampaignToImageUncheckedCreateNestedManyWithoutCampaignInput
|
|
127250
|
+
variables?: VariableUncheckedCreateNestedManyWithoutCampaignInput
|
|
127251
|
+
productLists?: CampaignToProductListUncheckedCreateNestedManyWithoutCampaignInput
|
|
127252
|
+
countries?: CampaignToCountryUncheckedCreateNestedManyWithoutCampaignInput
|
|
127253
|
+
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutCampaignInput
|
|
127254
|
+
socialPosts?: SocialPostUncheckedCreateNestedManyWithoutCampaignInput
|
|
127255
|
+
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutCampaignInput
|
|
127256
|
+
campaignToShopifyProducts?: CampaignToShopifyProductUncheckedCreateNestedManyWithoutCampaignInput
|
|
127257
|
+
campaignToBrandAffiliateLinks?: CampaignToBrandAffiliateLinkUncheckedCreateNestedManyWithoutCampaignInput
|
|
127258
|
+
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
127259
|
+
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
127260
|
+
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
127261
|
+
}
|
|
127262
|
+
|
|
127263
|
+
export type CampaignCreateOrConnectWithoutExternalAffiliateClickInput = {
|
|
127264
|
+
where: CampaignWhereUniqueInput
|
|
127265
|
+
create: XOR<CampaignCreateWithoutExternalAffiliateClickInput, CampaignUncheckedCreateWithoutExternalAffiliateClickInput>
|
|
127266
|
+
}
|
|
127267
|
+
|
|
126890
127268
|
export type OptInUpsertWithoutExternalAffiliateClickInput = {
|
|
126891
127269
|
update: XOR<OptInUpdateWithoutExternalAffiliateClickInput, OptInUncheckedUpdateWithoutExternalAffiliateClickInput>
|
|
126892
127270
|
create: XOR<OptInCreateWithoutExternalAffiliateClickInput, OptInUncheckedCreateWithoutExternalAffiliateClickInput>
|
|
@@ -126953,6 +127331,158 @@ export namespace Prisma {
|
|
|
126953
127331
|
productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
|
|
126954
127332
|
}
|
|
126955
127333
|
|
|
127334
|
+
export type CampaignUpsertWithoutExternalAffiliateClickInput = {
|
|
127335
|
+
update: XOR<CampaignUpdateWithoutExternalAffiliateClickInput, CampaignUncheckedUpdateWithoutExternalAffiliateClickInput>
|
|
127336
|
+
create: XOR<CampaignCreateWithoutExternalAffiliateClickInput, CampaignUncheckedCreateWithoutExternalAffiliateClickInput>
|
|
127337
|
+
where?: CampaignWhereInput
|
|
127338
|
+
}
|
|
127339
|
+
|
|
127340
|
+
export type CampaignUpdateToOneWithWhereWithoutExternalAffiliateClickInput = {
|
|
127341
|
+
where?: CampaignWhereInput
|
|
127342
|
+
data: XOR<CampaignUpdateWithoutExternalAffiliateClickInput, CampaignUncheckedUpdateWithoutExternalAffiliateClickInput>
|
|
127343
|
+
}
|
|
127344
|
+
|
|
127345
|
+
export type CampaignUpdateWithoutExternalAffiliateClickInput = {
|
|
127346
|
+
title?: StringFieldUpdateOperationsInput | string
|
|
127347
|
+
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127348
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
127349
|
+
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
127350
|
+
publishDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
127351
|
+
sfSyncDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
127352
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127353
|
+
productDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127354
|
+
prizeDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127355
|
+
strategy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127356
|
+
socialChannel?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127357
|
+
socialChannels?: NullableJsonNullValueInput | InputJsonValue
|
|
127358
|
+
facebookReach?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127359
|
+
facebookEngagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127360
|
+
instagramReach?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127361
|
+
instagramEngagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127362
|
+
youtubeReach?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127363
|
+
youtubeEngagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127364
|
+
twitterReach?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127365
|
+
twitterEngagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127366
|
+
tiktokReach?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127367
|
+
tiktokEngagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127368
|
+
twitchReach?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127369
|
+
twitchEngagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127370
|
+
quantity?: IntFieldUpdateOperationsInput | number
|
|
127371
|
+
holdCost?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127372
|
+
value?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127373
|
+
paidAmount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127374
|
+
minAge?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127375
|
+
maxAge?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127376
|
+
visuals?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127377
|
+
photoTags?: NullableJsonNullValueInput | InputJsonValue
|
|
127378
|
+
hashtags?: NullableJsonNullValueInput | InputJsonValue
|
|
127379
|
+
storyHashtags?: NullableJsonNullValueInput | InputJsonValue
|
|
127380
|
+
storyMentions?: NullableJsonNullValueInput | InputJsonValue
|
|
127381
|
+
caption?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127382
|
+
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127383
|
+
contentFormats?: NullableJsonNullValueInput | InputJsonValue
|
|
127384
|
+
paidCampaign?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
127385
|
+
minPaidAmount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127386
|
+
maxPaidAmount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127387
|
+
paymentType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127388
|
+
monthlyActivatedGoal?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127389
|
+
expectedOptIns?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127390
|
+
goalActivations?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127391
|
+
goalOptIns?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127392
|
+
requiresShipping?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
127393
|
+
disableQualifications?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
127394
|
+
disableActivations?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
127395
|
+
affiliateLinkPath?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127396
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
127397
|
+
steps?: CampaignStepUpdateManyWithoutCampaignNestedInput
|
|
127398
|
+
categories?: CampaignToCategoryUpdateManyWithoutCampaignNestedInput
|
|
127399
|
+
optIns?: OptInUpdateManyWithoutCampaignNestedInput
|
|
127400
|
+
images?: CampaignToImageUpdateManyWithoutCampaignNestedInput
|
|
127401
|
+
variables?: VariableUpdateManyWithoutCampaignNestedInput
|
|
127402
|
+
productLists?: CampaignToProductListUpdateManyWithoutCampaignNestedInput
|
|
127403
|
+
countries?: CampaignToCountryUpdateManyWithoutCampaignNestedInput
|
|
127404
|
+
campaignPins?: CampaignPinUpdateManyWithoutCampaignNestedInput
|
|
127405
|
+
socialPosts?: SocialPostUpdateManyWithoutCampaignNestedInput
|
|
127406
|
+
campaignInvites?: CampaignInviteUpdateManyWithoutCampaignNestedInput
|
|
127407
|
+
campaignToShopifyProducts?: CampaignToShopifyProductUpdateManyWithoutCampaignNestedInput
|
|
127408
|
+
campaignToBrandAffiliateLinks?: CampaignToBrandAffiliateLinkUpdateManyWithoutCampaignNestedInput
|
|
127409
|
+
brand?: BrandUpdateOneRequiredWithoutCampaignsNestedInput
|
|
127410
|
+
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
127411
|
+
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
127412
|
+
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
127413
|
+
}
|
|
127414
|
+
|
|
127415
|
+
export type CampaignUncheckedUpdateWithoutExternalAffiliateClickInput = {
|
|
127416
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
127417
|
+
title?: StringFieldUpdateOperationsInput | string
|
|
127418
|
+
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127419
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
127420
|
+
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
127421
|
+
publishDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
127422
|
+
sfSyncDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
127423
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127424
|
+
productDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127425
|
+
prizeDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127426
|
+
strategy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127427
|
+
socialChannel?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127428
|
+
socialChannels?: NullableJsonNullValueInput | InputJsonValue
|
|
127429
|
+
facebookReach?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127430
|
+
facebookEngagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127431
|
+
instagramReach?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127432
|
+
instagramEngagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127433
|
+
youtubeReach?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127434
|
+
youtubeEngagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127435
|
+
twitterReach?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127436
|
+
twitterEngagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127437
|
+
tiktokReach?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127438
|
+
tiktokEngagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127439
|
+
twitchReach?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127440
|
+
twitchEngagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127441
|
+
quantity?: IntFieldUpdateOperationsInput | number
|
|
127442
|
+
holdCost?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127443
|
+
value?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127444
|
+
paidAmount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127445
|
+
minAge?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127446
|
+
maxAge?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127447
|
+
visuals?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127448
|
+
photoTags?: NullableJsonNullValueInput | InputJsonValue
|
|
127449
|
+
hashtags?: NullableJsonNullValueInput | InputJsonValue
|
|
127450
|
+
storyHashtags?: NullableJsonNullValueInput | InputJsonValue
|
|
127451
|
+
storyMentions?: NullableJsonNullValueInput | InputJsonValue
|
|
127452
|
+
caption?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127453
|
+
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127454
|
+
contentFormats?: NullableJsonNullValueInput | InputJsonValue
|
|
127455
|
+
paidCampaign?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
127456
|
+
minPaidAmount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127457
|
+
maxPaidAmount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127458
|
+
paymentType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127459
|
+
monthlyActivatedGoal?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127460
|
+
expectedOptIns?: NullableIntFieldUpdateOperationsInput | number | null
|
|
127461
|
+
goalActivations?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127462
|
+
goalOptIns?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
127463
|
+
requiresShipping?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
127464
|
+
disableQualifications?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
127465
|
+
disableActivations?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
127466
|
+
affiliateLinkPath?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127467
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
127468
|
+
brandId?: IntFieldUpdateOperationsInput | number
|
|
127469
|
+
steps?: CampaignStepUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127470
|
+
categories?: CampaignToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127471
|
+
optIns?: OptInUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127472
|
+
images?: CampaignToImageUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127473
|
+
variables?: VariableUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127474
|
+
productLists?: CampaignToProductListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127475
|
+
countries?: CampaignToCountryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127476
|
+
campaignPins?: CampaignPinUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127477
|
+
socialPosts?: SocialPostUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127478
|
+
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127479
|
+
campaignToShopifyProducts?: CampaignToShopifyProductUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127480
|
+
campaignToBrandAffiliateLinks?: CampaignToBrandAffiliateLinkUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127481
|
+
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127482
|
+
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127483
|
+
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127484
|
+
}
|
|
127485
|
+
|
|
126956
127486
|
export type AffiliateLinkCreateWithoutBrandAffiliateLinkInput = {
|
|
126957
127487
|
created?: Date | string
|
|
126958
127488
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
@@ -128089,6 +128619,7 @@ export namespace Prisma {
|
|
|
128089
128619
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
128090
128620
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
128091
128621
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
128622
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
128092
128623
|
}
|
|
128093
128624
|
|
|
128094
128625
|
export type CampaignUncheckedCreateWithoutCampaignInvitesInput = {
|
|
@@ -128159,6 +128690,7 @@ export namespace Prisma {
|
|
|
128159
128690
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
128160
128691
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
128161
128692
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
128693
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
128162
128694
|
}
|
|
128163
128695
|
|
|
128164
128696
|
export type CampaignCreateOrConnectWithoutCampaignInvitesInput = {
|
|
@@ -128440,6 +128972,7 @@ export namespace Prisma {
|
|
|
128440
128972
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
128441
128973
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
128442
128974
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
128975
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
128443
128976
|
}
|
|
128444
128977
|
|
|
128445
128978
|
export type CampaignUncheckedUpdateWithoutCampaignInvitesInput = {
|
|
@@ -128510,6 +129043,7 @@ export namespace Prisma {
|
|
|
128510
129043
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
128511
129044
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
128512
129045
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
129046
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
128513
129047
|
}
|
|
128514
129048
|
|
|
128515
129049
|
export type SocialProfileUpsertWithoutCampaignInvitesInput = {
|
|
@@ -128818,6 +129352,7 @@ export namespace Prisma {
|
|
|
128818
129352
|
brand: BrandCreateNestedOneWithoutCampaignsInput
|
|
128819
129353
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
128820
129354
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
129355
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
128821
129356
|
}
|
|
128822
129357
|
|
|
128823
129358
|
export type CampaignUncheckedCreateWithoutCreatorListsInput = {
|
|
@@ -128888,6 +129423,7 @@ export namespace Prisma {
|
|
|
128888
129423
|
campaignToBrandAffiliateLinks?: CampaignToBrandAffiliateLinkUncheckedCreateNestedManyWithoutCampaignInput
|
|
128889
129424
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
128890
129425
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
129426
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
128891
129427
|
}
|
|
128892
129428
|
|
|
128893
129429
|
export type CampaignCreateOrConnectWithoutCreatorListsInput = {
|
|
@@ -129129,6 +129665,7 @@ export namespace Prisma {
|
|
|
129129
129665
|
brand?: BrandUpdateOneRequiredWithoutCampaignsNestedInput
|
|
129130
129666
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
129131
129667
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
129668
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
129132
129669
|
}
|
|
129133
129670
|
|
|
129134
129671
|
export type CampaignUncheckedUpdateWithoutCreatorListsInput = {
|
|
@@ -129199,6 +129736,7 @@ export namespace Prisma {
|
|
|
129199
129736
|
campaignToBrandAffiliateLinks?: CampaignToBrandAffiliateLinkUncheckedUpdateManyWithoutCampaignNestedInput
|
|
129200
129737
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
129201
129738
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
129739
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
129202
129740
|
}
|
|
129203
129741
|
|
|
129204
129742
|
export type SequenceUpsertWithWhereUniqueWithoutCreatorListInput = {
|
|
@@ -130694,6 +131232,7 @@ export namespace Prisma {
|
|
|
130694
131232
|
brand: BrandCreateNestedOneWithoutCampaignsInput
|
|
130695
131233
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
130696
131234
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
131235
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
130697
131236
|
}
|
|
130698
131237
|
|
|
130699
131238
|
export type CampaignUncheckedCreateWithoutOptInViewsInput = {
|
|
@@ -130764,6 +131303,7 @@ export namespace Prisma {
|
|
|
130764
131303
|
campaignToBrandAffiliateLinks?: CampaignToBrandAffiliateLinkUncheckedCreateNestedManyWithoutCampaignInput
|
|
130765
131304
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
130766
131305
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
131306
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
130767
131307
|
}
|
|
130768
131308
|
|
|
130769
131309
|
export type CampaignCreateOrConnectWithoutOptInViewsInput = {
|
|
@@ -130849,6 +131389,7 @@ export namespace Prisma {
|
|
|
130849
131389
|
brand?: BrandUpdateOneRequiredWithoutCampaignsNestedInput
|
|
130850
131390
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
130851
131391
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
131392
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
130852
131393
|
}
|
|
130853
131394
|
|
|
130854
131395
|
export type CampaignUncheckedUpdateWithoutOptInViewsInput = {
|
|
@@ -130919,6 +131460,7 @@ export namespace Prisma {
|
|
|
130919
131460
|
campaignToBrandAffiliateLinks?: CampaignToBrandAffiliateLinkUncheckedUpdateManyWithoutCampaignNestedInput
|
|
130920
131461
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
130921
131462
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
131463
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
130922
131464
|
}
|
|
130923
131465
|
|
|
130924
131466
|
export type UserCreateWithoutRakutenActivityInput = {
|
|
@@ -131684,6 +132226,7 @@ export namespace Prisma {
|
|
|
131684
132226
|
brand: BrandCreateNestedOneWithoutCampaignsInput
|
|
131685
132227
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
131686
132228
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
132229
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
131687
132230
|
}
|
|
131688
132231
|
|
|
131689
132232
|
export type CampaignUncheckedCreateWithoutSequencesInput = {
|
|
@@ -131754,6 +132297,7 @@ export namespace Prisma {
|
|
|
131754
132297
|
campaignToBrandAffiliateLinks?: CampaignToBrandAffiliateLinkUncheckedCreateNestedManyWithoutCampaignInput
|
|
131755
132298
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
131756
132299
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
132300
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
131757
132301
|
}
|
|
131758
132302
|
|
|
131759
132303
|
export type CampaignCreateOrConnectWithoutSequencesInput = {
|
|
@@ -132046,6 +132590,7 @@ export namespace Prisma {
|
|
|
132046
132590
|
brand?: BrandUpdateOneRequiredWithoutCampaignsNestedInput
|
|
132047
132591
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
132048
132592
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
132593
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
132049
132594
|
}
|
|
132050
132595
|
|
|
132051
132596
|
export type CampaignUncheckedUpdateWithoutSequencesInput = {
|
|
@@ -132116,6 +132661,7 @@ export namespace Prisma {
|
|
|
132116
132661
|
campaignToBrandAffiliateLinks?: CampaignToBrandAffiliateLinkUncheckedUpdateManyWithoutCampaignNestedInput
|
|
132117
132662
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
132118
132663
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
132664
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
132119
132665
|
}
|
|
132120
132666
|
|
|
132121
132667
|
export type CreatorListUpsertWithoutSequencesInput = {
|
|
@@ -133435,6 +133981,7 @@ export namespace Prisma {
|
|
|
133435
133981
|
creatorLists?: CreatorListCreateNestedManyWithoutCampaignInput
|
|
133436
133982
|
optInViews?: OptInViewCreateNestedManyWithoutCampaignInput
|
|
133437
133983
|
sequences?: SequenceCreateNestedManyWithoutCampaignInput
|
|
133984
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutCampaignInput
|
|
133438
133985
|
}
|
|
133439
133986
|
|
|
133440
133987
|
export type CampaignUncheckedCreateWithoutCampaignToShopifyProductsInput = {
|
|
@@ -133505,6 +134052,7 @@ export namespace Prisma {
|
|
|
133505
134052
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutCampaignInput
|
|
133506
134053
|
optInViews?: OptInViewUncheckedCreateNestedManyWithoutCampaignInput
|
|
133507
134054
|
sequences?: SequenceUncheckedCreateNestedManyWithoutCampaignInput
|
|
134055
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutCampaignInput
|
|
133508
134056
|
}
|
|
133509
134057
|
|
|
133510
134058
|
export type CampaignCreateOrConnectWithoutCampaignToShopifyProductsInput = {
|
|
@@ -133616,6 +134164,7 @@ export namespace Prisma {
|
|
|
133616
134164
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
133617
134165
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
133618
134166
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
134167
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
133619
134168
|
}
|
|
133620
134169
|
|
|
133621
134170
|
export type CampaignUncheckedUpdateWithoutCampaignToShopifyProductsInput = {
|
|
@@ -133686,6 +134235,7 @@ export namespace Prisma {
|
|
|
133686
134235
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
133687
134236
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
133688
134237
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
134238
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
133689
134239
|
}
|
|
133690
134240
|
|
|
133691
134241
|
export type ShopifyProductUpsertWithoutCampaignToShopifyProductsInput = {
|
|
@@ -134860,6 +135410,7 @@ export namespace Prisma {
|
|
|
134860
135410
|
creatorLists?: CreatorListUpdateManyWithoutCampaignNestedInput
|
|
134861
135411
|
optInViews?: OptInViewUpdateManyWithoutCampaignNestedInput
|
|
134862
135412
|
sequences?: SequenceUpdateManyWithoutCampaignNestedInput
|
|
135413
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutCampaignNestedInput
|
|
134863
135414
|
}
|
|
134864
135415
|
|
|
134865
135416
|
export type CampaignUncheckedUpdateWithoutBrandInput = {
|
|
@@ -134930,6 +135481,7 @@ export namespace Prisma {
|
|
|
134930
135481
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutCampaignNestedInput
|
|
134931
135482
|
optInViews?: OptInViewUncheckedUpdateManyWithoutCampaignNestedInput
|
|
134932
135483
|
sequences?: SequenceUncheckedUpdateManyWithoutCampaignNestedInput
|
|
135484
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignNestedInput
|
|
134933
135485
|
}
|
|
134934
135486
|
|
|
134935
135487
|
export type CampaignUncheckedUpdateManyWithoutBrandInput = {
|
|
@@ -135782,6 +136334,17 @@ export namespace Prisma {
|
|
|
135782
136334
|
enabled?: boolean
|
|
135783
136335
|
}
|
|
135784
136336
|
|
|
136337
|
+
export type ExternalAffiliateClickCreateManyCampaignInput = {
|
|
136338
|
+
id?: number
|
|
136339
|
+
program: string
|
|
136340
|
+
created?: Date | string
|
|
136341
|
+
ipv4?: string | null
|
|
136342
|
+
ipv6?: string | null
|
|
136343
|
+
linkUrl: string
|
|
136344
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
136345
|
+
optInId: number
|
|
136346
|
+
}
|
|
136347
|
+
|
|
135785
136348
|
export type CampaignStepUpdateWithoutCampaignInput = {
|
|
135786
136349
|
placement?: IntFieldUpdateOperationsInput | number
|
|
135787
136350
|
stepSettings?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -136238,6 +136801,38 @@ export namespace Prisma {
|
|
|
136238
136801
|
enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
136239
136802
|
}
|
|
136240
136803
|
|
|
136804
|
+
export type ExternalAffiliateClickUpdateWithoutCampaignInput = {
|
|
136805
|
+
program?: StringFieldUpdateOperationsInput | string
|
|
136806
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
136807
|
+
ipv4?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136808
|
+
ipv6?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136809
|
+
linkUrl?: StringFieldUpdateOperationsInput | string
|
|
136810
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
136811
|
+
optin?: OptInUpdateOneRequiredWithoutExternalAffiliateClickNestedInput
|
|
136812
|
+
}
|
|
136813
|
+
|
|
136814
|
+
export type ExternalAffiliateClickUncheckedUpdateWithoutCampaignInput = {
|
|
136815
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
136816
|
+
program?: StringFieldUpdateOperationsInput | string
|
|
136817
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
136818
|
+
ipv4?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136819
|
+
ipv6?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136820
|
+
linkUrl?: StringFieldUpdateOperationsInput | string
|
|
136821
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
136822
|
+
optInId?: IntFieldUpdateOperationsInput | number
|
|
136823
|
+
}
|
|
136824
|
+
|
|
136825
|
+
export type ExternalAffiliateClickUncheckedUpdateManyWithoutCampaignInput = {
|
|
136826
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
136827
|
+
program?: StringFieldUpdateOperationsInput | string
|
|
136828
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
136829
|
+
ipv4?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136830
|
+
ipv6?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136831
|
+
linkUrl?: StringFieldUpdateOperationsInput | string
|
|
136832
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
136833
|
+
optInId?: IntFieldUpdateOperationsInput | number
|
|
136834
|
+
}
|
|
136835
|
+
|
|
136241
136836
|
export type ImageCreateManyCampaignImageInput = {
|
|
136242
136837
|
id?: number
|
|
136243
136838
|
url: string
|
|
@@ -136682,6 +137277,7 @@ export namespace Prisma {
|
|
|
136682
137277
|
ipv6?: string | null
|
|
136683
137278
|
linkUrl: string
|
|
136684
137279
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
137280
|
+
campaignId: number
|
|
136685
137281
|
}
|
|
136686
137282
|
|
|
136687
137283
|
export type OptInVariableUpdateWithoutOptInInput = {
|
|
@@ -136832,6 +137428,7 @@ export namespace Prisma {
|
|
|
136832
137428
|
ipv6?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136833
137429
|
linkUrl?: StringFieldUpdateOperationsInput | string
|
|
136834
137430
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
137431
|
+
campaign?: CampaignUpdateOneRequiredWithoutExternalAffiliateClickNestedInput
|
|
136835
137432
|
}
|
|
136836
137433
|
|
|
136837
137434
|
export type ExternalAffiliateClickUncheckedUpdateWithoutOptinInput = {
|
|
@@ -136842,6 +137439,7 @@ export namespace Prisma {
|
|
|
136842
137439
|
ipv6?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136843
137440
|
linkUrl?: StringFieldUpdateOperationsInput | string
|
|
136844
137441
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
137442
|
+
campaignId?: IntFieldUpdateOperationsInput | number
|
|
136845
137443
|
}
|
|
136846
137444
|
|
|
136847
137445
|
export type ExternalAffiliateClickUncheckedUpdateManyWithoutOptinInput = {
|
|
@@ -136852,6 +137450,7 @@ export namespace Prisma {
|
|
|
136852
137450
|
ipv6?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136853
137451
|
linkUrl?: StringFieldUpdateOperationsInput | string
|
|
136854
137452
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
137453
|
+
campaignId?: IntFieldUpdateOperationsInput | number
|
|
136855
137454
|
}
|
|
136856
137455
|
|
|
136857
137456
|
export type ListToSocialPostCreateManySocialPostInput = {
|