@creator.co/creatorco-prisma-client 1.0.13 → 1.0.14
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 +20 -4
- package/index-browser.js +16 -0
- package/index.d.ts +2437 -215
- package/index.js +20 -4
- package/package.json +1 -1
- package/schema.prisma +16 -0
package/index.d.ts
CHANGED
|
@@ -278,6 +278,11 @@ export type OptInView = $Result.DefaultSelection<Prisma.$OptInViewPayload>
|
|
|
278
278
|
*
|
|
279
279
|
*/
|
|
280
280
|
export type RakutenActivity = $Result.DefaultSelection<Prisma.$RakutenActivityPayload>
|
|
281
|
+
/**
|
|
282
|
+
* Model ImpactRadiusEvent
|
|
283
|
+
*
|
|
284
|
+
*/
|
|
285
|
+
export type ImpactRadiusEvent = $Result.DefaultSelection<Prisma.$ImpactRadiusEventPayload>
|
|
281
286
|
/**
|
|
282
287
|
* Model CreatorSearchFilter
|
|
283
288
|
*
|
|
@@ -961,6 +966,16 @@ export class PrismaClient<
|
|
|
961
966
|
*/
|
|
962
967
|
get rakutenActivity(): Prisma.RakutenActivityDelegate<ExtArgs>;
|
|
963
968
|
|
|
969
|
+
/**
|
|
970
|
+
* `prisma.impactRadiusEvent`: Exposes CRUD operations for the **ImpactRadiusEvent** model.
|
|
971
|
+
* Example usage:
|
|
972
|
+
* ```ts
|
|
973
|
+
* // Fetch zero or more ImpactRadiusEvents
|
|
974
|
+
* const impactRadiusEvents = await prisma.impactRadiusEvent.findMany()
|
|
975
|
+
* ```
|
|
976
|
+
*/
|
|
977
|
+
get impactRadiusEvent(): Prisma.ImpactRadiusEventDelegate<ExtArgs>;
|
|
978
|
+
|
|
964
979
|
/**
|
|
965
980
|
* `prisma.creatorSearchFilter`: Exposes CRUD operations for the **CreatorSearchFilter** model.
|
|
966
981
|
* Example usage:
|
|
@@ -1543,6 +1558,7 @@ export namespace Prisma {
|
|
|
1543
1558
|
ListToSocialPost: 'ListToSocialPost',
|
|
1544
1559
|
OptInView: 'OptInView',
|
|
1545
1560
|
RakutenActivity: 'RakutenActivity',
|
|
1561
|
+
ImpactRadiusEvent: 'ImpactRadiusEvent',
|
|
1546
1562
|
CreatorSearchFilter: 'CreatorSearchFilter',
|
|
1547
1563
|
Sequence: 'Sequence',
|
|
1548
1564
|
SequenceStep: 'SequenceStep',
|
|
@@ -1565,7 +1581,7 @@ export namespace Prisma {
|
|
|
1565
1581
|
|
|
1566
1582
|
export type TypeMap<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
1567
1583
|
meta: {
|
|
1568
|
-
modelProps: 'user' | 'log' | 'creatorProfile' | 'instagramProfile' | 'tiktokProfile' | 'youtubeProfile' | 'twitchProfile' | 'facebookProfile' | 'twitterProfile' | 'brandUserProfile' | 'brand' | 'searchContacts' | 'reportCredits' | 'brandToImage' | 'brandToCategory' | 'creatorToCategory' | 'chat' | 'message' | 'campaign' | 'campaignPin' | 'campaignToImage' | 'campaignToCategory' | 'campaignToCountry' | 'variable' | 'variableOption' | 'step' | 'campaignStep' | 'optInStep' | 'category' | 'optIn' | 'optInVariable' | 'socialPost' | 'socialPostTag' | 'image' | 'brandImage' | 'country' | 'state' | 'paymentTransaction' | 'brandAffiliateLink' | 'affiliateLink' | 'affiliateClick' | 'affiliateEvent' | 'savedFile' | 'campaignInvite' | 'creatorList' | 'creatorListItem' | 'socialProfile' | 'messageTemplate' | 'emailTemplate' | 'socialListeningList' | 'listToSocialPost' | 'optInView' | 'rakutenActivity' | 'creatorSearchFilter' | 'sequence' | 'sequenceStep' | 'sequenceOutboundEmail' | 'sequenceInboundEmail' | 'sequenceImapCheckpoint'
|
|
1584
|
+
modelProps: 'user' | 'log' | 'creatorProfile' | 'instagramProfile' | 'tiktokProfile' | 'youtubeProfile' | 'twitchProfile' | 'facebookProfile' | 'twitterProfile' | 'brandUserProfile' | 'brand' | 'searchContacts' | 'reportCredits' | 'brandToImage' | 'brandToCategory' | 'creatorToCategory' | 'chat' | 'message' | 'campaign' | 'campaignPin' | 'campaignToImage' | 'campaignToCategory' | 'campaignToCountry' | 'variable' | 'variableOption' | 'step' | 'campaignStep' | 'optInStep' | 'category' | 'optIn' | 'optInVariable' | 'socialPost' | 'socialPostTag' | 'image' | 'brandImage' | 'country' | 'state' | 'paymentTransaction' | 'brandAffiliateLink' | 'affiliateLink' | 'affiliateClick' | 'affiliateEvent' | 'savedFile' | 'campaignInvite' | 'creatorList' | 'creatorListItem' | 'socialProfile' | 'messageTemplate' | 'emailTemplate' | 'socialListeningList' | 'listToSocialPost' | 'optInView' | 'rakutenActivity' | 'impactRadiusEvent' | 'creatorSearchFilter' | 'sequence' | 'sequenceStep' | 'sequenceOutboundEmail' | 'sequenceInboundEmail' | 'sequenceImapCheckpoint'
|
|
1569
1585
|
txIsolationLevel: Prisma.TransactionIsolationLevel
|
|
1570
1586
|
},
|
|
1571
1587
|
model: {
|
|
@@ -5067,6 +5083,72 @@ export namespace Prisma {
|
|
|
5067
5083
|
}
|
|
5068
5084
|
}
|
|
5069
5085
|
}
|
|
5086
|
+
ImpactRadiusEvent: {
|
|
5087
|
+
payload: Prisma.$ImpactRadiusEventPayload<ExtArgs>
|
|
5088
|
+
fields: Prisma.ImpactRadiusEventFieldRefs
|
|
5089
|
+
operations: {
|
|
5090
|
+
findUnique: {
|
|
5091
|
+
args: Prisma.ImpactRadiusEventFindUniqueArgs<ExtArgs>,
|
|
5092
|
+
result: $Utils.PayloadToResult<Prisma.$ImpactRadiusEventPayload> | null
|
|
5093
|
+
}
|
|
5094
|
+
findUniqueOrThrow: {
|
|
5095
|
+
args: Prisma.ImpactRadiusEventFindUniqueOrThrowArgs<ExtArgs>,
|
|
5096
|
+
result: $Utils.PayloadToResult<Prisma.$ImpactRadiusEventPayload>
|
|
5097
|
+
}
|
|
5098
|
+
findFirst: {
|
|
5099
|
+
args: Prisma.ImpactRadiusEventFindFirstArgs<ExtArgs>,
|
|
5100
|
+
result: $Utils.PayloadToResult<Prisma.$ImpactRadiusEventPayload> | null
|
|
5101
|
+
}
|
|
5102
|
+
findFirstOrThrow: {
|
|
5103
|
+
args: Prisma.ImpactRadiusEventFindFirstOrThrowArgs<ExtArgs>,
|
|
5104
|
+
result: $Utils.PayloadToResult<Prisma.$ImpactRadiusEventPayload>
|
|
5105
|
+
}
|
|
5106
|
+
findMany: {
|
|
5107
|
+
args: Prisma.ImpactRadiusEventFindManyArgs<ExtArgs>,
|
|
5108
|
+
result: $Utils.PayloadToResult<Prisma.$ImpactRadiusEventPayload>[]
|
|
5109
|
+
}
|
|
5110
|
+
create: {
|
|
5111
|
+
args: Prisma.ImpactRadiusEventCreateArgs<ExtArgs>,
|
|
5112
|
+
result: $Utils.PayloadToResult<Prisma.$ImpactRadiusEventPayload>
|
|
5113
|
+
}
|
|
5114
|
+
createMany: {
|
|
5115
|
+
args: Prisma.ImpactRadiusEventCreateManyArgs<ExtArgs>,
|
|
5116
|
+
result: Prisma.BatchPayload
|
|
5117
|
+
}
|
|
5118
|
+
delete: {
|
|
5119
|
+
args: Prisma.ImpactRadiusEventDeleteArgs<ExtArgs>,
|
|
5120
|
+
result: $Utils.PayloadToResult<Prisma.$ImpactRadiusEventPayload>
|
|
5121
|
+
}
|
|
5122
|
+
update: {
|
|
5123
|
+
args: Prisma.ImpactRadiusEventUpdateArgs<ExtArgs>,
|
|
5124
|
+
result: $Utils.PayloadToResult<Prisma.$ImpactRadiusEventPayload>
|
|
5125
|
+
}
|
|
5126
|
+
deleteMany: {
|
|
5127
|
+
args: Prisma.ImpactRadiusEventDeleteManyArgs<ExtArgs>,
|
|
5128
|
+
result: Prisma.BatchPayload
|
|
5129
|
+
}
|
|
5130
|
+
updateMany: {
|
|
5131
|
+
args: Prisma.ImpactRadiusEventUpdateManyArgs<ExtArgs>,
|
|
5132
|
+
result: Prisma.BatchPayload
|
|
5133
|
+
}
|
|
5134
|
+
upsert: {
|
|
5135
|
+
args: Prisma.ImpactRadiusEventUpsertArgs<ExtArgs>,
|
|
5136
|
+
result: $Utils.PayloadToResult<Prisma.$ImpactRadiusEventPayload>
|
|
5137
|
+
}
|
|
5138
|
+
aggregate: {
|
|
5139
|
+
args: Prisma.ImpactRadiusEventAggregateArgs<ExtArgs>,
|
|
5140
|
+
result: $Utils.Optional<AggregateImpactRadiusEvent>
|
|
5141
|
+
}
|
|
5142
|
+
groupBy: {
|
|
5143
|
+
args: Prisma.ImpactRadiusEventGroupByArgs<ExtArgs>,
|
|
5144
|
+
result: $Utils.Optional<ImpactRadiusEventGroupByOutputType>[]
|
|
5145
|
+
}
|
|
5146
|
+
count: {
|
|
5147
|
+
args: Prisma.ImpactRadiusEventCountArgs<ExtArgs>,
|
|
5148
|
+
result: $Utils.Optional<ImpactRadiusEventCountAggregateOutputType> | number
|
|
5149
|
+
}
|
|
5150
|
+
}
|
|
5151
|
+
}
|
|
5070
5152
|
CreatorSearchFilter: {
|
|
5071
5153
|
payload: Prisma.$CreatorSearchFilterPayload<ExtArgs>
|
|
5072
5154
|
fields: Prisma.CreatorSearchFilterFieldRefs
|
|
@@ -5624,6 +5706,7 @@ export namespace Prisma {
|
|
|
5624
5706
|
campaignPins: number
|
|
5625
5707
|
socialProfiles: number
|
|
5626
5708
|
rakutenActivity: number
|
|
5709
|
+
impactRadiusEvents: number
|
|
5627
5710
|
}
|
|
5628
5711
|
|
|
5629
5712
|
export type UserCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -5639,6 +5722,7 @@ export namespace Prisma {
|
|
|
5639
5722
|
campaignPins?: boolean | UserCountOutputTypeCountCampaignPinsArgs
|
|
5640
5723
|
socialProfiles?: boolean | UserCountOutputTypeCountSocialProfilesArgs
|
|
5641
5724
|
rakutenActivity?: boolean | UserCountOutputTypeCountRakutenActivityArgs
|
|
5725
|
+
impactRadiusEvents?: boolean | UserCountOutputTypeCountImpactRadiusEventsArgs
|
|
5642
5726
|
}
|
|
5643
5727
|
|
|
5644
5728
|
// Custom InputTypes
|
|
@@ -5750,6 +5834,14 @@ export namespace Prisma {
|
|
|
5750
5834
|
}
|
|
5751
5835
|
|
|
5752
5836
|
|
|
5837
|
+
/**
|
|
5838
|
+
* UserCountOutputType without action
|
|
5839
|
+
*/
|
|
5840
|
+
export type UserCountOutputTypeCountImpactRadiusEventsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5841
|
+
where?: ImpactRadiusEventWhereInput
|
|
5842
|
+
}
|
|
5843
|
+
|
|
5844
|
+
|
|
5753
5845
|
|
|
5754
5846
|
/**
|
|
5755
5847
|
* Count Type CreatorProfileCountOutputType
|
|
@@ -5806,6 +5898,7 @@ export namespace Prisma {
|
|
|
5806
5898
|
images: number
|
|
5807
5899
|
creatorsearchfilter: number
|
|
5808
5900
|
sequences: number
|
|
5901
|
+
impactRadiusEvents: number
|
|
5809
5902
|
childBrands: number
|
|
5810
5903
|
}
|
|
5811
5904
|
|
|
@@ -5826,6 +5919,7 @@ export namespace Prisma {
|
|
|
5826
5919
|
images?: boolean | BrandCountOutputTypeCountImagesArgs
|
|
5827
5920
|
creatorsearchfilter?: boolean | BrandCountOutputTypeCountCreatorsearchfilterArgs
|
|
5828
5921
|
sequences?: boolean | BrandCountOutputTypeCountSequencesArgs
|
|
5922
|
+
impactRadiusEvents?: boolean | BrandCountOutputTypeCountImpactRadiusEventsArgs
|
|
5829
5923
|
childBrands?: boolean | BrandCountOutputTypeCountChildBrandsArgs
|
|
5830
5924
|
}
|
|
5831
5925
|
|
|
@@ -5970,6 +6064,14 @@ export namespace Prisma {
|
|
|
5970
6064
|
}
|
|
5971
6065
|
|
|
5972
6066
|
|
|
6067
|
+
/**
|
|
6068
|
+
* BrandCountOutputType without action
|
|
6069
|
+
*/
|
|
6070
|
+
export type BrandCountOutputTypeCountImpactRadiusEventsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6071
|
+
where?: ImpactRadiusEventWhereInput
|
|
6072
|
+
}
|
|
6073
|
+
|
|
6074
|
+
|
|
5973
6075
|
/**
|
|
5974
6076
|
* BrandCountOutputType without action
|
|
5975
6077
|
*/
|
|
@@ -7325,6 +7427,7 @@ export namespace Prisma {
|
|
|
7325
7427
|
campaignPins?: boolean | User$campaignPinsArgs<ExtArgs>
|
|
7326
7428
|
socialProfiles?: boolean | User$socialProfilesArgs<ExtArgs>
|
|
7327
7429
|
rakutenActivity?: boolean | User$rakutenActivityArgs<ExtArgs>
|
|
7430
|
+
impactRadiusEvents?: boolean | User$impactRadiusEventsArgs<ExtArgs>
|
|
7328
7431
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
7329
7432
|
}, ExtArgs["result"]["user"]>
|
|
7330
7433
|
|
|
@@ -7371,6 +7474,7 @@ export namespace Prisma {
|
|
|
7371
7474
|
campaignPins?: boolean | User$campaignPinsArgs<ExtArgs>
|
|
7372
7475
|
socialProfiles?: boolean | User$socialProfilesArgs<ExtArgs>
|
|
7373
7476
|
rakutenActivity?: boolean | User$rakutenActivityArgs<ExtArgs>
|
|
7477
|
+
impactRadiusEvents?: boolean | User$impactRadiusEventsArgs<ExtArgs>
|
|
7374
7478
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
7375
7479
|
}
|
|
7376
7480
|
|
|
@@ -7398,6 +7502,7 @@ export namespace Prisma {
|
|
|
7398
7502
|
campaignPins: Prisma.$CampaignPinPayload<ExtArgs>[]
|
|
7399
7503
|
socialProfiles: Prisma.$SocialProfilePayload<ExtArgs>[]
|
|
7400
7504
|
rakutenActivity: Prisma.$RakutenActivityPayload<ExtArgs>[]
|
|
7505
|
+
impactRadiusEvents: Prisma.$ImpactRadiusEventPayload<ExtArgs>[]
|
|
7401
7506
|
}
|
|
7402
7507
|
scalars: $Extensions.GetPayloadResult<{
|
|
7403
7508
|
id: number
|
|
@@ -7824,6 +7929,8 @@ export namespace Prisma {
|
|
|
7824
7929
|
|
|
7825
7930
|
rakutenActivity<T extends User$rakutenActivityArgs<ExtArgs> = {}>(args?: Subset<T, User$rakutenActivityArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$RakutenActivityPayload<ExtArgs>, T, 'findMany'> | Null>;
|
|
7826
7931
|
|
|
7932
|
+
impactRadiusEvents<T extends User$impactRadiusEventsArgs<ExtArgs> = {}>(args?: Subset<T, User$impactRadiusEventsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ImpactRadiusEventPayload<ExtArgs>, T, 'findMany'> | Null>;
|
|
7933
|
+
|
|
7827
7934
|
/**
|
|
7828
7935
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
7829
7936
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -8562,6 +8669,27 @@ export namespace Prisma {
|
|
|
8562
8669
|
}
|
|
8563
8670
|
|
|
8564
8671
|
|
|
8672
|
+
/**
|
|
8673
|
+
* User.impactRadiusEvents
|
|
8674
|
+
*/
|
|
8675
|
+
export type User$impactRadiusEventsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
8676
|
+
/**
|
|
8677
|
+
* Select specific fields to fetch from the ImpactRadiusEvent
|
|
8678
|
+
*/
|
|
8679
|
+
select?: ImpactRadiusEventSelect<ExtArgs> | null
|
|
8680
|
+
/**
|
|
8681
|
+
* Choose, which related nodes to fetch as well.
|
|
8682
|
+
*/
|
|
8683
|
+
include?: ImpactRadiusEventInclude<ExtArgs> | null
|
|
8684
|
+
where?: ImpactRadiusEventWhereInput
|
|
8685
|
+
orderBy?: ImpactRadiusEventOrderByWithRelationAndSearchRelevanceInput | ImpactRadiusEventOrderByWithRelationAndSearchRelevanceInput[]
|
|
8686
|
+
cursor?: ImpactRadiusEventWhereUniqueInput
|
|
8687
|
+
take?: number
|
|
8688
|
+
skip?: number
|
|
8689
|
+
distinct?: ImpactRadiusEventScalarFieldEnum | ImpactRadiusEventScalarFieldEnum[]
|
|
8690
|
+
}
|
|
8691
|
+
|
|
8692
|
+
|
|
8565
8693
|
/**
|
|
8566
8694
|
* User without action
|
|
8567
8695
|
*/
|
|
@@ -18715,6 +18843,7 @@ export namespace Prisma {
|
|
|
18715
18843
|
images?: boolean | Brand$imagesArgs<ExtArgs>
|
|
18716
18844
|
creatorsearchfilter?: boolean | Brand$creatorsearchfilterArgs<ExtArgs>
|
|
18717
18845
|
sequences?: boolean | Brand$sequencesArgs<ExtArgs>
|
|
18846
|
+
impactRadiusEvents?: boolean | Brand$impactRadiusEventsArgs<ExtArgs>
|
|
18718
18847
|
parentBrand?: boolean | Brand$parentBrandArgs<ExtArgs>
|
|
18719
18848
|
childBrands?: boolean | Brand$childBrandsArgs<ExtArgs>
|
|
18720
18849
|
_count?: boolean | BrandCountOutputTypeDefaultArgs<ExtArgs>
|
|
@@ -18757,6 +18886,7 @@ export namespace Prisma {
|
|
|
18757
18886
|
images?: boolean | Brand$imagesArgs<ExtArgs>
|
|
18758
18887
|
creatorsearchfilter?: boolean | Brand$creatorsearchfilterArgs<ExtArgs>
|
|
18759
18888
|
sequences?: boolean | Brand$sequencesArgs<ExtArgs>
|
|
18889
|
+
impactRadiusEvents?: boolean | Brand$impactRadiusEventsArgs<ExtArgs>
|
|
18760
18890
|
parentBrand?: boolean | Brand$parentBrandArgs<ExtArgs>
|
|
18761
18891
|
childBrands?: boolean | Brand$childBrandsArgs<ExtArgs>
|
|
18762
18892
|
_count?: boolean | BrandCountOutputTypeDefaultArgs<ExtArgs>
|
|
@@ -18786,6 +18916,7 @@ export namespace Prisma {
|
|
|
18786
18916
|
images: Prisma.$BrandToImagePayload<ExtArgs>[]
|
|
18787
18917
|
creatorsearchfilter: Prisma.$CreatorSearchFilterPayload<ExtArgs>[]
|
|
18788
18918
|
sequences: Prisma.$SequencePayload<ExtArgs>[]
|
|
18919
|
+
impactRadiusEvents: Prisma.$ImpactRadiusEventPayload<ExtArgs>[]
|
|
18789
18920
|
parentBrand: Prisma.$BrandPayload<ExtArgs> | null
|
|
18790
18921
|
childBrands: Prisma.$BrandPayload<ExtArgs>[]
|
|
18791
18922
|
}
|
|
@@ -19208,6 +19339,8 @@ export namespace Prisma {
|
|
|
19208
19339
|
|
|
19209
19340
|
sequences<T extends Brand$sequencesArgs<ExtArgs> = {}>(args?: Subset<T, Brand$sequencesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$SequencePayload<ExtArgs>, T, 'findMany'> | Null>;
|
|
19210
19341
|
|
|
19342
|
+
impactRadiusEvents<T extends Brand$impactRadiusEventsArgs<ExtArgs> = {}>(args?: Subset<T, Brand$impactRadiusEventsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ImpactRadiusEventPayload<ExtArgs>, T, 'findMany'> | Null>;
|
|
19343
|
+
|
|
19211
19344
|
parentBrand<T extends Brand$parentBrandArgs<ExtArgs> = {}>(args?: Subset<T, Brand$parentBrandArgs<ExtArgs>>): Prisma__BrandClient<$Result.GetResult<Prisma.$BrandPayload<ExtArgs>, T, 'findUniqueOrThrow'> | null, null, ExtArgs>;
|
|
19212
19345
|
|
|
19213
19346
|
childBrands<T extends Brand$childBrandsArgs<ExtArgs> = {}>(args?: Subset<T, Brand$childBrandsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$BrandPayload<ExtArgs>, T, 'findMany'> | Null>;
|
|
@@ -19964,6 +20097,27 @@ export namespace Prisma {
|
|
|
19964
20097
|
}
|
|
19965
20098
|
|
|
19966
20099
|
|
|
20100
|
+
/**
|
|
20101
|
+
* Brand.impactRadiusEvents
|
|
20102
|
+
*/
|
|
20103
|
+
export type Brand$impactRadiusEventsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
20104
|
+
/**
|
|
20105
|
+
* Select specific fields to fetch from the ImpactRadiusEvent
|
|
20106
|
+
*/
|
|
20107
|
+
select?: ImpactRadiusEventSelect<ExtArgs> | null
|
|
20108
|
+
/**
|
|
20109
|
+
* Choose, which related nodes to fetch as well.
|
|
20110
|
+
*/
|
|
20111
|
+
include?: ImpactRadiusEventInclude<ExtArgs> | null
|
|
20112
|
+
where?: ImpactRadiusEventWhereInput
|
|
20113
|
+
orderBy?: ImpactRadiusEventOrderByWithRelationAndSearchRelevanceInput | ImpactRadiusEventOrderByWithRelationAndSearchRelevanceInput[]
|
|
20114
|
+
cursor?: ImpactRadiusEventWhereUniqueInput
|
|
20115
|
+
take?: number
|
|
20116
|
+
skip?: number
|
|
20117
|
+
distinct?: ImpactRadiusEventScalarFieldEnum | ImpactRadiusEventScalarFieldEnum[]
|
|
20118
|
+
}
|
|
20119
|
+
|
|
20120
|
+
|
|
19967
20121
|
/**
|
|
19968
20122
|
* Brand.parentBrand
|
|
19969
20123
|
*/
|
|
@@ -63412,394 +63566,429 @@ export namespace Prisma {
|
|
|
63412
63566
|
|
|
63413
63567
|
|
|
63414
63568
|
/**
|
|
63415
|
-
* Model
|
|
63569
|
+
* Model ImpactRadiusEvent
|
|
63416
63570
|
*/
|
|
63417
63571
|
|
|
63418
|
-
export type
|
|
63419
|
-
_count:
|
|
63420
|
-
_avg:
|
|
63421
|
-
_sum:
|
|
63422
|
-
_min:
|
|
63423
|
-
_max:
|
|
63572
|
+
export type AggregateImpactRadiusEvent = {
|
|
63573
|
+
_count: ImpactRadiusEventCountAggregateOutputType | null
|
|
63574
|
+
_avg: ImpactRadiusEventAvgAggregateOutputType | null
|
|
63575
|
+
_sum: ImpactRadiusEventSumAggregateOutputType | null
|
|
63576
|
+
_min: ImpactRadiusEventMinAggregateOutputType | null
|
|
63577
|
+
_max: ImpactRadiusEventMaxAggregateOutputType | null
|
|
63424
63578
|
}
|
|
63425
63579
|
|
|
63426
|
-
export type
|
|
63580
|
+
export type ImpactRadiusEventAvgAggregateOutputType = {
|
|
63427
63581
|
id: number | null
|
|
63582
|
+
amount: number | null
|
|
63583
|
+
commission: number | null
|
|
63584
|
+
userId: number | null
|
|
63428
63585
|
brandId: number | null
|
|
63429
63586
|
}
|
|
63430
63587
|
|
|
63431
|
-
export type
|
|
63588
|
+
export type ImpactRadiusEventSumAggregateOutputType = {
|
|
63432
63589
|
id: number | null
|
|
63590
|
+
amount: number | null
|
|
63591
|
+
commission: number | null
|
|
63592
|
+
userId: number | null
|
|
63433
63593
|
brandId: number | null
|
|
63434
63594
|
}
|
|
63435
63595
|
|
|
63436
|
-
export type
|
|
63596
|
+
export type ImpactRadiusEventMinAggregateOutputType = {
|
|
63437
63597
|
id: number | null
|
|
63598
|
+
type: string | null
|
|
63599
|
+
created: Date | null
|
|
63600
|
+
amount: number | null
|
|
63601
|
+
commission: number | null
|
|
63602
|
+
userId: number | null
|
|
63438
63603
|
brandId: number | null
|
|
63439
|
-
title: string | null
|
|
63440
|
-
createdAt: Date | null
|
|
63441
|
-
updatedAt: Date | null
|
|
63442
63604
|
}
|
|
63443
63605
|
|
|
63444
|
-
export type
|
|
63606
|
+
export type ImpactRadiusEventMaxAggregateOutputType = {
|
|
63445
63607
|
id: number | null
|
|
63608
|
+
type: string | null
|
|
63609
|
+
created: Date | null
|
|
63610
|
+
amount: number | null
|
|
63611
|
+
commission: number | null
|
|
63612
|
+
userId: number | null
|
|
63446
63613
|
brandId: number | null
|
|
63447
|
-
title: string | null
|
|
63448
|
-
createdAt: Date | null
|
|
63449
|
-
updatedAt: Date | null
|
|
63450
63614
|
}
|
|
63451
63615
|
|
|
63452
|
-
export type
|
|
63616
|
+
export type ImpactRadiusEventCountAggregateOutputType = {
|
|
63453
63617
|
id: number
|
|
63618
|
+
type: number
|
|
63619
|
+
created: number
|
|
63620
|
+
amount: number
|
|
63621
|
+
commission: number
|
|
63622
|
+
metaData: number
|
|
63623
|
+
userId: number
|
|
63454
63624
|
brandId: number
|
|
63455
|
-
title: number
|
|
63456
|
-
filters: number
|
|
63457
|
-
createdAt: number
|
|
63458
|
-
updatedAt: number
|
|
63459
63625
|
_all: number
|
|
63460
63626
|
}
|
|
63461
63627
|
|
|
63462
63628
|
|
|
63463
|
-
export type
|
|
63629
|
+
export type ImpactRadiusEventAvgAggregateInputType = {
|
|
63464
63630
|
id?: true
|
|
63631
|
+
amount?: true
|
|
63632
|
+
commission?: true
|
|
63633
|
+
userId?: true
|
|
63465
63634
|
brandId?: true
|
|
63466
63635
|
}
|
|
63467
63636
|
|
|
63468
|
-
export type
|
|
63637
|
+
export type ImpactRadiusEventSumAggregateInputType = {
|
|
63469
63638
|
id?: true
|
|
63639
|
+
amount?: true
|
|
63640
|
+
commission?: true
|
|
63641
|
+
userId?: true
|
|
63470
63642
|
brandId?: true
|
|
63471
63643
|
}
|
|
63472
63644
|
|
|
63473
|
-
export type
|
|
63645
|
+
export type ImpactRadiusEventMinAggregateInputType = {
|
|
63474
63646
|
id?: true
|
|
63647
|
+
type?: true
|
|
63648
|
+
created?: true
|
|
63649
|
+
amount?: true
|
|
63650
|
+
commission?: true
|
|
63651
|
+
userId?: true
|
|
63475
63652
|
brandId?: true
|
|
63476
|
-
title?: true
|
|
63477
|
-
createdAt?: true
|
|
63478
|
-
updatedAt?: true
|
|
63479
63653
|
}
|
|
63480
63654
|
|
|
63481
|
-
export type
|
|
63655
|
+
export type ImpactRadiusEventMaxAggregateInputType = {
|
|
63482
63656
|
id?: true
|
|
63657
|
+
type?: true
|
|
63658
|
+
created?: true
|
|
63659
|
+
amount?: true
|
|
63660
|
+
commission?: true
|
|
63661
|
+
userId?: true
|
|
63483
63662
|
brandId?: true
|
|
63484
|
-
title?: true
|
|
63485
|
-
createdAt?: true
|
|
63486
|
-
updatedAt?: true
|
|
63487
63663
|
}
|
|
63488
63664
|
|
|
63489
|
-
export type
|
|
63665
|
+
export type ImpactRadiusEventCountAggregateInputType = {
|
|
63490
63666
|
id?: true
|
|
63667
|
+
type?: true
|
|
63668
|
+
created?: true
|
|
63669
|
+
amount?: true
|
|
63670
|
+
commission?: true
|
|
63671
|
+
metaData?: true
|
|
63672
|
+
userId?: true
|
|
63491
63673
|
brandId?: true
|
|
63492
|
-
title?: true
|
|
63493
|
-
filters?: true
|
|
63494
|
-
createdAt?: true
|
|
63495
|
-
updatedAt?: true
|
|
63496
63674
|
_all?: true
|
|
63497
63675
|
}
|
|
63498
63676
|
|
|
63499
|
-
export type
|
|
63677
|
+
export type ImpactRadiusEventAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
63500
63678
|
/**
|
|
63501
|
-
* Filter which
|
|
63679
|
+
* Filter which ImpactRadiusEvent to aggregate.
|
|
63502
63680
|
*/
|
|
63503
|
-
where?:
|
|
63681
|
+
where?: ImpactRadiusEventWhereInput
|
|
63504
63682
|
/**
|
|
63505
63683
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
63506
63684
|
*
|
|
63507
|
-
* Determine the order of
|
|
63685
|
+
* Determine the order of ImpactRadiusEvents to fetch.
|
|
63508
63686
|
*/
|
|
63509
|
-
orderBy?:
|
|
63687
|
+
orderBy?: ImpactRadiusEventOrderByWithRelationAndSearchRelevanceInput | ImpactRadiusEventOrderByWithRelationAndSearchRelevanceInput[]
|
|
63510
63688
|
/**
|
|
63511
63689
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
63512
63690
|
*
|
|
63513
63691
|
* Sets the start position
|
|
63514
63692
|
*/
|
|
63515
|
-
cursor?:
|
|
63693
|
+
cursor?: ImpactRadiusEventWhereUniqueInput
|
|
63516
63694
|
/**
|
|
63517
63695
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
63518
63696
|
*
|
|
63519
|
-
* Take `±n`
|
|
63697
|
+
* Take `±n` ImpactRadiusEvents from the position of the cursor.
|
|
63520
63698
|
*/
|
|
63521
63699
|
take?: number
|
|
63522
63700
|
/**
|
|
63523
63701
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
63524
63702
|
*
|
|
63525
|
-
* Skip the first `n`
|
|
63703
|
+
* Skip the first `n` ImpactRadiusEvents.
|
|
63526
63704
|
*/
|
|
63527
63705
|
skip?: number
|
|
63528
63706
|
/**
|
|
63529
63707
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
63530
63708
|
*
|
|
63531
|
-
* Count returned
|
|
63709
|
+
* Count returned ImpactRadiusEvents
|
|
63532
63710
|
**/
|
|
63533
|
-
_count?: true |
|
|
63711
|
+
_count?: true | ImpactRadiusEventCountAggregateInputType
|
|
63534
63712
|
/**
|
|
63535
63713
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
63536
63714
|
*
|
|
63537
63715
|
* Select which fields to average
|
|
63538
63716
|
**/
|
|
63539
|
-
_avg?:
|
|
63717
|
+
_avg?: ImpactRadiusEventAvgAggregateInputType
|
|
63540
63718
|
/**
|
|
63541
63719
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
63542
63720
|
*
|
|
63543
63721
|
* Select which fields to sum
|
|
63544
63722
|
**/
|
|
63545
|
-
_sum?:
|
|
63723
|
+
_sum?: ImpactRadiusEventSumAggregateInputType
|
|
63546
63724
|
/**
|
|
63547
63725
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
63548
63726
|
*
|
|
63549
63727
|
* Select which fields to find the minimum value
|
|
63550
63728
|
**/
|
|
63551
|
-
_min?:
|
|
63729
|
+
_min?: ImpactRadiusEventMinAggregateInputType
|
|
63552
63730
|
/**
|
|
63553
63731
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
63554
63732
|
*
|
|
63555
63733
|
* Select which fields to find the maximum value
|
|
63556
63734
|
**/
|
|
63557
|
-
_max?:
|
|
63735
|
+
_max?: ImpactRadiusEventMaxAggregateInputType
|
|
63558
63736
|
}
|
|
63559
63737
|
|
|
63560
|
-
export type
|
|
63561
|
-
[P in keyof T & keyof
|
|
63738
|
+
export type GetImpactRadiusEventAggregateType<T extends ImpactRadiusEventAggregateArgs> = {
|
|
63739
|
+
[P in keyof T & keyof AggregateImpactRadiusEvent]: P extends '_count' | 'count'
|
|
63562
63740
|
? T[P] extends true
|
|
63563
63741
|
? number
|
|
63564
|
-
: GetScalarType<T[P],
|
|
63565
|
-
: GetScalarType<T[P],
|
|
63742
|
+
: GetScalarType<T[P], AggregateImpactRadiusEvent[P]>
|
|
63743
|
+
: GetScalarType<T[P], AggregateImpactRadiusEvent[P]>
|
|
63566
63744
|
}
|
|
63567
63745
|
|
|
63568
63746
|
|
|
63569
63747
|
|
|
63570
63748
|
|
|
63571
|
-
export type
|
|
63572
|
-
where?:
|
|
63573
|
-
orderBy?:
|
|
63574
|
-
by:
|
|
63575
|
-
having?:
|
|
63749
|
+
export type ImpactRadiusEventGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
63750
|
+
where?: ImpactRadiusEventWhereInput
|
|
63751
|
+
orderBy?: ImpactRadiusEventOrderByWithAggregationInput | ImpactRadiusEventOrderByWithAggregationInput[]
|
|
63752
|
+
by: ImpactRadiusEventScalarFieldEnum[] | ImpactRadiusEventScalarFieldEnum
|
|
63753
|
+
having?: ImpactRadiusEventScalarWhereWithAggregatesInput
|
|
63576
63754
|
take?: number
|
|
63577
63755
|
skip?: number
|
|
63578
|
-
_count?:
|
|
63579
|
-
_avg?:
|
|
63580
|
-
_sum?:
|
|
63581
|
-
_min?:
|
|
63582
|
-
_max?:
|
|
63756
|
+
_count?: ImpactRadiusEventCountAggregateInputType | true
|
|
63757
|
+
_avg?: ImpactRadiusEventAvgAggregateInputType
|
|
63758
|
+
_sum?: ImpactRadiusEventSumAggregateInputType
|
|
63759
|
+
_min?: ImpactRadiusEventMinAggregateInputType
|
|
63760
|
+
_max?: ImpactRadiusEventMaxAggregateInputType
|
|
63583
63761
|
}
|
|
63584
63762
|
|
|
63585
|
-
export type
|
|
63763
|
+
export type ImpactRadiusEventGroupByOutputType = {
|
|
63586
63764
|
id: number
|
|
63587
|
-
|
|
63588
|
-
|
|
63589
|
-
|
|
63590
|
-
|
|
63591
|
-
|
|
63592
|
-
|
|
63593
|
-
|
|
63594
|
-
|
|
63595
|
-
|
|
63596
|
-
|
|
63765
|
+
type: string
|
|
63766
|
+
created: Date
|
|
63767
|
+
amount: number | null
|
|
63768
|
+
commission: number | null
|
|
63769
|
+
metaData: JsonValue
|
|
63770
|
+
userId: number
|
|
63771
|
+
brandId: number | null
|
|
63772
|
+
_count: ImpactRadiusEventCountAggregateOutputType | null
|
|
63773
|
+
_avg: ImpactRadiusEventAvgAggregateOutputType | null
|
|
63774
|
+
_sum: ImpactRadiusEventSumAggregateOutputType | null
|
|
63775
|
+
_min: ImpactRadiusEventMinAggregateOutputType | null
|
|
63776
|
+
_max: ImpactRadiusEventMaxAggregateOutputType | null
|
|
63597
63777
|
}
|
|
63598
63778
|
|
|
63599
|
-
type
|
|
63779
|
+
type GetImpactRadiusEventGroupByPayload<T extends ImpactRadiusEventGroupByArgs> = Prisma.PrismaPromise<
|
|
63600
63780
|
Array<
|
|
63601
|
-
PickEnumerable<
|
|
63781
|
+
PickEnumerable<ImpactRadiusEventGroupByOutputType, T['by']> &
|
|
63602
63782
|
{
|
|
63603
|
-
[P in ((keyof T) & (keyof
|
|
63783
|
+
[P in ((keyof T) & (keyof ImpactRadiusEventGroupByOutputType))]: P extends '_count'
|
|
63604
63784
|
? T[P] extends boolean
|
|
63605
63785
|
? number
|
|
63606
|
-
: GetScalarType<T[P],
|
|
63607
|
-
: GetScalarType<T[P],
|
|
63786
|
+
: GetScalarType<T[P], ImpactRadiusEventGroupByOutputType[P]>
|
|
63787
|
+
: GetScalarType<T[P], ImpactRadiusEventGroupByOutputType[P]>
|
|
63608
63788
|
}
|
|
63609
63789
|
>
|
|
63610
63790
|
>
|
|
63611
63791
|
|
|
63612
63792
|
|
|
63613
|
-
export type
|
|
63793
|
+
export type ImpactRadiusEventSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
63614
63794
|
id?: boolean
|
|
63795
|
+
type?: boolean
|
|
63796
|
+
created?: boolean
|
|
63797
|
+
amount?: boolean
|
|
63798
|
+
commission?: boolean
|
|
63799
|
+
metaData?: boolean
|
|
63800
|
+
userId?: boolean
|
|
63615
63801
|
brandId?: boolean
|
|
63616
|
-
|
|
63617
|
-
|
|
63618
|
-
|
|
63619
|
-
updatedAt?: boolean
|
|
63620
|
-
brand?: boolean | BrandDefaultArgs<ExtArgs>
|
|
63621
|
-
}, ExtArgs["result"]["creatorSearchFilter"]>
|
|
63802
|
+
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
63803
|
+
brand?: boolean | ImpactRadiusEvent$brandArgs<ExtArgs>
|
|
63804
|
+
}, ExtArgs["result"]["impactRadiusEvent"]>
|
|
63622
63805
|
|
|
63623
|
-
export type
|
|
63806
|
+
export type ImpactRadiusEventSelectScalar = {
|
|
63624
63807
|
id?: boolean
|
|
63808
|
+
type?: boolean
|
|
63809
|
+
created?: boolean
|
|
63810
|
+
amount?: boolean
|
|
63811
|
+
commission?: boolean
|
|
63812
|
+
metaData?: boolean
|
|
63813
|
+
userId?: boolean
|
|
63625
63814
|
brandId?: boolean
|
|
63626
|
-
title?: boolean
|
|
63627
|
-
filters?: boolean
|
|
63628
|
-
createdAt?: boolean
|
|
63629
|
-
updatedAt?: boolean
|
|
63630
63815
|
}
|
|
63631
63816
|
|
|
63632
|
-
export type
|
|
63633
|
-
|
|
63817
|
+
export type ImpactRadiusEventInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
63818
|
+
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
63819
|
+
brand?: boolean | ImpactRadiusEvent$brandArgs<ExtArgs>
|
|
63634
63820
|
}
|
|
63635
63821
|
|
|
63636
63822
|
|
|
63637
|
-
export type $
|
|
63638
|
-
name: "
|
|
63823
|
+
export type $ImpactRadiusEventPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
63824
|
+
name: "ImpactRadiusEvent"
|
|
63639
63825
|
objects: {
|
|
63640
|
-
|
|
63826
|
+
user: Prisma.$UserPayload<ExtArgs>
|
|
63827
|
+
brand: Prisma.$BrandPayload<ExtArgs> | null
|
|
63641
63828
|
}
|
|
63642
63829
|
scalars: $Extensions.GetPayloadResult<{
|
|
63643
63830
|
id: number
|
|
63644
|
-
|
|
63645
|
-
|
|
63646
|
-
|
|
63647
|
-
|
|
63648
|
-
|
|
63649
|
-
|
|
63831
|
+
type: string
|
|
63832
|
+
created: Date
|
|
63833
|
+
amount: number | null
|
|
63834
|
+
commission: number | null
|
|
63835
|
+
metaData: Prisma.JsonValue
|
|
63836
|
+
userId: number
|
|
63837
|
+
brandId: number | null
|
|
63838
|
+
}, ExtArgs["result"]["impactRadiusEvent"]>
|
|
63650
63839
|
composites: {}
|
|
63651
63840
|
}
|
|
63652
63841
|
|
|
63653
63842
|
|
|
63654
|
-
type
|
|
63843
|
+
type ImpactRadiusEventGetPayload<S extends boolean | null | undefined | ImpactRadiusEventDefaultArgs> = $Result.GetResult<Prisma.$ImpactRadiusEventPayload, S>
|
|
63655
63844
|
|
|
63656
|
-
type
|
|
63657
|
-
Omit<
|
|
63658
|
-
select?:
|
|
63845
|
+
type ImpactRadiusEventCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
63846
|
+
Omit<ImpactRadiusEventFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
63847
|
+
select?: ImpactRadiusEventCountAggregateInputType | true
|
|
63659
63848
|
}
|
|
63660
63849
|
|
|
63661
|
-
export interface
|
|
63662
|
-
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['
|
|
63850
|
+
export interface ImpactRadiusEventDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
63851
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['ImpactRadiusEvent'], meta: { name: 'ImpactRadiusEvent' } }
|
|
63663
63852
|
/**
|
|
63664
|
-
* Find zero or one
|
|
63665
|
-
* @param {
|
|
63853
|
+
* Find zero or one ImpactRadiusEvent that matches the filter.
|
|
63854
|
+
* @param {ImpactRadiusEventFindUniqueArgs} args - Arguments to find a ImpactRadiusEvent
|
|
63666
63855
|
* @example
|
|
63667
|
-
* // Get one
|
|
63668
|
-
* const
|
|
63856
|
+
* // Get one ImpactRadiusEvent
|
|
63857
|
+
* const impactRadiusEvent = await prisma.impactRadiusEvent.findUnique({
|
|
63669
63858
|
* where: {
|
|
63670
63859
|
* // ... provide filter here
|
|
63671
63860
|
* }
|
|
63672
63861
|
* })
|
|
63673
63862
|
**/
|
|
63674
|
-
findUnique<T extends
|
|
63675
|
-
args: SelectSubset<T,
|
|
63676
|
-
):
|
|
63863
|
+
findUnique<T extends ImpactRadiusEventFindUniqueArgs<ExtArgs>>(
|
|
63864
|
+
args: SelectSubset<T, ImpactRadiusEventFindUniqueArgs<ExtArgs>>
|
|
63865
|
+
): Prisma__ImpactRadiusEventClient<$Result.GetResult<Prisma.$ImpactRadiusEventPayload<ExtArgs>, T, 'findUnique'> | null, null, ExtArgs>
|
|
63677
63866
|
|
|
63678
63867
|
/**
|
|
63679
|
-
* Find one
|
|
63868
|
+
* Find one ImpactRadiusEvent that matches the filter or throw an error with `error.code='P2025'`
|
|
63680
63869
|
* if no matches were found.
|
|
63681
|
-
* @param {
|
|
63870
|
+
* @param {ImpactRadiusEventFindUniqueOrThrowArgs} args - Arguments to find a ImpactRadiusEvent
|
|
63682
63871
|
* @example
|
|
63683
|
-
* // Get one
|
|
63684
|
-
* const
|
|
63872
|
+
* // Get one ImpactRadiusEvent
|
|
63873
|
+
* const impactRadiusEvent = await prisma.impactRadiusEvent.findUniqueOrThrow({
|
|
63685
63874
|
* where: {
|
|
63686
63875
|
* // ... provide filter here
|
|
63687
63876
|
* }
|
|
63688
63877
|
* })
|
|
63689
63878
|
**/
|
|
63690
|
-
findUniqueOrThrow<T extends
|
|
63691
|
-
args?: SelectSubset<T,
|
|
63692
|
-
):
|
|
63879
|
+
findUniqueOrThrow<T extends ImpactRadiusEventFindUniqueOrThrowArgs<ExtArgs>>(
|
|
63880
|
+
args?: SelectSubset<T, ImpactRadiusEventFindUniqueOrThrowArgs<ExtArgs>>
|
|
63881
|
+
): Prisma__ImpactRadiusEventClient<$Result.GetResult<Prisma.$ImpactRadiusEventPayload<ExtArgs>, T, 'findUniqueOrThrow'>, never, ExtArgs>
|
|
63693
63882
|
|
|
63694
63883
|
/**
|
|
63695
|
-
* Find the first
|
|
63884
|
+
* Find the first ImpactRadiusEvent that matches the filter.
|
|
63696
63885
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
63697
63886
|
* Read more here: https://pris.ly/d/null-undefined
|
|
63698
|
-
* @param {
|
|
63887
|
+
* @param {ImpactRadiusEventFindFirstArgs} args - Arguments to find a ImpactRadiusEvent
|
|
63699
63888
|
* @example
|
|
63700
|
-
* // Get one
|
|
63701
|
-
* const
|
|
63889
|
+
* // Get one ImpactRadiusEvent
|
|
63890
|
+
* const impactRadiusEvent = await prisma.impactRadiusEvent.findFirst({
|
|
63702
63891
|
* where: {
|
|
63703
63892
|
* // ... provide filter here
|
|
63704
63893
|
* }
|
|
63705
63894
|
* })
|
|
63706
63895
|
**/
|
|
63707
|
-
findFirst<T extends
|
|
63708
|
-
args?: SelectSubset<T,
|
|
63709
|
-
):
|
|
63896
|
+
findFirst<T extends ImpactRadiusEventFindFirstArgs<ExtArgs>>(
|
|
63897
|
+
args?: SelectSubset<T, ImpactRadiusEventFindFirstArgs<ExtArgs>>
|
|
63898
|
+
): Prisma__ImpactRadiusEventClient<$Result.GetResult<Prisma.$ImpactRadiusEventPayload<ExtArgs>, T, 'findFirst'> | null, null, ExtArgs>
|
|
63710
63899
|
|
|
63711
63900
|
/**
|
|
63712
|
-
* Find the first
|
|
63901
|
+
* Find the first ImpactRadiusEvent that matches the filter or
|
|
63713
63902
|
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
63714
63903
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
63715
63904
|
* Read more here: https://pris.ly/d/null-undefined
|
|
63716
|
-
* @param {
|
|
63905
|
+
* @param {ImpactRadiusEventFindFirstOrThrowArgs} args - Arguments to find a ImpactRadiusEvent
|
|
63717
63906
|
* @example
|
|
63718
|
-
* // Get one
|
|
63719
|
-
* const
|
|
63907
|
+
* // Get one ImpactRadiusEvent
|
|
63908
|
+
* const impactRadiusEvent = await prisma.impactRadiusEvent.findFirstOrThrow({
|
|
63720
63909
|
* where: {
|
|
63721
63910
|
* // ... provide filter here
|
|
63722
63911
|
* }
|
|
63723
63912
|
* })
|
|
63724
63913
|
**/
|
|
63725
|
-
findFirstOrThrow<T extends
|
|
63726
|
-
args?: SelectSubset<T,
|
|
63727
|
-
):
|
|
63914
|
+
findFirstOrThrow<T extends ImpactRadiusEventFindFirstOrThrowArgs<ExtArgs>>(
|
|
63915
|
+
args?: SelectSubset<T, ImpactRadiusEventFindFirstOrThrowArgs<ExtArgs>>
|
|
63916
|
+
): Prisma__ImpactRadiusEventClient<$Result.GetResult<Prisma.$ImpactRadiusEventPayload<ExtArgs>, T, 'findFirstOrThrow'>, never, ExtArgs>
|
|
63728
63917
|
|
|
63729
63918
|
/**
|
|
63730
|
-
* Find zero or more
|
|
63919
|
+
* Find zero or more ImpactRadiusEvents that matches the filter.
|
|
63731
63920
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
63732
63921
|
* Read more here: https://pris.ly/d/null-undefined
|
|
63733
|
-
* @param {
|
|
63922
|
+
* @param {ImpactRadiusEventFindManyArgs=} args - Arguments to filter and select certain fields only.
|
|
63734
63923
|
* @example
|
|
63735
|
-
* // Get all
|
|
63736
|
-
* const
|
|
63924
|
+
* // Get all ImpactRadiusEvents
|
|
63925
|
+
* const impactRadiusEvents = await prisma.impactRadiusEvent.findMany()
|
|
63737
63926
|
*
|
|
63738
|
-
* // Get first 10
|
|
63739
|
-
* const
|
|
63927
|
+
* // Get first 10 ImpactRadiusEvents
|
|
63928
|
+
* const impactRadiusEvents = await prisma.impactRadiusEvent.findMany({ take: 10 })
|
|
63740
63929
|
*
|
|
63741
63930
|
* // Only select the `id`
|
|
63742
|
-
* const
|
|
63931
|
+
* const impactRadiusEventWithIdOnly = await prisma.impactRadiusEvent.findMany({ select: { id: true } })
|
|
63743
63932
|
*
|
|
63744
63933
|
**/
|
|
63745
|
-
findMany<T extends
|
|
63746
|
-
args?: SelectSubset<T,
|
|
63747
|
-
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$
|
|
63934
|
+
findMany<T extends ImpactRadiusEventFindManyArgs<ExtArgs>>(
|
|
63935
|
+
args?: SelectSubset<T, ImpactRadiusEventFindManyArgs<ExtArgs>>
|
|
63936
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ImpactRadiusEventPayload<ExtArgs>, T, 'findMany'>>
|
|
63748
63937
|
|
|
63749
63938
|
/**
|
|
63750
|
-
* Create a
|
|
63751
|
-
* @param {
|
|
63939
|
+
* Create a ImpactRadiusEvent.
|
|
63940
|
+
* @param {ImpactRadiusEventCreateArgs} args - Arguments to create a ImpactRadiusEvent.
|
|
63752
63941
|
* @example
|
|
63753
|
-
* // Create one
|
|
63754
|
-
* const
|
|
63942
|
+
* // Create one ImpactRadiusEvent
|
|
63943
|
+
* const ImpactRadiusEvent = await prisma.impactRadiusEvent.create({
|
|
63755
63944
|
* data: {
|
|
63756
|
-
* // ... data to create a
|
|
63945
|
+
* // ... data to create a ImpactRadiusEvent
|
|
63757
63946
|
* }
|
|
63758
63947
|
* })
|
|
63759
63948
|
*
|
|
63760
63949
|
**/
|
|
63761
|
-
create<T extends
|
|
63762
|
-
args: SelectSubset<T,
|
|
63763
|
-
):
|
|
63950
|
+
create<T extends ImpactRadiusEventCreateArgs<ExtArgs>>(
|
|
63951
|
+
args: SelectSubset<T, ImpactRadiusEventCreateArgs<ExtArgs>>
|
|
63952
|
+
): Prisma__ImpactRadiusEventClient<$Result.GetResult<Prisma.$ImpactRadiusEventPayload<ExtArgs>, T, 'create'>, never, ExtArgs>
|
|
63764
63953
|
|
|
63765
63954
|
/**
|
|
63766
|
-
* Create many
|
|
63767
|
-
* @param {
|
|
63955
|
+
* Create many ImpactRadiusEvents.
|
|
63956
|
+
* @param {ImpactRadiusEventCreateManyArgs} args - Arguments to create many ImpactRadiusEvents.
|
|
63768
63957
|
* @example
|
|
63769
|
-
* // Create many
|
|
63770
|
-
* const
|
|
63958
|
+
* // Create many ImpactRadiusEvents
|
|
63959
|
+
* const impactRadiusEvent = await prisma.impactRadiusEvent.createMany({
|
|
63771
63960
|
* data: {
|
|
63772
63961
|
* // ... provide data here
|
|
63773
63962
|
* }
|
|
63774
63963
|
* })
|
|
63775
63964
|
*
|
|
63776
63965
|
**/
|
|
63777
|
-
createMany<T extends
|
|
63778
|
-
args?: SelectSubset<T,
|
|
63966
|
+
createMany<T extends ImpactRadiusEventCreateManyArgs<ExtArgs>>(
|
|
63967
|
+
args?: SelectSubset<T, ImpactRadiusEventCreateManyArgs<ExtArgs>>
|
|
63779
63968
|
): Prisma.PrismaPromise<BatchPayload>
|
|
63780
63969
|
|
|
63781
63970
|
/**
|
|
63782
|
-
* Delete a
|
|
63783
|
-
* @param {
|
|
63971
|
+
* Delete a ImpactRadiusEvent.
|
|
63972
|
+
* @param {ImpactRadiusEventDeleteArgs} args - Arguments to delete one ImpactRadiusEvent.
|
|
63784
63973
|
* @example
|
|
63785
|
-
* // Delete one
|
|
63786
|
-
* const
|
|
63974
|
+
* // Delete one ImpactRadiusEvent
|
|
63975
|
+
* const ImpactRadiusEvent = await prisma.impactRadiusEvent.delete({
|
|
63787
63976
|
* where: {
|
|
63788
|
-
* // ... filter to delete one
|
|
63977
|
+
* // ... filter to delete one ImpactRadiusEvent
|
|
63789
63978
|
* }
|
|
63790
63979
|
* })
|
|
63791
63980
|
*
|
|
63792
63981
|
**/
|
|
63793
|
-
delete<T extends
|
|
63794
|
-
args: SelectSubset<T,
|
|
63795
|
-
):
|
|
63982
|
+
delete<T extends ImpactRadiusEventDeleteArgs<ExtArgs>>(
|
|
63983
|
+
args: SelectSubset<T, ImpactRadiusEventDeleteArgs<ExtArgs>>
|
|
63984
|
+
): Prisma__ImpactRadiusEventClient<$Result.GetResult<Prisma.$ImpactRadiusEventPayload<ExtArgs>, T, 'delete'>, never, ExtArgs>
|
|
63796
63985
|
|
|
63797
63986
|
/**
|
|
63798
|
-
* Update one
|
|
63799
|
-
* @param {
|
|
63987
|
+
* Update one ImpactRadiusEvent.
|
|
63988
|
+
* @param {ImpactRadiusEventUpdateArgs} args - Arguments to update one ImpactRadiusEvent.
|
|
63800
63989
|
* @example
|
|
63801
|
-
* // Update one
|
|
63802
|
-
* const
|
|
63990
|
+
* // Update one ImpactRadiusEvent
|
|
63991
|
+
* const impactRadiusEvent = await prisma.impactRadiusEvent.update({
|
|
63803
63992
|
* where: {
|
|
63804
63993
|
* // ... provide filter here
|
|
63805
63994
|
* },
|
|
@@ -63809,34 +63998,34 @@ export namespace Prisma {
|
|
|
63809
63998
|
* })
|
|
63810
63999
|
*
|
|
63811
64000
|
**/
|
|
63812
|
-
update<T extends
|
|
63813
|
-
args: SelectSubset<T,
|
|
63814
|
-
):
|
|
64001
|
+
update<T extends ImpactRadiusEventUpdateArgs<ExtArgs>>(
|
|
64002
|
+
args: SelectSubset<T, ImpactRadiusEventUpdateArgs<ExtArgs>>
|
|
64003
|
+
): Prisma__ImpactRadiusEventClient<$Result.GetResult<Prisma.$ImpactRadiusEventPayload<ExtArgs>, T, 'update'>, never, ExtArgs>
|
|
63815
64004
|
|
|
63816
64005
|
/**
|
|
63817
|
-
* Delete zero or more
|
|
63818
|
-
* @param {
|
|
64006
|
+
* Delete zero or more ImpactRadiusEvents.
|
|
64007
|
+
* @param {ImpactRadiusEventDeleteManyArgs} args - Arguments to filter ImpactRadiusEvents to delete.
|
|
63819
64008
|
* @example
|
|
63820
|
-
* // Delete a few
|
|
63821
|
-
* const { count } = await prisma.
|
|
64009
|
+
* // Delete a few ImpactRadiusEvents
|
|
64010
|
+
* const { count } = await prisma.impactRadiusEvent.deleteMany({
|
|
63822
64011
|
* where: {
|
|
63823
64012
|
* // ... provide filter here
|
|
63824
64013
|
* }
|
|
63825
64014
|
* })
|
|
63826
64015
|
*
|
|
63827
64016
|
**/
|
|
63828
|
-
deleteMany<T extends
|
|
63829
|
-
args?: SelectSubset<T,
|
|
64017
|
+
deleteMany<T extends ImpactRadiusEventDeleteManyArgs<ExtArgs>>(
|
|
64018
|
+
args?: SelectSubset<T, ImpactRadiusEventDeleteManyArgs<ExtArgs>>
|
|
63830
64019
|
): Prisma.PrismaPromise<BatchPayload>
|
|
63831
64020
|
|
|
63832
64021
|
/**
|
|
63833
|
-
* Update zero or more
|
|
64022
|
+
* Update zero or more ImpactRadiusEvents.
|
|
63834
64023
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
63835
64024
|
* Read more here: https://pris.ly/d/null-undefined
|
|
63836
|
-
* @param {
|
|
64025
|
+
* @param {ImpactRadiusEventUpdateManyArgs} args - Arguments to update one or more rows.
|
|
63837
64026
|
* @example
|
|
63838
|
-
* // Update many
|
|
63839
|
-
* const
|
|
64027
|
+
* // Update many ImpactRadiusEvents
|
|
64028
|
+
* const impactRadiusEvent = await prisma.impactRadiusEvent.updateMany({
|
|
63840
64029
|
* where: {
|
|
63841
64030
|
* // ... provide filter here
|
|
63842
64031
|
* },
|
|
@@ -63846,59 +64035,59 @@ export namespace Prisma {
|
|
|
63846
64035
|
* })
|
|
63847
64036
|
*
|
|
63848
64037
|
**/
|
|
63849
|
-
updateMany<T extends
|
|
63850
|
-
args: SelectSubset<T,
|
|
64038
|
+
updateMany<T extends ImpactRadiusEventUpdateManyArgs<ExtArgs>>(
|
|
64039
|
+
args: SelectSubset<T, ImpactRadiusEventUpdateManyArgs<ExtArgs>>
|
|
63851
64040
|
): Prisma.PrismaPromise<BatchPayload>
|
|
63852
64041
|
|
|
63853
64042
|
/**
|
|
63854
|
-
* Create or update one
|
|
63855
|
-
* @param {
|
|
64043
|
+
* Create or update one ImpactRadiusEvent.
|
|
64044
|
+
* @param {ImpactRadiusEventUpsertArgs} args - Arguments to update or create a ImpactRadiusEvent.
|
|
63856
64045
|
* @example
|
|
63857
|
-
* // Update or create a
|
|
63858
|
-
* const
|
|
64046
|
+
* // Update or create a ImpactRadiusEvent
|
|
64047
|
+
* const impactRadiusEvent = await prisma.impactRadiusEvent.upsert({
|
|
63859
64048
|
* create: {
|
|
63860
|
-
* // ... data to create a
|
|
64049
|
+
* // ... data to create a ImpactRadiusEvent
|
|
63861
64050
|
* },
|
|
63862
64051
|
* update: {
|
|
63863
64052
|
* // ... in case it already exists, update
|
|
63864
64053
|
* },
|
|
63865
64054
|
* where: {
|
|
63866
|
-
* // ... the filter for the
|
|
64055
|
+
* // ... the filter for the ImpactRadiusEvent we want to update
|
|
63867
64056
|
* }
|
|
63868
64057
|
* })
|
|
63869
64058
|
**/
|
|
63870
|
-
upsert<T extends
|
|
63871
|
-
args: SelectSubset<T,
|
|
63872
|
-
):
|
|
64059
|
+
upsert<T extends ImpactRadiusEventUpsertArgs<ExtArgs>>(
|
|
64060
|
+
args: SelectSubset<T, ImpactRadiusEventUpsertArgs<ExtArgs>>
|
|
64061
|
+
): Prisma__ImpactRadiusEventClient<$Result.GetResult<Prisma.$ImpactRadiusEventPayload<ExtArgs>, T, 'upsert'>, never, ExtArgs>
|
|
63873
64062
|
|
|
63874
64063
|
/**
|
|
63875
|
-
* Count the number of
|
|
64064
|
+
* Count the number of ImpactRadiusEvents.
|
|
63876
64065
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
63877
64066
|
* Read more here: https://pris.ly/d/null-undefined
|
|
63878
|
-
* @param {
|
|
64067
|
+
* @param {ImpactRadiusEventCountArgs} args - Arguments to filter ImpactRadiusEvents to count.
|
|
63879
64068
|
* @example
|
|
63880
|
-
* // Count the number of
|
|
63881
|
-
* const count = await prisma.
|
|
64069
|
+
* // Count the number of ImpactRadiusEvents
|
|
64070
|
+
* const count = await prisma.impactRadiusEvent.count({
|
|
63882
64071
|
* where: {
|
|
63883
|
-
* // ... the filter for the
|
|
64072
|
+
* // ... the filter for the ImpactRadiusEvents we want to count
|
|
63884
64073
|
* }
|
|
63885
64074
|
* })
|
|
63886
64075
|
**/
|
|
63887
|
-
count<T extends
|
|
63888
|
-
args?: Subset<T,
|
|
64076
|
+
count<T extends ImpactRadiusEventCountArgs>(
|
|
64077
|
+
args?: Subset<T, ImpactRadiusEventCountArgs>,
|
|
63889
64078
|
): Prisma.PrismaPromise<
|
|
63890
64079
|
T extends $Utils.Record<'select', any>
|
|
63891
64080
|
? T['select'] extends true
|
|
63892
64081
|
? number
|
|
63893
|
-
: GetScalarType<T['select'],
|
|
64082
|
+
: GetScalarType<T['select'], ImpactRadiusEventCountAggregateOutputType>
|
|
63894
64083
|
: number
|
|
63895
64084
|
>
|
|
63896
64085
|
|
|
63897
64086
|
/**
|
|
63898
|
-
* Allows you to perform aggregations operations on a
|
|
64087
|
+
* Allows you to perform aggregations operations on a ImpactRadiusEvent.
|
|
63899
64088
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
63900
64089
|
* Read more here: https://pris.ly/d/null-undefined
|
|
63901
|
-
* @param {
|
|
64090
|
+
* @param {ImpactRadiusEventAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
63902
64091
|
* @example
|
|
63903
64092
|
* // Ordered by age ascending
|
|
63904
64093
|
* // Where email contains prisma.io
|
|
@@ -63918,13 +64107,13 @@ export namespace Prisma {
|
|
|
63918
64107
|
* take: 10,
|
|
63919
64108
|
* })
|
|
63920
64109
|
**/
|
|
63921
|
-
aggregate<T extends
|
|
64110
|
+
aggregate<T extends ImpactRadiusEventAggregateArgs>(args: Subset<T, ImpactRadiusEventAggregateArgs>): Prisma.PrismaPromise<GetImpactRadiusEventAggregateType<T>>
|
|
63922
64111
|
|
|
63923
64112
|
/**
|
|
63924
|
-
* Group by
|
|
64113
|
+
* Group by ImpactRadiusEvent.
|
|
63925
64114
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
63926
64115
|
* Read more here: https://pris.ly/d/null-undefined
|
|
63927
|
-
* @param {
|
|
64116
|
+
* @param {ImpactRadiusEventGroupByArgs} args - Group by arguments.
|
|
63928
64117
|
* @example
|
|
63929
64118
|
* // Group by city, order by createdAt, get count
|
|
63930
64119
|
* const result = await prisma.user.groupBy({
|
|
@@ -63939,14 +64128,997 @@ export namespace Prisma {
|
|
|
63939
64128
|
*
|
|
63940
64129
|
**/
|
|
63941
64130
|
groupBy<
|
|
63942
|
-
T extends
|
|
64131
|
+
T extends ImpactRadiusEventGroupByArgs,
|
|
63943
64132
|
HasSelectOrTake extends Or<
|
|
63944
64133
|
Extends<'skip', Keys<T>>,
|
|
63945
64134
|
Extends<'take', Keys<T>>
|
|
63946
64135
|
>,
|
|
63947
64136
|
OrderByArg extends True extends HasSelectOrTake
|
|
63948
|
-
? { orderBy:
|
|
63949
|
-
: { orderBy?:
|
|
64137
|
+
? { orderBy: ImpactRadiusEventGroupByArgs['orderBy'] }
|
|
64138
|
+
: { orderBy?: ImpactRadiusEventGroupByArgs['orderBy'] },
|
|
64139
|
+
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
64140
|
+
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
64141
|
+
ByValid extends Has<ByFields, OrderFields>,
|
|
64142
|
+
HavingFields extends GetHavingFields<T['having']>,
|
|
64143
|
+
HavingValid extends Has<ByFields, HavingFields>,
|
|
64144
|
+
ByEmpty extends T['by'] extends never[] ? True : False,
|
|
64145
|
+
InputErrors extends ByEmpty extends True
|
|
64146
|
+
? `Error: "by" must not be empty.`
|
|
64147
|
+
: HavingValid extends False
|
|
64148
|
+
? {
|
|
64149
|
+
[P in HavingFields]: P extends ByFields
|
|
64150
|
+
? never
|
|
64151
|
+
: P extends string
|
|
64152
|
+
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
|
64153
|
+
: [
|
|
64154
|
+
Error,
|
|
64155
|
+
'Field ',
|
|
64156
|
+
P,
|
|
64157
|
+
` in "having" needs to be provided in "by"`,
|
|
64158
|
+
]
|
|
64159
|
+
}[HavingFields]
|
|
64160
|
+
: 'take' extends Keys<T>
|
|
64161
|
+
? 'orderBy' extends Keys<T>
|
|
64162
|
+
? ByValid extends True
|
|
64163
|
+
? {}
|
|
64164
|
+
: {
|
|
64165
|
+
[P in OrderFields]: P extends ByFields
|
|
64166
|
+
? never
|
|
64167
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
64168
|
+
}[OrderFields]
|
|
64169
|
+
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
|
64170
|
+
: 'skip' extends Keys<T>
|
|
64171
|
+
? 'orderBy' extends Keys<T>
|
|
64172
|
+
? ByValid extends True
|
|
64173
|
+
? {}
|
|
64174
|
+
: {
|
|
64175
|
+
[P in OrderFields]: P extends ByFields
|
|
64176
|
+
? never
|
|
64177
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
64178
|
+
}[OrderFields]
|
|
64179
|
+
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
|
64180
|
+
: ByValid extends True
|
|
64181
|
+
? {}
|
|
64182
|
+
: {
|
|
64183
|
+
[P in OrderFields]: P extends ByFields
|
|
64184
|
+
? never
|
|
64185
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
64186
|
+
}[OrderFields]
|
|
64187
|
+
>(args: SubsetIntersection<T, ImpactRadiusEventGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetImpactRadiusEventGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
64188
|
+
/**
|
|
64189
|
+
* Fields of the ImpactRadiusEvent model
|
|
64190
|
+
*/
|
|
64191
|
+
readonly fields: ImpactRadiusEventFieldRefs;
|
|
64192
|
+
}
|
|
64193
|
+
|
|
64194
|
+
/**
|
|
64195
|
+
* The delegate class that acts as a "Promise-like" for ImpactRadiusEvent.
|
|
64196
|
+
* Why is this prefixed with `Prisma__`?
|
|
64197
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
64198
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
64199
|
+
*/
|
|
64200
|
+
export interface Prisma__ImpactRadiusEventClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
64201
|
+
readonly [Symbol.toStringTag]: 'PrismaPromise';
|
|
64202
|
+
|
|
64203
|
+
user<T extends UserDefaultArgs<ExtArgs> = {}>(args?: Subset<T, UserDefaultArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, 'findUniqueOrThrow'> | Null, Null, ExtArgs>;
|
|
64204
|
+
|
|
64205
|
+
brand<T extends ImpactRadiusEvent$brandArgs<ExtArgs> = {}>(args?: Subset<T, ImpactRadiusEvent$brandArgs<ExtArgs>>): Prisma__BrandClient<$Result.GetResult<Prisma.$BrandPayload<ExtArgs>, T, 'findUniqueOrThrow'> | null, null, ExtArgs>;
|
|
64206
|
+
|
|
64207
|
+
/**
|
|
64208
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
64209
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
64210
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
64211
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
64212
|
+
*/
|
|
64213
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2>;
|
|
64214
|
+
/**
|
|
64215
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
64216
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
64217
|
+
* @returns A Promise for the completion of the callback.
|
|
64218
|
+
*/
|
|
64219
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>;
|
|
64220
|
+
/**
|
|
64221
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
64222
|
+
* resolved value cannot be modified from the callback.
|
|
64223
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
64224
|
+
* @returns A Promise for the completion of the callback.
|
|
64225
|
+
*/
|
|
64226
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>;
|
|
64227
|
+
}
|
|
64228
|
+
|
|
64229
|
+
|
|
64230
|
+
|
|
64231
|
+
/**
|
|
64232
|
+
* Fields of the ImpactRadiusEvent model
|
|
64233
|
+
*/
|
|
64234
|
+
interface ImpactRadiusEventFieldRefs {
|
|
64235
|
+
readonly id: FieldRef<"ImpactRadiusEvent", 'Int'>
|
|
64236
|
+
readonly type: FieldRef<"ImpactRadiusEvent", 'String'>
|
|
64237
|
+
readonly created: FieldRef<"ImpactRadiusEvent", 'DateTime'>
|
|
64238
|
+
readonly amount: FieldRef<"ImpactRadiusEvent", 'Float'>
|
|
64239
|
+
readonly commission: FieldRef<"ImpactRadiusEvent", 'Float'>
|
|
64240
|
+
readonly metaData: FieldRef<"ImpactRadiusEvent", 'Json'>
|
|
64241
|
+
readonly userId: FieldRef<"ImpactRadiusEvent", 'Int'>
|
|
64242
|
+
readonly brandId: FieldRef<"ImpactRadiusEvent", 'Int'>
|
|
64243
|
+
}
|
|
64244
|
+
|
|
64245
|
+
|
|
64246
|
+
// Custom InputTypes
|
|
64247
|
+
|
|
64248
|
+
/**
|
|
64249
|
+
* ImpactRadiusEvent findUnique
|
|
64250
|
+
*/
|
|
64251
|
+
export type ImpactRadiusEventFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
64252
|
+
/**
|
|
64253
|
+
* Select specific fields to fetch from the ImpactRadiusEvent
|
|
64254
|
+
*/
|
|
64255
|
+
select?: ImpactRadiusEventSelect<ExtArgs> | null
|
|
64256
|
+
/**
|
|
64257
|
+
* Choose, which related nodes to fetch as well.
|
|
64258
|
+
*/
|
|
64259
|
+
include?: ImpactRadiusEventInclude<ExtArgs> | null
|
|
64260
|
+
/**
|
|
64261
|
+
* Filter, which ImpactRadiusEvent to fetch.
|
|
64262
|
+
*/
|
|
64263
|
+
where: ImpactRadiusEventWhereUniqueInput
|
|
64264
|
+
}
|
|
64265
|
+
|
|
64266
|
+
|
|
64267
|
+
/**
|
|
64268
|
+
* ImpactRadiusEvent findUniqueOrThrow
|
|
64269
|
+
*/
|
|
64270
|
+
export type ImpactRadiusEventFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
64271
|
+
/**
|
|
64272
|
+
* Select specific fields to fetch from the ImpactRadiusEvent
|
|
64273
|
+
*/
|
|
64274
|
+
select?: ImpactRadiusEventSelect<ExtArgs> | null
|
|
64275
|
+
/**
|
|
64276
|
+
* Choose, which related nodes to fetch as well.
|
|
64277
|
+
*/
|
|
64278
|
+
include?: ImpactRadiusEventInclude<ExtArgs> | null
|
|
64279
|
+
/**
|
|
64280
|
+
* Filter, which ImpactRadiusEvent to fetch.
|
|
64281
|
+
*/
|
|
64282
|
+
where: ImpactRadiusEventWhereUniqueInput
|
|
64283
|
+
}
|
|
64284
|
+
|
|
64285
|
+
|
|
64286
|
+
/**
|
|
64287
|
+
* ImpactRadiusEvent findFirst
|
|
64288
|
+
*/
|
|
64289
|
+
export type ImpactRadiusEventFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
64290
|
+
/**
|
|
64291
|
+
* Select specific fields to fetch from the ImpactRadiusEvent
|
|
64292
|
+
*/
|
|
64293
|
+
select?: ImpactRadiusEventSelect<ExtArgs> | null
|
|
64294
|
+
/**
|
|
64295
|
+
* Choose, which related nodes to fetch as well.
|
|
64296
|
+
*/
|
|
64297
|
+
include?: ImpactRadiusEventInclude<ExtArgs> | null
|
|
64298
|
+
/**
|
|
64299
|
+
* Filter, which ImpactRadiusEvent to fetch.
|
|
64300
|
+
*/
|
|
64301
|
+
where?: ImpactRadiusEventWhereInput
|
|
64302
|
+
/**
|
|
64303
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
64304
|
+
*
|
|
64305
|
+
* Determine the order of ImpactRadiusEvents to fetch.
|
|
64306
|
+
*/
|
|
64307
|
+
orderBy?: ImpactRadiusEventOrderByWithRelationAndSearchRelevanceInput | ImpactRadiusEventOrderByWithRelationAndSearchRelevanceInput[]
|
|
64308
|
+
/**
|
|
64309
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
64310
|
+
*
|
|
64311
|
+
* Sets the position for searching for ImpactRadiusEvents.
|
|
64312
|
+
*/
|
|
64313
|
+
cursor?: ImpactRadiusEventWhereUniqueInput
|
|
64314
|
+
/**
|
|
64315
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
64316
|
+
*
|
|
64317
|
+
* Take `±n` ImpactRadiusEvents from the position of the cursor.
|
|
64318
|
+
*/
|
|
64319
|
+
take?: number
|
|
64320
|
+
/**
|
|
64321
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
64322
|
+
*
|
|
64323
|
+
* Skip the first `n` ImpactRadiusEvents.
|
|
64324
|
+
*/
|
|
64325
|
+
skip?: number
|
|
64326
|
+
/**
|
|
64327
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
64328
|
+
*
|
|
64329
|
+
* Filter by unique combinations of ImpactRadiusEvents.
|
|
64330
|
+
*/
|
|
64331
|
+
distinct?: ImpactRadiusEventScalarFieldEnum | ImpactRadiusEventScalarFieldEnum[]
|
|
64332
|
+
}
|
|
64333
|
+
|
|
64334
|
+
|
|
64335
|
+
/**
|
|
64336
|
+
* ImpactRadiusEvent findFirstOrThrow
|
|
64337
|
+
*/
|
|
64338
|
+
export type ImpactRadiusEventFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
64339
|
+
/**
|
|
64340
|
+
* Select specific fields to fetch from the ImpactRadiusEvent
|
|
64341
|
+
*/
|
|
64342
|
+
select?: ImpactRadiusEventSelect<ExtArgs> | null
|
|
64343
|
+
/**
|
|
64344
|
+
* Choose, which related nodes to fetch as well.
|
|
64345
|
+
*/
|
|
64346
|
+
include?: ImpactRadiusEventInclude<ExtArgs> | null
|
|
64347
|
+
/**
|
|
64348
|
+
* Filter, which ImpactRadiusEvent to fetch.
|
|
64349
|
+
*/
|
|
64350
|
+
where?: ImpactRadiusEventWhereInput
|
|
64351
|
+
/**
|
|
64352
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
64353
|
+
*
|
|
64354
|
+
* Determine the order of ImpactRadiusEvents to fetch.
|
|
64355
|
+
*/
|
|
64356
|
+
orderBy?: ImpactRadiusEventOrderByWithRelationAndSearchRelevanceInput | ImpactRadiusEventOrderByWithRelationAndSearchRelevanceInput[]
|
|
64357
|
+
/**
|
|
64358
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
64359
|
+
*
|
|
64360
|
+
* Sets the position for searching for ImpactRadiusEvents.
|
|
64361
|
+
*/
|
|
64362
|
+
cursor?: ImpactRadiusEventWhereUniqueInput
|
|
64363
|
+
/**
|
|
64364
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
64365
|
+
*
|
|
64366
|
+
* Take `±n` ImpactRadiusEvents from the position of the cursor.
|
|
64367
|
+
*/
|
|
64368
|
+
take?: number
|
|
64369
|
+
/**
|
|
64370
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
64371
|
+
*
|
|
64372
|
+
* Skip the first `n` ImpactRadiusEvents.
|
|
64373
|
+
*/
|
|
64374
|
+
skip?: number
|
|
64375
|
+
/**
|
|
64376
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
64377
|
+
*
|
|
64378
|
+
* Filter by unique combinations of ImpactRadiusEvents.
|
|
64379
|
+
*/
|
|
64380
|
+
distinct?: ImpactRadiusEventScalarFieldEnum | ImpactRadiusEventScalarFieldEnum[]
|
|
64381
|
+
}
|
|
64382
|
+
|
|
64383
|
+
|
|
64384
|
+
/**
|
|
64385
|
+
* ImpactRadiusEvent findMany
|
|
64386
|
+
*/
|
|
64387
|
+
export type ImpactRadiusEventFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
64388
|
+
/**
|
|
64389
|
+
* Select specific fields to fetch from the ImpactRadiusEvent
|
|
64390
|
+
*/
|
|
64391
|
+
select?: ImpactRadiusEventSelect<ExtArgs> | null
|
|
64392
|
+
/**
|
|
64393
|
+
* Choose, which related nodes to fetch as well.
|
|
64394
|
+
*/
|
|
64395
|
+
include?: ImpactRadiusEventInclude<ExtArgs> | null
|
|
64396
|
+
/**
|
|
64397
|
+
* Filter, which ImpactRadiusEvents to fetch.
|
|
64398
|
+
*/
|
|
64399
|
+
where?: ImpactRadiusEventWhereInput
|
|
64400
|
+
/**
|
|
64401
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
64402
|
+
*
|
|
64403
|
+
* Determine the order of ImpactRadiusEvents to fetch.
|
|
64404
|
+
*/
|
|
64405
|
+
orderBy?: ImpactRadiusEventOrderByWithRelationAndSearchRelevanceInput | ImpactRadiusEventOrderByWithRelationAndSearchRelevanceInput[]
|
|
64406
|
+
/**
|
|
64407
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
64408
|
+
*
|
|
64409
|
+
* Sets the position for listing ImpactRadiusEvents.
|
|
64410
|
+
*/
|
|
64411
|
+
cursor?: ImpactRadiusEventWhereUniqueInput
|
|
64412
|
+
/**
|
|
64413
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
64414
|
+
*
|
|
64415
|
+
* Take `±n` ImpactRadiusEvents from the position of the cursor.
|
|
64416
|
+
*/
|
|
64417
|
+
take?: number
|
|
64418
|
+
/**
|
|
64419
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
64420
|
+
*
|
|
64421
|
+
* Skip the first `n` ImpactRadiusEvents.
|
|
64422
|
+
*/
|
|
64423
|
+
skip?: number
|
|
64424
|
+
distinct?: ImpactRadiusEventScalarFieldEnum | ImpactRadiusEventScalarFieldEnum[]
|
|
64425
|
+
}
|
|
64426
|
+
|
|
64427
|
+
|
|
64428
|
+
/**
|
|
64429
|
+
* ImpactRadiusEvent create
|
|
64430
|
+
*/
|
|
64431
|
+
export type ImpactRadiusEventCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
64432
|
+
/**
|
|
64433
|
+
* Select specific fields to fetch from the ImpactRadiusEvent
|
|
64434
|
+
*/
|
|
64435
|
+
select?: ImpactRadiusEventSelect<ExtArgs> | null
|
|
64436
|
+
/**
|
|
64437
|
+
* Choose, which related nodes to fetch as well.
|
|
64438
|
+
*/
|
|
64439
|
+
include?: ImpactRadiusEventInclude<ExtArgs> | null
|
|
64440
|
+
/**
|
|
64441
|
+
* The data needed to create a ImpactRadiusEvent.
|
|
64442
|
+
*/
|
|
64443
|
+
data: XOR<ImpactRadiusEventCreateInput, ImpactRadiusEventUncheckedCreateInput>
|
|
64444
|
+
}
|
|
64445
|
+
|
|
64446
|
+
|
|
64447
|
+
/**
|
|
64448
|
+
* ImpactRadiusEvent createMany
|
|
64449
|
+
*/
|
|
64450
|
+
export type ImpactRadiusEventCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
64451
|
+
/**
|
|
64452
|
+
* The data used to create many ImpactRadiusEvents.
|
|
64453
|
+
*/
|
|
64454
|
+
data: ImpactRadiusEventCreateManyInput | ImpactRadiusEventCreateManyInput[]
|
|
64455
|
+
skipDuplicates?: boolean
|
|
64456
|
+
}
|
|
64457
|
+
|
|
64458
|
+
|
|
64459
|
+
/**
|
|
64460
|
+
* ImpactRadiusEvent update
|
|
64461
|
+
*/
|
|
64462
|
+
export type ImpactRadiusEventUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
64463
|
+
/**
|
|
64464
|
+
* Select specific fields to fetch from the ImpactRadiusEvent
|
|
64465
|
+
*/
|
|
64466
|
+
select?: ImpactRadiusEventSelect<ExtArgs> | null
|
|
64467
|
+
/**
|
|
64468
|
+
* Choose, which related nodes to fetch as well.
|
|
64469
|
+
*/
|
|
64470
|
+
include?: ImpactRadiusEventInclude<ExtArgs> | null
|
|
64471
|
+
/**
|
|
64472
|
+
* The data needed to update a ImpactRadiusEvent.
|
|
64473
|
+
*/
|
|
64474
|
+
data: XOR<ImpactRadiusEventUpdateInput, ImpactRadiusEventUncheckedUpdateInput>
|
|
64475
|
+
/**
|
|
64476
|
+
* Choose, which ImpactRadiusEvent to update.
|
|
64477
|
+
*/
|
|
64478
|
+
where: ImpactRadiusEventWhereUniqueInput
|
|
64479
|
+
}
|
|
64480
|
+
|
|
64481
|
+
|
|
64482
|
+
/**
|
|
64483
|
+
* ImpactRadiusEvent updateMany
|
|
64484
|
+
*/
|
|
64485
|
+
export type ImpactRadiusEventUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
64486
|
+
/**
|
|
64487
|
+
* The data used to update ImpactRadiusEvents.
|
|
64488
|
+
*/
|
|
64489
|
+
data: XOR<ImpactRadiusEventUpdateManyMutationInput, ImpactRadiusEventUncheckedUpdateManyInput>
|
|
64490
|
+
/**
|
|
64491
|
+
* Filter which ImpactRadiusEvents to update
|
|
64492
|
+
*/
|
|
64493
|
+
where?: ImpactRadiusEventWhereInput
|
|
64494
|
+
}
|
|
64495
|
+
|
|
64496
|
+
|
|
64497
|
+
/**
|
|
64498
|
+
* ImpactRadiusEvent upsert
|
|
64499
|
+
*/
|
|
64500
|
+
export type ImpactRadiusEventUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
64501
|
+
/**
|
|
64502
|
+
* Select specific fields to fetch from the ImpactRadiusEvent
|
|
64503
|
+
*/
|
|
64504
|
+
select?: ImpactRadiusEventSelect<ExtArgs> | null
|
|
64505
|
+
/**
|
|
64506
|
+
* Choose, which related nodes to fetch as well.
|
|
64507
|
+
*/
|
|
64508
|
+
include?: ImpactRadiusEventInclude<ExtArgs> | null
|
|
64509
|
+
/**
|
|
64510
|
+
* The filter to search for the ImpactRadiusEvent to update in case it exists.
|
|
64511
|
+
*/
|
|
64512
|
+
where: ImpactRadiusEventWhereUniqueInput
|
|
64513
|
+
/**
|
|
64514
|
+
* In case the ImpactRadiusEvent found by the `where` argument doesn't exist, create a new ImpactRadiusEvent with this data.
|
|
64515
|
+
*/
|
|
64516
|
+
create: XOR<ImpactRadiusEventCreateInput, ImpactRadiusEventUncheckedCreateInput>
|
|
64517
|
+
/**
|
|
64518
|
+
* In case the ImpactRadiusEvent was found with the provided `where` argument, update it with this data.
|
|
64519
|
+
*/
|
|
64520
|
+
update: XOR<ImpactRadiusEventUpdateInput, ImpactRadiusEventUncheckedUpdateInput>
|
|
64521
|
+
}
|
|
64522
|
+
|
|
64523
|
+
|
|
64524
|
+
/**
|
|
64525
|
+
* ImpactRadiusEvent delete
|
|
64526
|
+
*/
|
|
64527
|
+
export type ImpactRadiusEventDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
64528
|
+
/**
|
|
64529
|
+
* Select specific fields to fetch from the ImpactRadiusEvent
|
|
64530
|
+
*/
|
|
64531
|
+
select?: ImpactRadiusEventSelect<ExtArgs> | null
|
|
64532
|
+
/**
|
|
64533
|
+
* Choose, which related nodes to fetch as well.
|
|
64534
|
+
*/
|
|
64535
|
+
include?: ImpactRadiusEventInclude<ExtArgs> | null
|
|
64536
|
+
/**
|
|
64537
|
+
* Filter which ImpactRadiusEvent to delete.
|
|
64538
|
+
*/
|
|
64539
|
+
where: ImpactRadiusEventWhereUniqueInput
|
|
64540
|
+
}
|
|
64541
|
+
|
|
64542
|
+
|
|
64543
|
+
/**
|
|
64544
|
+
* ImpactRadiusEvent deleteMany
|
|
64545
|
+
*/
|
|
64546
|
+
export type ImpactRadiusEventDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
64547
|
+
/**
|
|
64548
|
+
* Filter which ImpactRadiusEvents to delete
|
|
64549
|
+
*/
|
|
64550
|
+
where?: ImpactRadiusEventWhereInput
|
|
64551
|
+
}
|
|
64552
|
+
|
|
64553
|
+
|
|
64554
|
+
/**
|
|
64555
|
+
* ImpactRadiusEvent.brand
|
|
64556
|
+
*/
|
|
64557
|
+
export type ImpactRadiusEvent$brandArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
64558
|
+
/**
|
|
64559
|
+
* Select specific fields to fetch from the Brand
|
|
64560
|
+
*/
|
|
64561
|
+
select?: BrandSelect<ExtArgs> | null
|
|
64562
|
+
/**
|
|
64563
|
+
* Choose, which related nodes to fetch as well.
|
|
64564
|
+
*/
|
|
64565
|
+
include?: BrandInclude<ExtArgs> | null
|
|
64566
|
+
where?: BrandWhereInput
|
|
64567
|
+
}
|
|
64568
|
+
|
|
64569
|
+
|
|
64570
|
+
/**
|
|
64571
|
+
* ImpactRadiusEvent without action
|
|
64572
|
+
*/
|
|
64573
|
+
export type ImpactRadiusEventDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
64574
|
+
/**
|
|
64575
|
+
* Select specific fields to fetch from the ImpactRadiusEvent
|
|
64576
|
+
*/
|
|
64577
|
+
select?: ImpactRadiusEventSelect<ExtArgs> | null
|
|
64578
|
+
/**
|
|
64579
|
+
* Choose, which related nodes to fetch as well.
|
|
64580
|
+
*/
|
|
64581
|
+
include?: ImpactRadiusEventInclude<ExtArgs> | null
|
|
64582
|
+
}
|
|
64583
|
+
|
|
64584
|
+
|
|
64585
|
+
|
|
64586
|
+
/**
|
|
64587
|
+
* Model CreatorSearchFilter
|
|
64588
|
+
*/
|
|
64589
|
+
|
|
64590
|
+
export type AggregateCreatorSearchFilter = {
|
|
64591
|
+
_count: CreatorSearchFilterCountAggregateOutputType | null
|
|
64592
|
+
_avg: CreatorSearchFilterAvgAggregateOutputType | null
|
|
64593
|
+
_sum: CreatorSearchFilterSumAggregateOutputType | null
|
|
64594
|
+
_min: CreatorSearchFilterMinAggregateOutputType | null
|
|
64595
|
+
_max: CreatorSearchFilterMaxAggregateOutputType | null
|
|
64596
|
+
}
|
|
64597
|
+
|
|
64598
|
+
export type CreatorSearchFilterAvgAggregateOutputType = {
|
|
64599
|
+
id: number | null
|
|
64600
|
+
brandId: number | null
|
|
64601
|
+
}
|
|
64602
|
+
|
|
64603
|
+
export type CreatorSearchFilterSumAggregateOutputType = {
|
|
64604
|
+
id: number | null
|
|
64605
|
+
brandId: number | null
|
|
64606
|
+
}
|
|
64607
|
+
|
|
64608
|
+
export type CreatorSearchFilterMinAggregateOutputType = {
|
|
64609
|
+
id: number | null
|
|
64610
|
+
brandId: number | null
|
|
64611
|
+
title: string | null
|
|
64612
|
+
createdAt: Date | null
|
|
64613
|
+
updatedAt: Date | null
|
|
64614
|
+
}
|
|
64615
|
+
|
|
64616
|
+
export type CreatorSearchFilterMaxAggregateOutputType = {
|
|
64617
|
+
id: number | null
|
|
64618
|
+
brandId: number | null
|
|
64619
|
+
title: string | null
|
|
64620
|
+
createdAt: Date | null
|
|
64621
|
+
updatedAt: Date | null
|
|
64622
|
+
}
|
|
64623
|
+
|
|
64624
|
+
export type CreatorSearchFilterCountAggregateOutputType = {
|
|
64625
|
+
id: number
|
|
64626
|
+
brandId: number
|
|
64627
|
+
title: number
|
|
64628
|
+
filters: number
|
|
64629
|
+
createdAt: number
|
|
64630
|
+
updatedAt: number
|
|
64631
|
+
_all: number
|
|
64632
|
+
}
|
|
64633
|
+
|
|
64634
|
+
|
|
64635
|
+
export type CreatorSearchFilterAvgAggregateInputType = {
|
|
64636
|
+
id?: true
|
|
64637
|
+
brandId?: true
|
|
64638
|
+
}
|
|
64639
|
+
|
|
64640
|
+
export type CreatorSearchFilterSumAggregateInputType = {
|
|
64641
|
+
id?: true
|
|
64642
|
+
brandId?: true
|
|
64643
|
+
}
|
|
64644
|
+
|
|
64645
|
+
export type CreatorSearchFilterMinAggregateInputType = {
|
|
64646
|
+
id?: true
|
|
64647
|
+
brandId?: true
|
|
64648
|
+
title?: true
|
|
64649
|
+
createdAt?: true
|
|
64650
|
+
updatedAt?: true
|
|
64651
|
+
}
|
|
64652
|
+
|
|
64653
|
+
export type CreatorSearchFilterMaxAggregateInputType = {
|
|
64654
|
+
id?: true
|
|
64655
|
+
brandId?: true
|
|
64656
|
+
title?: true
|
|
64657
|
+
createdAt?: true
|
|
64658
|
+
updatedAt?: true
|
|
64659
|
+
}
|
|
64660
|
+
|
|
64661
|
+
export type CreatorSearchFilterCountAggregateInputType = {
|
|
64662
|
+
id?: true
|
|
64663
|
+
brandId?: true
|
|
64664
|
+
title?: true
|
|
64665
|
+
filters?: true
|
|
64666
|
+
createdAt?: true
|
|
64667
|
+
updatedAt?: true
|
|
64668
|
+
_all?: true
|
|
64669
|
+
}
|
|
64670
|
+
|
|
64671
|
+
export type CreatorSearchFilterAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
64672
|
+
/**
|
|
64673
|
+
* Filter which CreatorSearchFilter to aggregate.
|
|
64674
|
+
*/
|
|
64675
|
+
where?: CreatorSearchFilterWhereInput
|
|
64676
|
+
/**
|
|
64677
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
64678
|
+
*
|
|
64679
|
+
* Determine the order of CreatorSearchFilters to fetch.
|
|
64680
|
+
*/
|
|
64681
|
+
orderBy?: CreatorSearchFilterOrderByWithRelationAndSearchRelevanceInput | CreatorSearchFilterOrderByWithRelationAndSearchRelevanceInput[]
|
|
64682
|
+
/**
|
|
64683
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
64684
|
+
*
|
|
64685
|
+
* Sets the start position
|
|
64686
|
+
*/
|
|
64687
|
+
cursor?: CreatorSearchFilterWhereUniqueInput
|
|
64688
|
+
/**
|
|
64689
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
64690
|
+
*
|
|
64691
|
+
* Take `±n` CreatorSearchFilters from the position of the cursor.
|
|
64692
|
+
*/
|
|
64693
|
+
take?: number
|
|
64694
|
+
/**
|
|
64695
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
64696
|
+
*
|
|
64697
|
+
* Skip the first `n` CreatorSearchFilters.
|
|
64698
|
+
*/
|
|
64699
|
+
skip?: number
|
|
64700
|
+
/**
|
|
64701
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
64702
|
+
*
|
|
64703
|
+
* Count returned CreatorSearchFilters
|
|
64704
|
+
**/
|
|
64705
|
+
_count?: true | CreatorSearchFilterCountAggregateInputType
|
|
64706
|
+
/**
|
|
64707
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
64708
|
+
*
|
|
64709
|
+
* Select which fields to average
|
|
64710
|
+
**/
|
|
64711
|
+
_avg?: CreatorSearchFilterAvgAggregateInputType
|
|
64712
|
+
/**
|
|
64713
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
64714
|
+
*
|
|
64715
|
+
* Select which fields to sum
|
|
64716
|
+
**/
|
|
64717
|
+
_sum?: CreatorSearchFilterSumAggregateInputType
|
|
64718
|
+
/**
|
|
64719
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
64720
|
+
*
|
|
64721
|
+
* Select which fields to find the minimum value
|
|
64722
|
+
**/
|
|
64723
|
+
_min?: CreatorSearchFilterMinAggregateInputType
|
|
64724
|
+
/**
|
|
64725
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
64726
|
+
*
|
|
64727
|
+
* Select which fields to find the maximum value
|
|
64728
|
+
**/
|
|
64729
|
+
_max?: CreatorSearchFilterMaxAggregateInputType
|
|
64730
|
+
}
|
|
64731
|
+
|
|
64732
|
+
export type GetCreatorSearchFilterAggregateType<T extends CreatorSearchFilterAggregateArgs> = {
|
|
64733
|
+
[P in keyof T & keyof AggregateCreatorSearchFilter]: P extends '_count' | 'count'
|
|
64734
|
+
? T[P] extends true
|
|
64735
|
+
? number
|
|
64736
|
+
: GetScalarType<T[P], AggregateCreatorSearchFilter[P]>
|
|
64737
|
+
: GetScalarType<T[P], AggregateCreatorSearchFilter[P]>
|
|
64738
|
+
}
|
|
64739
|
+
|
|
64740
|
+
|
|
64741
|
+
|
|
64742
|
+
|
|
64743
|
+
export type CreatorSearchFilterGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
64744
|
+
where?: CreatorSearchFilterWhereInput
|
|
64745
|
+
orderBy?: CreatorSearchFilterOrderByWithAggregationInput | CreatorSearchFilterOrderByWithAggregationInput[]
|
|
64746
|
+
by: CreatorSearchFilterScalarFieldEnum[] | CreatorSearchFilterScalarFieldEnum
|
|
64747
|
+
having?: CreatorSearchFilterScalarWhereWithAggregatesInput
|
|
64748
|
+
take?: number
|
|
64749
|
+
skip?: number
|
|
64750
|
+
_count?: CreatorSearchFilterCountAggregateInputType | true
|
|
64751
|
+
_avg?: CreatorSearchFilterAvgAggregateInputType
|
|
64752
|
+
_sum?: CreatorSearchFilterSumAggregateInputType
|
|
64753
|
+
_min?: CreatorSearchFilterMinAggregateInputType
|
|
64754
|
+
_max?: CreatorSearchFilterMaxAggregateInputType
|
|
64755
|
+
}
|
|
64756
|
+
|
|
64757
|
+
export type CreatorSearchFilterGroupByOutputType = {
|
|
64758
|
+
id: number
|
|
64759
|
+
brandId: number
|
|
64760
|
+
title: string
|
|
64761
|
+
filters: JsonValue
|
|
64762
|
+
createdAt: Date
|
|
64763
|
+
updatedAt: Date | null
|
|
64764
|
+
_count: CreatorSearchFilterCountAggregateOutputType | null
|
|
64765
|
+
_avg: CreatorSearchFilterAvgAggregateOutputType | null
|
|
64766
|
+
_sum: CreatorSearchFilterSumAggregateOutputType | null
|
|
64767
|
+
_min: CreatorSearchFilterMinAggregateOutputType | null
|
|
64768
|
+
_max: CreatorSearchFilterMaxAggregateOutputType | null
|
|
64769
|
+
}
|
|
64770
|
+
|
|
64771
|
+
type GetCreatorSearchFilterGroupByPayload<T extends CreatorSearchFilterGroupByArgs> = Prisma.PrismaPromise<
|
|
64772
|
+
Array<
|
|
64773
|
+
PickEnumerable<CreatorSearchFilterGroupByOutputType, T['by']> &
|
|
64774
|
+
{
|
|
64775
|
+
[P in ((keyof T) & (keyof CreatorSearchFilterGroupByOutputType))]: P extends '_count'
|
|
64776
|
+
? T[P] extends boolean
|
|
64777
|
+
? number
|
|
64778
|
+
: GetScalarType<T[P], CreatorSearchFilterGroupByOutputType[P]>
|
|
64779
|
+
: GetScalarType<T[P], CreatorSearchFilterGroupByOutputType[P]>
|
|
64780
|
+
}
|
|
64781
|
+
>
|
|
64782
|
+
>
|
|
64783
|
+
|
|
64784
|
+
|
|
64785
|
+
export type CreatorSearchFilterSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
64786
|
+
id?: boolean
|
|
64787
|
+
brandId?: boolean
|
|
64788
|
+
title?: boolean
|
|
64789
|
+
filters?: boolean
|
|
64790
|
+
createdAt?: boolean
|
|
64791
|
+
updatedAt?: boolean
|
|
64792
|
+
brand?: boolean | BrandDefaultArgs<ExtArgs>
|
|
64793
|
+
}, ExtArgs["result"]["creatorSearchFilter"]>
|
|
64794
|
+
|
|
64795
|
+
export type CreatorSearchFilterSelectScalar = {
|
|
64796
|
+
id?: boolean
|
|
64797
|
+
brandId?: boolean
|
|
64798
|
+
title?: boolean
|
|
64799
|
+
filters?: boolean
|
|
64800
|
+
createdAt?: boolean
|
|
64801
|
+
updatedAt?: boolean
|
|
64802
|
+
}
|
|
64803
|
+
|
|
64804
|
+
export type CreatorSearchFilterInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
64805
|
+
brand?: boolean | BrandDefaultArgs<ExtArgs>
|
|
64806
|
+
}
|
|
64807
|
+
|
|
64808
|
+
|
|
64809
|
+
export type $CreatorSearchFilterPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
64810
|
+
name: "CreatorSearchFilter"
|
|
64811
|
+
objects: {
|
|
64812
|
+
brand: Prisma.$BrandPayload<ExtArgs>
|
|
64813
|
+
}
|
|
64814
|
+
scalars: $Extensions.GetPayloadResult<{
|
|
64815
|
+
id: number
|
|
64816
|
+
brandId: number
|
|
64817
|
+
title: string
|
|
64818
|
+
filters: Prisma.JsonValue
|
|
64819
|
+
createdAt: Date
|
|
64820
|
+
updatedAt: Date | null
|
|
64821
|
+
}, ExtArgs["result"]["creatorSearchFilter"]>
|
|
64822
|
+
composites: {}
|
|
64823
|
+
}
|
|
64824
|
+
|
|
64825
|
+
|
|
64826
|
+
type CreatorSearchFilterGetPayload<S extends boolean | null | undefined | CreatorSearchFilterDefaultArgs> = $Result.GetResult<Prisma.$CreatorSearchFilterPayload, S>
|
|
64827
|
+
|
|
64828
|
+
type CreatorSearchFilterCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
64829
|
+
Omit<CreatorSearchFilterFindManyArgs, 'select' | 'include' | 'distinct' > & {
|
|
64830
|
+
select?: CreatorSearchFilterCountAggregateInputType | true
|
|
64831
|
+
}
|
|
64832
|
+
|
|
64833
|
+
export interface CreatorSearchFilterDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
64834
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['CreatorSearchFilter'], meta: { name: 'CreatorSearchFilter' } }
|
|
64835
|
+
/**
|
|
64836
|
+
* Find zero or one CreatorSearchFilter that matches the filter.
|
|
64837
|
+
* @param {CreatorSearchFilterFindUniqueArgs} args - Arguments to find a CreatorSearchFilter
|
|
64838
|
+
* @example
|
|
64839
|
+
* // Get one CreatorSearchFilter
|
|
64840
|
+
* const creatorSearchFilter = await prisma.creatorSearchFilter.findUnique({
|
|
64841
|
+
* where: {
|
|
64842
|
+
* // ... provide filter here
|
|
64843
|
+
* }
|
|
64844
|
+
* })
|
|
64845
|
+
**/
|
|
64846
|
+
findUnique<T extends CreatorSearchFilterFindUniqueArgs<ExtArgs>>(
|
|
64847
|
+
args: SelectSubset<T, CreatorSearchFilterFindUniqueArgs<ExtArgs>>
|
|
64848
|
+
): Prisma__CreatorSearchFilterClient<$Result.GetResult<Prisma.$CreatorSearchFilterPayload<ExtArgs>, T, 'findUnique'> | null, null, ExtArgs>
|
|
64849
|
+
|
|
64850
|
+
/**
|
|
64851
|
+
* Find one CreatorSearchFilter that matches the filter or throw an error with `error.code='P2025'`
|
|
64852
|
+
* if no matches were found.
|
|
64853
|
+
* @param {CreatorSearchFilterFindUniqueOrThrowArgs} args - Arguments to find a CreatorSearchFilter
|
|
64854
|
+
* @example
|
|
64855
|
+
* // Get one CreatorSearchFilter
|
|
64856
|
+
* const creatorSearchFilter = await prisma.creatorSearchFilter.findUniqueOrThrow({
|
|
64857
|
+
* where: {
|
|
64858
|
+
* // ... provide filter here
|
|
64859
|
+
* }
|
|
64860
|
+
* })
|
|
64861
|
+
**/
|
|
64862
|
+
findUniqueOrThrow<T extends CreatorSearchFilterFindUniqueOrThrowArgs<ExtArgs>>(
|
|
64863
|
+
args?: SelectSubset<T, CreatorSearchFilterFindUniqueOrThrowArgs<ExtArgs>>
|
|
64864
|
+
): Prisma__CreatorSearchFilterClient<$Result.GetResult<Prisma.$CreatorSearchFilterPayload<ExtArgs>, T, 'findUniqueOrThrow'>, never, ExtArgs>
|
|
64865
|
+
|
|
64866
|
+
/**
|
|
64867
|
+
* Find the first CreatorSearchFilter that matches the filter.
|
|
64868
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
64869
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
64870
|
+
* @param {CreatorSearchFilterFindFirstArgs} args - Arguments to find a CreatorSearchFilter
|
|
64871
|
+
* @example
|
|
64872
|
+
* // Get one CreatorSearchFilter
|
|
64873
|
+
* const creatorSearchFilter = await prisma.creatorSearchFilter.findFirst({
|
|
64874
|
+
* where: {
|
|
64875
|
+
* // ... provide filter here
|
|
64876
|
+
* }
|
|
64877
|
+
* })
|
|
64878
|
+
**/
|
|
64879
|
+
findFirst<T extends CreatorSearchFilterFindFirstArgs<ExtArgs>>(
|
|
64880
|
+
args?: SelectSubset<T, CreatorSearchFilterFindFirstArgs<ExtArgs>>
|
|
64881
|
+
): Prisma__CreatorSearchFilterClient<$Result.GetResult<Prisma.$CreatorSearchFilterPayload<ExtArgs>, T, 'findFirst'> | null, null, ExtArgs>
|
|
64882
|
+
|
|
64883
|
+
/**
|
|
64884
|
+
* Find the first CreatorSearchFilter that matches the filter or
|
|
64885
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
64886
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
64887
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
64888
|
+
* @param {CreatorSearchFilterFindFirstOrThrowArgs} args - Arguments to find a CreatorSearchFilter
|
|
64889
|
+
* @example
|
|
64890
|
+
* // Get one CreatorSearchFilter
|
|
64891
|
+
* const creatorSearchFilter = await prisma.creatorSearchFilter.findFirstOrThrow({
|
|
64892
|
+
* where: {
|
|
64893
|
+
* // ... provide filter here
|
|
64894
|
+
* }
|
|
64895
|
+
* })
|
|
64896
|
+
**/
|
|
64897
|
+
findFirstOrThrow<T extends CreatorSearchFilterFindFirstOrThrowArgs<ExtArgs>>(
|
|
64898
|
+
args?: SelectSubset<T, CreatorSearchFilterFindFirstOrThrowArgs<ExtArgs>>
|
|
64899
|
+
): Prisma__CreatorSearchFilterClient<$Result.GetResult<Prisma.$CreatorSearchFilterPayload<ExtArgs>, T, 'findFirstOrThrow'>, never, ExtArgs>
|
|
64900
|
+
|
|
64901
|
+
/**
|
|
64902
|
+
* Find zero or more CreatorSearchFilters that matches the filter.
|
|
64903
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
64904
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
64905
|
+
* @param {CreatorSearchFilterFindManyArgs=} args - Arguments to filter and select certain fields only.
|
|
64906
|
+
* @example
|
|
64907
|
+
* // Get all CreatorSearchFilters
|
|
64908
|
+
* const creatorSearchFilters = await prisma.creatorSearchFilter.findMany()
|
|
64909
|
+
*
|
|
64910
|
+
* // Get first 10 CreatorSearchFilters
|
|
64911
|
+
* const creatorSearchFilters = await prisma.creatorSearchFilter.findMany({ take: 10 })
|
|
64912
|
+
*
|
|
64913
|
+
* // Only select the `id`
|
|
64914
|
+
* const creatorSearchFilterWithIdOnly = await prisma.creatorSearchFilter.findMany({ select: { id: true } })
|
|
64915
|
+
*
|
|
64916
|
+
**/
|
|
64917
|
+
findMany<T extends CreatorSearchFilterFindManyArgs<ExtArgs>>(
|
|
64918
|
+
args?: SelectSubset<T, CreatorSearchFilterFindManyArgs<ExtArgs>>
|
|
64919
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CreatorSearchFilterPayload<ExtArgs>, T, 'findMany'>>
|
|
64920
|
+
|
|
64921
|
+
/**
|
|
64922
|
+
* Create a CreatorSearchFilter.
|
|
64923
|
+
* @param {CreatorSearchFilterCreateArgs} args - Arguments to create a CreatorSearchFilter.
|
|
64924
|
+
* @example
|
|
64925
|
+
* // Create one CreatorSearchFilter
|
|
64926
|
+
* const CreatorSearchFilter = await prisma.creatorSearchFilter.create({
|
|
64927
|
+
* data: {
|
|
64928
|
+
* // ... data to create a CreatorSearchFilter
|
|
64929
|
+
* }
|
|
64930
|
+
* })
|
|
64931
|
+
*
|
|
64932
|
+
**/
|
|
64933
|
+
create<T extends CreatorSearchFilterCreateArgs<ExtArgs>>(
|
|
64934
|
+
args: SelectSubset<T, CreatorSearchFilterCreateArgs<ExtArgs>>
|
|
64935
|
+
): Prisma__CreatorSearchFilterClient<$Result.GetResult<Prisma.$CreatorSearchFilterPayload<ExtArgs>, T, 'create'>, never, ExtArgs>
|
|
64936
|
+
|
|
64937
|
+
/**
|
|
64938
|
+
* Create many CreatorSearchFilters.
|
|
64939
|
+
* @param {CreatorSearchFilterCreateManyArgs} args - Arguments to create many CreatorSearchFilters.
|
|
64940
|
+
* @example
|
|
64941
|
+
* // Create many CreatorSearchFilters
|
|
64942
|
+
* const creatorSearchFilter = await prisma.creatorSearchFilter.createMany({
|
|
64943
|
+
* data: {
|
|
64944
|
+
* // ... provide data here
|
|
64945
|
+
* }
|
|
64946
|
+
* })
|
|
64947
|
+
*
|
|
64948
|
+
**/
|
|
64949
|
+
createMany<T extends CreatorSearchFilterCreateManyArgs<ExtArgs>>(
|
|
64950
|
+
args?: SelectSubset<T, CreatorSearchFilterCreateManyArgs<ExtArgs>>
|
|
64951
|
+
): Prisma.PrismaPromise<BatchPayload>
|
|
64952
|
+
|
|
64953
|
+
/**
|
|
64954
|
+
* Delete a CreatorSearchFilter.
|
|
64955
|
+
* @param {CreatorSearchFilterDeleteArgs} args - Arguments to delete one CreatorSearchFilter.
|
|
64956
|
+
* @example
|
|
64957
|
+
* // Delete one CreatorSearchFilter
|
|
64958
|
+
* const CreatorSearchFilter = await prisma.creatorSearchFilter.delete({
|
|
64959
|
+
* where: {
|
|
64960
|
+
* // ... filter to delete one CreatorSearchFilter
|
|
64961
|
+
* }
|
|
64962
|
+
* })
|
|
64963
|
+
*
|
|
64964
|
+
**/
|
|
64965
|
+
delete<T extends CreatorSearchFilterDeleteArgs<ExtArgs>>(
|
|
64966
|
+
args: SelectSubset<T, CreatorSearchFilterDeleteArgs<ExtArgs>>
|
|
64967
|
+
): Prisma__CreatorSearchFilterClient<$Result.GetResult<Prisma.$CreatorSearchFilterPayload<ExtArgs>, T, 'delete'>, never, ExtArgs>
|
|
64968
|
+
|
|
64969
|
+
/**
|
|
64970
|
+
* Update one CreatorSearchFilter.
|
|
64971
|
+
* @param {CreatorSearchFilterUpdateArgs} args - Arguments to update one CreatorSearchFilter.
|
|
64972
|
+
* @example
|
|
64973
|
+
* // Update one CreatorSearchFilter
|
|
64974
|
+
* const creatorSearchFilter = await prisma.creatorSearchFilter.update({
|
|
64975
|
+
* where: {
|
|
64976
|
+
* // ... provide filter here
|
|
64977
|
+
* },
|
|
64978
|
+
* data: {
|
|
64979
|
+
* // ... provide data here
|
|
64980
|
+
* }
|
|
64981
|
+
* })
|
|
64982
|
+
*
|
|
64983
|
+
**/
|
|
64984
|
+
update<T extends CreatorSearchFilterUpdateArgs<ExtArgs>>(
|
|
64985
|
+
args: SelectSubset<T, CreatorSearchFilterUpdateArgs<ExtArgs>>
|
|
64986
|
+
): Prisma__CreatorSearchFilterClient<$Result.GetResult<Prisma.$CreatorSearchFilterPayload<ExtArgs>, T, 'update'>, never, ExtArgs>
|
|
64987
|
+
|
|
64988
|
+
/**
|
|
64989
|
+
* Delete zero or more CreatorSearchFilters.
|
|
64990
|
+
* @param {CreatorSearchFilterDeleteManyArgs} args - Arguments to filter CreatorSearchFilters to delete.
|
|
64991
|
+
* @example
|
|
64992
|
+
* // Delete a few CreatorSearchFilters
|
|
64993
|
+
* const { count } = await prisma.creatorSearchFilter.deleteMany({
|
|
64994
|
+
* where: {
|
|
64995
|
+
* // ... provide filter here
|
|
64996
|
+
* }
|
|
64997
|
+
* })
|
|
64998
|
+
*
|
|
64999
|
+
**/
|
|
65000
|
+
deleteMany<T extends CreatorSearchFilterDeleteManyArgs<ExtArgs>>(
|
|
65001
|
+
args?: SelectSubset<T, CreatorSearchFilterDeleteManyArgs<ExtArgs>>
|
|
65002
|
+
): Prisma.PrismaPromise<BatchPayload>
|
|
65003
|
+
|
|
65004
|
+
/**
|
|
65005
|
+
* Update zero or more CreatorSearchFilters.
|
|
65006
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
65007
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
65008
|
+
* @param {CreatorSearchFilterUpdateManyArgs} args - Arguments to update one or more rows.
|
|
65009
|
+
* @example
|
|
65010
|
+
* // Update many CreatorSearchFilters
|
|
65011
|
+
* const creatorSearchFilter = await prisma.creatorSearchFilter.updateMany({
|
|
65012
|
+
* where: {
|
|
65013
|
+
* // ... provide filter here
|
|
65014
|
+
* },
|
|
65015
|
+
* data: {
|
|
65016
|
+
* // ... provide data here
|
|
65017
|
+
* }
|
|
65018
|
+
* })
|
|
65019
|
+
*
|
|
65020
|
+
**/
|
|
65021
|
+
updateMany<T extends CreatorSearchFilterUpdateManyArgs<ExtArgs>>(
|
|
65022
|
+
args: SelectSubset<T, CreatorSearchFilterUpdateManyArgs<ExtArgs>>
|
|
65023
|
+
): Prisma.PrismaPromise<BatchPayload>
|
|
65024
|
+
|
|
65025
|
+
/**
|
|
65026
|
+
* Create or update one CreatorSearchFilter.
|
|
65027
|
+
* @param {CreatorSearchFilterUpsertArgs} args - Arguments to update or create a CreatorSearchFilter.
|
|
65028
|
+
* @example
|
|
65029
|
+
* // Update or create a CreatorSearchFilter
|
|
65030
|
+
* const creatorSearchFilter = await prisma.creatorSearchFilter.upsert({
|
|
65031
|
+
* create: {
|
|
65032
|
+
* // ... data to create a CreatorSearchFilter
|
|
65033
|
+
* },
|
|
65034
|
+
* update: {
|
|
65035
|
+
* // ... in case it already exists, update
|
|
65036
|
+
* },
|
|
65037
|
+
* where: {
|
|
65038
|
+
* // ... the filter for the CreatorSearchFilter we want to update
|
|
65039
|
+
* }
|
|
65040
|
+
* })
|
|
65041
|
+
**/
|
|
65042
|
+
upsert<T extends CreatorSearchFilterUpsertArgs<ExtArgs>>(
|
|
65043
|
+
args: SelectSubset<T, CreatorSearchFilterUpsertArgs<ExtArgs>>
|
|
65044
|
+
): Prisma__CreatorSearchFilterClient<$Result.GetResult<Prisma.$CreatorSearchFilterPayload<ExtArgs>, T, 'upsert'>, never, ExtArgs>
|
|
65045
|
+
|
|
65046
|
+
/**
|
|
65047
|
+
* Count the number of CreatorSearchFilters.
|
|
65048
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
65049
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
65050
|
+
* @param {CreatorSearchFilterCountArgs} args - Arguments to filter CreatorSearchFilters to count.
|
|
65051
|
+
* @example
|
|
65052
|
+
* // Count the number of CreatorSearchFilters
|
|
65053
|
+
* const count = await prisma.creatorSearchFilter.count({
|
|
65054
|
+
* where: {
|
|
65055
|
+
* // ... the filter for the CreatorSearchFilters we want to count
|
|
65056
|
+
* }
|
|
65057
|
+
* })
|
|
65058
|
+
**/
|
|
65059
|
+
count<T extends CreatorSearchFilterCountArgs>(
|
|
65060
|
+
args?: Subset<T, CreatorSearchFilterCountArgs>,
|
|
65061
|
+
): Prisma.PrismaPromise<
|
|
65062
|
+
T extends $Utils.Record<'select', any>
|
|
65063
|
+
? T['select'] extends true
|
|
65064
|
+
? number
|
|
65065
|
+
: GetScalarType<T['select'], CreatorSearchFilterCountAggregateOutputType>
|
|
65066
|
+
: number
|
|
65067
|
+
>
|
|
65068
|
+
|
|
65069
|
+
/**
|
|
65070
|
+
* Allows you to perform aggregations operations on a CreatorSearchFilter.
|
|
65071
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
65072
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
65073
|
+
* @param {CreatorSearchFilterAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
65074
|
+
* @example
|
|
65075
|
+
* // Ordered by age ascending
|
|
65076
|
+
* // Where email contains prisma.io
|
|
65077
|
+
* // Limited to the 10 users
|
|
65078
|
+
* const aggregations = await prisma.user.aggregate({
|
|
65079
|
+
* _avg: {
|
|
65080
|
+
* age: true,
|
|
65081
|
+
* },
|
|
65082
|
+
* where: {
|
|
65083
|
+
* email: {
|
|
65084
|
+
* contains: "prisma.io",
|
|
65085
|
+
* },
|
|
65086
|
+
* },
|
|
65087
|
+
* orderBy: {
|
|
65088
|
+
* age: "asc",
|
|
65089
|
+
* },
|
|
65090
|
+
* take: 10,
|
|
65091
|
+
* })
|
|
65092
|
+
**/
|
|
65093
|
+
aggregate<T extends CreatorSearchFilterAggregateArgs>(args: Subset<T, CreatorSearchFilterAggregateArgs>): Prisma.PrismaPromise<GetCreatorSearchFilterAggregateType<T>>
|
|
65094
|
+
|
|
65095
|
+
/**
|
|
65096
|
+
* Group by CreatorSearchFilter.
|
|
65097
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
65098
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
65099
|
+
* @param {CreatorSearchFilterGroupByArgs} args - Group by arguments.
|
|
65100
|
+
* @example
|
|
65101
|
+
* // Group by city, order by createdAt, get count
|
|
65102
|
+
* const result = await prisma.user.groupBy({
|
|
65103
|
+
* by: ['city', 'createdAt'],
|
|
65104
|
+
* orderBy: {
|
|
65105
|
+
* createdAt: true
|
|
65106
|
+
* },
|
|
65107
|
+
* _count: {
|
|
65108
|
+
* _all: true
|
|
65109
|
+
* },
|
|
65110
|
+
* })
|
|
65111
|
+
*
|
|
65112
|
+
**/
|
|
65113
|
+
groupBy<
|
|
65114
|
+
T extends CreatorSearchFilterGroupByArgs,
|
|
65115
|
+
HasSelectOrTake extends Or<
|
|
65116
|
+
Extends<'skip', Keys<T>>,
|
|
65117
|
+
Extends<'take', Keys<T>>
|
|
65118
|
+
>,
|
|
65119
|
+
OrderByArg extends True extends HasSelectOrTake
|
|
65120
|
+
? { orderBy: CreatorSearchFilterGroupByArgs['orderBy'] }
|
|
65121
|
+
: { orderBy?: CreatorSearchFilterGroupByArgs['orderBy'] },
|
|
63950
65122
|
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
63951
65123
|
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
63952
65124
|
ByValid extends Has<ByFields, OrderFields>,
|
|
@@ -70247,6 +71419,20 @@ export namespace Prisma {
|
|
|
70247
71419
|
export type RakutenActivityScalarFieldEnum = (typeof RakutenActivityScalarFieldEnum)[keyof typeof RakutenActivityScalarFieldEnum]
|
|
70248
71420
|
|
|
70249
71421
|
|
|
71422
|
+
export const ImpactRadiusEventScalarFieldEnum: {
|
|
71423
|
+
id: 'id',
|
|
71424
|
+
type: 'type',
|
|
71425
|
+
created: 'created',
|
|
71426
|
+
amount: 'amount',
|
|
71427
|
+
commission: 'commission',
|
|
71428
|
+
metaData: 'metaData',
|
|
71429
|
+
userId: 'userId',
|
|
71430
|
+
brandId: 'brandId'
|
|
71431
|
+
};
|
|
71432
|
+
|
|
71433
|
+
export type ImpactRadiusEventScalarFieldEnum = (typeof ImpactRadiusEventScalarFieldEnum)[keyof typeof ImpactRadiusEventScalarFieldEnum]
|
|
71434
|
+
|
|
71435
|
+
|
|
70250
71436
|
export const CreatorSearchFilterScalarFieldEnum: {
|
|
70251
71437
|
id: 'id',
|
|
70252
71438
|
brandId: 'brandId',
|
|
@@ -70774,6 +71960,13 @@ export namespace Prisma {
|
|
|
70774
71960
|
export type RakutenActivityOrderByRelevanceFieldEnum = (typeof RakutenActivityOrderByRelevanceFieldEnum)[keyof typeof RakutenActivityOrderByRelevanceFieldEnum]
|
|
70775
71961
|
|
|
70776
71962
|
|
|
71963
|
+
export const ImpactRadiusEventOrderByRelevanceFieldEnum: {
|
|
71964
|
+
type: 'type'
|
|
71965
|
+
};
|
|
71966
|
+
|
|
71967
|
+
export type ImpactRadiusEventOrderByRelevanceFieldEnum = (typeof ImpactRadiusEventOrderByRelevanceFieldEnum)[keyof typeof ImpactRadiusEventOrderByRelevanceFieldEnum]
|
|
71968
|
+
|
|
71969
|
+
|
|
70777
71970
|
export const CreatorSearchFilterOrderByRelevanceFieldEnum: {
|
|
70778
71971
|
title: 'title'
|
|
70779
71972
|
};
|
|
@@ -70916,6 +72109,7 @@ export namespace Prisma {
|
|
|
70916
72109
|
campaignPins?: CampaignPinListRelationFilter
|
|
70917
72110
|
socialProfiles?: SocialProfileListRelationFilter
|
|
70918
72111
|
rakutenActivity?: RakutenActivityListRelationFilter
|
|
72112
|
+
impactRadiusEvents?: ImpactRadiusEventListRelationFilter
|
|
70919
72113
|
}
|
|
70920
72114
|
|
|
70921
72115
|
export type UserOrderByWithRelationAndSearchRelevanceInput = {
|
|
@@ -70958,6 +72152,7 @@ export namespace Prisma {
|
|
|
70958
72152
|
campaignPins?: CampaignPinOrderByRelationAggregateInput
|
|
70959
72153
|
socialProfiles?: SocialProfileOrderByRelationAggregateInput
|
|
70960
72154
|
rakutenActivity?: RakutenActivityOrderByRelationAggregateInput
|
|
72155
|
+
impactRadiusEvents?: ImpactRadiusEventOrderByRelationAggregateInput
|
|
70961
72156
|
_relevance?: UserOrderByRelevanceInput
|
|
70962
72157
|
}
|
|
70963
72158
|
|
|
@@ -71004,6 +72199,7 @@ export namespace Prisma {
|
|
|
71004
72199
|
campaignPins?: CampaignPinListRelationFilter
|
|
71005
72200
|
socialProfiles?: SocialProfileListRelationFilter
|
|
71006
72201
|
rakutenActivity?: RakutenActivityListRelationFilter
|
|
72202
|
+
impactRadiusEvents?: ImpactRadiusEventListRelationFilter
|
|
71007
72203
|
}, "id" | "email" | "forgotPasswordKey" | "affiliateSlug">
|
|
71008
72204
|
|
|
71009
72205
|
export type UserOrderByWithAggregationInput = {
|
|
@@ -72075,6 +73271,7 @@ export namespace Prisma {
|
|
|
72075
73271
|
images?: BrandToImageListRelationFilter
|
|
72076
73272
|
creatorsearchfilter?: CreatorSearchFilterListRelationFilter
|
|
72077
73273
|
sequences?: SequenceListRelationFilter
|
|
73274
|
+
impactRadiusEvents?: ImpactRadiusEventListRelationFilter
|
|
72078
73275
|
parentBrand?: XOR<BrandNullableRelationFilter, BrandWhereInput> | null
|
|
72079
73276
|
childBrands?: BrandListRelationFilter
|
|
72080
73277
|
}
|
|
@@ -72113,6 +73310,7 @@ export namespace Prisma {
|
|
|
72113
73310
|
images?: BrandToImageOrderByRelationAggregateInput
|
|
72114
73311
|
creatorsearchfilter?: CreatorSearchFilterOrderByRelationAggregateInput
|
|
72115
73312
|
sequences?: SequenceOrderByRelationAggregateInput
|
|
73313
|
+
impactRadiusEvents?: ImpactRadiusEventOrderByRelationAggregateInput
|
|
72116
73314
|
parentBrand?: BrandOrderByWithRelationAndSearchRelevanceInput
|
|
72117
73315
|
childBrands?: BrandOrderByRelationAggregateInput
|
|
72118
73316
|
_relevance?: BrandOrderByRelevanceInput
|
|
@@ -72155,6 +73353,7 @@ export namespace Prisma {
|
|
|
72155
73353
|
images?: BrandToImageListRelationFilter
|
|
72156
73354
|
creatorsearchfilter?: CreatorSearchFilterListRelationFilter
|
|
72157
73355
|
sequences?: SequenceListRelationFilter
|
|
73356
|
+
impactRadiusEvents?: ImpactRadiusEventListRelationFilter
|
|
72158
73357
|
parentBrand?: XOR<BrandNullableRelationFilter, BrandWhereInput> | null
|
|
72159
73358
|
childBrands?: BrandListRelationFilter
|
|
72160
73359
|
}, "id">
|
|
@@ -75459,6 +76658,82 @@ export namespace Prisma {
|
|
|
75459
76658
|
userId?: IntWithAggregatesFilter<"RakutenActivity"> | number
|
|
75460
76659
|
}
|
|
75461
76660
|
|
|
76661
|
+
export type ImpactRadiusEventWhereInput = {
|
|
76662
|
+
AND?: ImpactRadiusEventWhereInput | ImpactRadiusEventWhereInput[]
|
|
76663
|
+
OR?: ImpactRadiusEventWhereInput[]
|
|
76664
|
+
NOT?: ImpactRadiusEventWhereInput | ImpactRadiusEventWhereInput[]
|
|
76665
|
+
id?: IntFilter<"ImpactRadiusEvent"> | number
|
|
76666
|
+
type?: StringFilter<"ImpactRadiusEvent"> | string
|
|
76667
|
+
created?: DateTimeFilter<"ImpactRadiusEvent"> | Date | string
|
|
76668
|
+
amount?: FloatNullableFilter<"ImpactRadiusEvent"> | number | null
|
|
76669
|
+
commission?: FloatNullableFilter<"ImpactRadiusEvent"> | number | null
|
|
76670
|
+
metaData?: JsonFilter<"ImpactRadiusEvent">
|
|
76671
|
+
userId?: IntFilter<"ImpactRadiusEvent"> | number
|
|
76672
|
+
brandId?: IntNullableFilter<"ImpactRadiusEvent"> | number | null
|
|
76673
|
+
user?: XOR<UserRelationFilter, UserWhereInput>
|
|
76674
|
+
brand?: XOR<BrandNullableRelationFilter, BrandWhereInput> | null
|
|
76675
|
+
}
|
|
76676
|
+
|
|
76677
|
+
export type ImpactRadiusEventOrderByWithRelationAndSearchRelevanceInput = {
|
|
76678
|
+
id?: SortOrder
|
|
76679
|
+
type?: SortOrder
|
|
76680
|
+
created?: SortOrder
|
|
76681
|
+
amount?: SortOrderInput | SortOrder
|
|
76682
|
+
commission?: SortOrderInput | SortOrder
|
|
76683
|
+
metaData?: SortOrder
|
|
76684
|
+
userId?: SortOrder
|
|
76685
|
+
brandId?: SortOrderInput | SortOrder
|
|
76686
|
+
user?: UserOrderByWithRelationAndSearchRelevanceInput
|
|
76687
|
+
brand?: BrandOrderByWithRelationAndSearchRelevanceInput
|
|
76688
|
+
_relevance?: ImpactRadiusEventOrderByRelevanceInput
|
|
76689
|
+
}
|
|
76690
|
+
|
|
76691
|
+
export type ImpactRadiusEventWhereUniqueInput = Prisma.AtLeast<{
|
|
76692
|
+
id?: number
|
|
76693
|
+
AND?: ImpactRadiusEventWhereInput | ImpactRadiusEventWhereInput[]
|
|
76694
|
+
OR?: ImpactRadiusEventWhereInput[]
|
|
76695
|
+
NOT?: ImpactRadiusEventWhereInput | ImpactRadiusEventWhereInput[]
|
|
76696
|
+
type?: StringFilter<"ImpactRadiusEvent"> | string
|
|
76697
|
+
created?: DateTimeFilter<"ImpactRadiusEvent"> | Date | string
|
|
76698
|
+
amount?: FloatNullableFilter<"ImpactRadiusEvent"> | number | null
|
|
76699
|
+
commission?: FloatNullableFilter<"ImpactRadiusEvent"> | number | null
|
|
76700
|
+
metaData?: JsonFilter<"ImpactRadiusEvent">
|
|
76701
|
+
userId?: IntFilter<"ImpactRadiusEvent"> | number
|
|
76702
|
+
brandId?: IntNullableFilter<"ImpactRadiusEvent"> | number | null
|
|
76703
|
+
user?: XOR<UserRelationFilter, UserWhereInput>
|
|
76704
|
+
brand?: XOR<BrandNullableRelationFilter, BrandWhereInput> | null
|
|
76705
|
+
}, "id">
|
|
76706
|
+
|
|
76707
|
+
export type ImpactRadiusEventOrderByWithAggregationInput = {
|
|
76708
|
+
id?: SortOrder
|
|
76709
|
+
type?: SortOrder
|
|
76710
|
+
created?: SortOrder
|
|
76711
|
+
amount?: SortOrderInput | SortOrder
|
|
76712
|
+
commission?: SortOrderInput | SortOrder
|
|
76713
|
+
metaData?: SortOrder
|
|
76714
|
+
userId?: SortOrder
|
|
76715
|
+
brandId?: SortOrderInput | SortOrder
|
|
76716
|
+
_count?: ImpactRadiusEventCountOrderByAggregateInput
|
|
76717
|
+
_avg?: ImpactRadiusEventAvgOrderByAggregateInput
|
|
76718
|
+
_max?: ImpactRadiusEventMaxOrderByAggregateInput
|
|
76719
|
+
_min?: ImpactRadiusEventMinOrderByAggregateInput
|
|
76720
|
+
_sum?: ImpactRadiusEventSumOrderByAggregateInput
|
|
76721
|
+
}
|
|
76722
|
+
|
|
76723
|
+
export type ImpactRadiusEventScalarWhereWithAggregatesInput = {
|
|
76724
|
+
AND?: ImpactRadiusEventScalarWhereWithAggregatesInput | ImpactRadiusEventScalarWhereWithAggregatesInput[]
|
|
76725
|
+
OR?: ImpactRadiusEventScalarWhereWithAggregatesInput[]
|
|
76726
|
+
NOT?: ImpactRadiusEventScalarWhereWithAggregatesInput | ImpactRadiusEventScalarWhereWithAggregatesInput[]
|
|
76727
|
+
id?: IntWithAggregatesFilter<"ImpactRadiusEvent"> | number
|
|
76728
|
+
type?: StringWithAggregatesFilter<"ImpactRadiusEvent"> | string
|
|
76729
|
+
created?: DateTimeWithAggregatesFilter<"ImpactRadiusEvent"> | Date | string
|
|
76730
|
+
amount?: FloatNullableWithAggregatesFilter<"ImpactRadiusEvent"> | number | null
|
|
76731
|
+
commission?: FloatNullableWithAggregatesFilter<"ImpactRadiusEvent"> | number | null
|
|
76732
|
+
metaData?: JsonWithAggregatesFilter<"ImpactRadiusEvent">
|
|
76733
|
+
userId?: IntWithAggregatesFilter<"ImpactRadiusEvent"> | number
|
|
76734
|
+
brandId?: IntNullableWithAggregatesFilter<"ImpactRadiusEvent"> | number | null
|
|
76735
|
+
}
|
|
76736
|
+
|
|
75462
76737
|
export type CreatorSearchFilterWhereInput = {
|
|
75463
76738
|
AND?: CreatorSearchFilterWhereInput | CreatorSearchFilterWhereInput[]
|
|
75464
76739
|
OR?: CreatorSearchFilterWhereInput[]
|
|
@@ -75909,6 +77184,7 @@ export namespace Prisma {
|
|
|
75909
77184
|
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
75910
77185
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
75911
77186
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
77187
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
75912
77188
|
}
|
|
75913
77189
|
|
|
75914
77190
|
export type UserUncheckedCreateInput = {
|
|
@@ -75950,6 +77226,7 @@ export namespace Prisma {
|
|
|
75950
77226
|
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
75951
77227
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
75952
77228
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
77229
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
75953
77230
|
}
|
|
75954
77231
|
|
|
75955
77232
|
export type UserUpdateInput = {
|
|
@@ -75990,6 +77267,7 @@ export namespace Prisma {
|
|
|
75990
77267
|
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
75991
77268
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
75992
77269
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
77270
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
75993
77271
|
}
|
|
75994
77272
|
|
|
75995
77273
|
export type UserUncheckedUpdateInput = {
|
|
@@ -76031,6 +77309,7 @@ export namespace Prisma {
|
|
|
76031
77309
|
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
76032
77310
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
76033
77311
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
77312
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
76034
77313
|
}
|
|
76035
77314
|
|
|
76036
77315
|
export type UserCreateManyInput = {
|
|
@@ -77220,6 +78499,7 @@ export namespace Prisma {
|
|
|
77220
78499
|
images?: BrandToImageCreateNestedManyWithoutBrandInput
|
|
77221
78500
|
creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
|
|
77222
78501
|
sequences?: SequenceCreateNestedManyWithoutBrandInput
|
|
78502
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutBrandInput
|
|
77223
78503
|
parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
|
|
77224
78504
|
childBrands?: BrandCreateNestedManyWithoutParentBrandInput
|
|
77225
78505
|
}
|
|
@@ -77257,6 +78537,7 @@ export namespace Prisma {
|
|
|
77257
78537
|
images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
|
|
77258
78538
|
creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
|
|
77259
78539
|
sequences?: SequenceUncheckedCreateNestedManyWithoutBrandInput
|
|
78540
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutBrandInput
|
|
77260
78541
|
childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
|
|
77261
78542
|
}
|
|
77262
78543
|
|
|
@@ -77291,6 +78572,7 @@ export namespace Prisma {
|
|
|
77291
78572
|
images?: BrandToImageUpdateManyWithoutBrandNestedInput
|
|
77292
78573
|
creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
|
|
77293
78574
|
sequences?: SequenceUpdateManyWithoutBrandNestedInput
|
|
78575
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutBrandNestedInput
|
|
77294
78576
|
parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
|
|
77295
78577
|
childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
|
|
77296
78578
|
}
|
|
@@ -77328,6 +78610,7 @@ export namespace Prisma {
|
|
|
77328
78610
|
images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
|
|
77329
78611
|
creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
|
|
77330
78612
|
sequences?: SequenceUncheckedUpdateManyWithoutBrandNestedInput
|
|
78613
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutBrandNestedInput
|
|
77331
78614
|
childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
|
|
77332
78615
|
}
|
|
77333
78616
|
|
|
@@ -80620,6 +81903,78 @@ export namespace Prisma {
|
|
|
80620
81903
|
userId?: IntFieldUpdateOperationsInput | number
|
|
80621
81904
|
}
|
|
80622
81905
|
|
|
81906
|
+
export type ImpactRadiusEventCreateInput = {
|
|
81907
|
+
type: string
|
|
81908
|
+
created?: Date | string
|
|
81909
|
+
amount?: number | null
|
|
81910
|
+
commission?: number | null
|
|
81911
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
81912
|
+
user: UserCreateNestedOneWithoutImpactRadiusEventsInput
|
|
81913
|
+
brand?: BrandCreateNestedOneWithoutImpactRadiusEventsInput
|
|
81914
|
+
}
|
|
81915
|
+
|
|
81916
|
+
export type ImpactRadiusEventUncheckedCreateInput = {
|
|
81917
|
+
id?: number
|
|
81918
|
+
type: string
|
|
81919
|
+
created?: Date | string
|
|
81920
|
+
amount?: number | null
|
|
81921
|
+
commission?: number | null
|
|
81922
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
81923
|
+
userId: number
|
|
81924
|
+
brandId?: number | null
|
|
81925
|
+
}
|
|
81926
|
+
|
|
81927
|
+
export type ImpactRadiusEventUpdateInput = {
|
|
81928
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
81929
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
81930
|
+
amount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
81931
|
+
commission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
81932
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
81933
|
+
user?: UserUpdateOneRequiredWithoutImpactRadiusEventsNestedInput
|
|
81934
|
+
brand?: BrandUpdateOneWithoutImpactRadiusEventsNestedInput
|
|
81935
|
+
}
|
|
81936
|
+
|
|
81937
|
+
export type ImpactRadiusEventUncheckedUpdateInput = {
|
|
81938
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
81939
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
81940
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
81941
|
+
amount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
81942
|
+
commission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
81943
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
81944
|
+
userId?: IntFieldUpdateOperationsInput | number
|
|
81945
|
+
brandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
81946
|
+
}
|
|
81947
|
+
|
|
81948
|
+
export type ImpactRadiusEventCreateManyInput = {
|
|
81949
|
+
id?: number
|
|
81950
|
+
type: string
|
|
81951
|
+
created?: Date | string
|
|
81952
|
+
amount?: number | null
|
|
81953
|
+
commission?: number | null
|
|
81954
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
81955
|
+
userId: number
|
|
81956
|
+
brandId?: number | null
|
|
81957
|
+
}
|
|
81958
|
+
|
|
81959
|
+
export type ImpactRadiusEventUpdateManyMutationInput = {
|
|
81960
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
81961
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
81962
|
+
amount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
81963
|
+
commission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
81964
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
81965
|
+
}
|
|
81966
|
+
|
|
81967
|
+
export type ImpactRadiusEventUncheckedUpdateManyInput = {
|
|
81968
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
81969
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
81970
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
81971
|
+
amount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
81972
|
+
commission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
81973
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
81974
|
+
userId?: IntFieldUpdateOperationsInput | number
|
|
81975
|
+
brandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
81976
|
+
}
|
|
81977
|
+
|
|
80623
81978
|
export type CreatorSearchFilterCreateInput = {
|
|
80624
81979
|
title: string
|
|
80625
81980
|
filters?: JsonNullValueInput | InputJsonValue
|
|
@@ -81200,6 +82555,12 @@ export namespace Prisma {
|
|
|
81200
82555
|
none?: RakutenActivityWhereInput
|
|
81201
82556
|
}
|
|
81202
82557
|
|
|
82558
|
+
export type ImpactRadiusEventListRelationFilter = {
|
|
82559
|
+
every?: ImpactRadiusEventWhereInput
|
|
82560
|
+
some?: ImpactRadiusEventWhereInput
|
|
82561
|
+
none?: ImpactRadiusEventWhereInput
|
|
82562
|
+
}
|
|
82563
|
+
|
|
81203
82564
|
export type SortOrderInput = {
|
|
81204
82565
|
sort: SortOrder
|
|
81205
82566
|
nulls?: NullsOrder
|
|
@@ -81253,6 +82614,10 @@ export namespace Prisma {
|
|
|
81253
82614
|
_count?: SortOrder
|
|
81254
82615
|
}
|
|
81255
82616
|
|
|
82617
|
+
export type ImpactRadiusEventOrderByRelationAggregateInput = {
|
|
82618
|
+
_count?: SortOrder
|
|
82619
|
+
}
|
|
82620
|
+
|
|
81256
82621
|
export type UserOrderByRelevanceInput = {
|
|
81257
82622
|
fields: UserOrderByRelevanceFieldEnum | UserOrderByRelevanceFieldEnum[]
|
|
81258
82623
|
sort: SortOrder
|
|
@@ -84904,6 +86269,59 @@ export namespace Prisma {
|
|
|
84904
86269
|
userId?: SortOrder
|
|
84905
86270
|
}
|
|
84906
86271
|
|
|
86272
|
+
export type ImpactRadiusEventOrderByRelevanceInput = {
|
|
86273
|
+
fields: ImpactRadiusEventOrderByRelevanceFieldEnum | ImpactRadiusEventOrderByRelevanceFieldEnum[]
|
|
86274
|
+
sort: SortOrder
|
|
86275
|
+
search: string
|
|
86276
|
+
}
|
|
86277
|
+
|
|
86278
|
+
export type ImpactRadiusEventCountOrderByAggregateInput = {
|
|
86279
|
+
id?: SortOrder
|
|
86280
|
+
type?: SortOrder
|
|
86281
|
+
created?: SortOrder
|
|
86282
|
+
amount?: SortOrder
|
|
86283
|
+
commission?: SortOrder
|
|
86284
|
+
metaData?: SortOrder
|
|
86285
|
+
userId?: SortOrder
|
|
86286
|
+
brandId?: SortOrder
|
|
86287
|
+
}
|
|
86288
|
+
|
|
86289
|
+
export type ImpactRadiusEventAvgOrderByAggregateInput = {
|
|
86290
|
+
id?: SortOrder
|
|
86291
|
+
amount?: SortOrder
|
|
86292
|
+
commission?: SortOrder
|
|
86293
|
+
userId?: SortOrder
|
|
86294
|
+
brandId?: SortOrder
|
|
86295
|
+
}
|
|
86296
|
+
|
|
86297
|
+
export type ImpactRadiusEventMaxOrderByAggregateInput = {
|
|
86298
|
+
id?: SortOrder
|
|
86299
|
+
type?: SortOrder
|
|
86300
|
+
created?: SortOrder
|
|
86301
|
+
amount?: SortOrder
|
|
86302
|
+
commission?: SortOrder
|
|
86303
|
+
userId?: SortOrder
|
|
86304
|
+
brandId?: SortOrder
|
|
86305
|
+
}
|
|
86306
|
+
|
|
86307
|
+
export type ImpactRadiusEventMinOrderByAggregateInput = {
|
|
86308
|
+
id?: SortOrder
|
|
86309
|
+
type?: SortOrder
|
|
86310
|
+
created?: SortOrder
|
|
86311
|
+
amount?: SortOrder
|
|
86312
|
+
commission?: SortOrder
|
|
86313
|
+
userId?: SortOrder
|
|
86314
|
+
brandId?: SortOrder
|
|
86315
|
+
}
|
|
86316
|
+
|
|
86317
|
+
export type ImpactRadiusEventSumOrderByAggregateInput = {
|
|
86318
|
+
id?: SortOrder
|
|
86319
|
+
amount?: SortOrder
|
|
86320
|
+
commission?: SortOrder
|
|
86321
|
+
userId?: SortOrder
|
|
86322
|
+
brandId?: SortOrder
|
|
86323
|
+
}
|
|
86324
|
+
|
|
84907
86325
|
export type CreatorSearchFilterOrderByRelevanceInput = {
|
|
84908
86326
|
fields: CreatorSearchFilterOrderByRelevanceFieldEnum | CreatorSearchFilterOrderByRelevanceFieldEnum[]
|
|
84909
86327
|
sort: SortOrder
|
|
@@ -85317,6 +86735,13 @@ export namespace Prisma {
|
|
|
85317
86735
|
connect?: RakutenActivityWhereUniqueInput | RakutenActivityWhereUniqueInput[]
|
|
85318
86736
|
}
|
|
85319
86737
|
|
|
86738
|
+
export type ImpactRadiusEventCreateNestedManyWithoutUserInput = {
|
|
86739
|
+
create?: XOR<ImpactRadiusEventCreateWithoutUserInput, ImpactRadiusEventUncheckedCreateWithoutUserInput> | ImpactRadiusEventCreateWithoutUserInput[] | ImpactRadiusEventUncheckedCreateWithoutUserInput[]
|
|
86740
|
+
connectOrCreate?: ImpactRadiusEventCreateOrConnectWithoutUserInput | ImpactRadiusEventCreateOrConnectWithoutUserInput[]
|
|
86741
|
+
createMany?: ImpactRadiusEventCreateManyUserInputEnvelope
|
|
86742
|
+
connect?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
86743
|
+
}
|
|
86744
|
+
|
|
85320
86745
|
export type UserUncheckedCreateNestedManyWithoutReferrerInput = {
|
|
85321
86746
|
create?: XOR<UserCreateWithoutReferrerInput, UserUncheckedCreateWithoutReferrerInput> | UserCreateWithoutReferrerInput[] | UserUncheckedCreateWithoutReferrerInput[]
|
|
85322
86747
|
connectOrCreate?: UserCreateOrConnectWithoutReferrerInput | UserCreateOrConnectWithoutReferrerInput[]
|
|
@@ -85443,6 +86868,13 @@ export namespace Prisma {
|
|
|
85443
86868
|
connect?: RakutenActivityWhereUniqueInput | RakutenActivityWhereUniqueInput[]
|
|
85444
86869
|
}
|
|
85445
86870
|
|
|
86871
|
+
export type ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput = {
|
|
86872
|
+
create?: XOR<ImpactRadiusEventCreateWithoutUserInput, ImpactRadiusEventUncheckedCreateWithoutUserInput> | ImpactRadiusEventCreateWithoutUserInput[] | ImpactRadiusEventUncheckedCreateWithoutUserInput[]
|
|
86873
|
+
connectOrCreate?: ImpactRadiusEventCreateOrConnectWithoutUserInput | ImpactRadiusEventCreateOrConnectWithoutUserInput[]
|
|
86874
|
+
createMany?: ImpactRadiusEventCreateManyUserInputEnvelope
|
|
86875
|
+
connect?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
86876
|
+
}
|
|
86877
|
+
|
|
85446
86878
|
export type StringFieldUpdateOperationsInput = {
|
|
85447
86879
|
set?: string
|
|
85448
86880
|
}
|
|
@@ -85715,6 +87147,20 @@ export namespace Prisma {
|
|
|
85715
87147
|
deleteMany?: RakutenActivityScalarWhereInput | RakutenActivityScalarWhereInput[]
|
|
85716
87148
|
}
|
|
85717
87149
|
|
|
87150
|
+
export type ImpactRadiusEventUpdateManyWithoutUserNestedInput = {
|
|
87151
|
+
create?: XOR<ImpactRadiusEventCreateWithoutUserInput, ImpactRadiusEventUncheckedCreateWithoutUserInput> | ImpactRadiusEventCreateWithoutUserInput[] | ImpactRadiusEventUncheckedCreateWithoutUserInput[]
|
|
87152
|
+
connectOrCreate?: ImpactRadiusEventCreateOrConnectWithoutUserInput | ImpactRadiusEventCreateOrConnectWithoutUserInput[]
|
|
87153
|
+
upsert?: ImpactRadiusEventUpsertWithWhereUniqueWithoutUserInput | ImpactRadiusEventUpsertWithWhereUniqueWithoutUserInput[]
|
|
87154
|
+
createMany?: ImpactRadiusEventCreateManyUserInputEnvelope
|
|
87155
|
+
set?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
87156
|
+
disconnect?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
87157
|
+
delete?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
87158
|
+
connect?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
87159
|
+
update?: ImpactRadiusEventUpdateWithWhereUniqueWithoutUserInput | ImpactRadiusEventUpdateWithWhereUniqueWithoutUserInput[]
|
|
87160
|
+
updateMany?: ImpactRadiusEventUpdateManyWithWhereWithoutUserInput | ImpactRadiusEventUpdateManyWithWhereWithoutUserInput[]
|
|
87161
|
+
deleteMany?: ImpactRadiusEventScalarWhereInput | ImpactRadiusEventScalarWhereInput[]
|
|
87162
|
+
}
|
|
87163
|
+
|
|
85718
87164
|
export type IntFieldUpdateOperationsInput = {
|
|
85719
87165
|
set?: number
|
|
85720
87166
|
increment?: number
|
|
@@ -85961,6 +87407,20 @@ export namespace Prisma {
|
|
|
85961
87407
|
deleteMany?: RakutenActivityScalarWhereInput | RakutenActivityScalarWhereInput[]
|
|
85962
87408
|
}
|
|
85963
87409
|
|
|
87410
|
+
export type ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput = {
|
|
87411
|
+
create?: XOR<ImpactRadiusEventCreateWithoutUserInput, ImpactRadiusEventUncheckedCreateWithoutUserInput> | ImpactRadiusEventCreateWithoutUserInput[] | ImpactRadiusEventUncheckedCreateWithoutUserInput[]
|
|
87412
|
+
connectOrCreate?: ImpactRadiusEventCreateOrConnectWithoutUserInput | ImpactRadiusEventCreateOrConnectWithoutUserInput[]
|
|
87413
|
+
upsert?: ImpactRadiusEventUpsertWithWhereUniqueWithoutUserInput | ImpactRadiusEventUpsertWithWhereUniqueWithoutUserInput[]
|
|
87414
|
+
createMany?: ImpactRadiusEventCreateManyUserInputEnvelope
|
|
87415
|
+
set?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
87416
|
+
disconnect?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
87417
|
+
delete?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
87418
|
+
connect?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
87419
|
+
update?: ImpactRadiusEventUpdateWithWhereUniqueWithoutUserInput | ImpactRadiusEventUpdateWithWhereUniqueWithoutUserInput[]
|
|
87420
|
+
updateMany?: ImpactRadiusEventUpdateManyWithWhereWithoutUserInput | ImpactRadiusEventUpdateManyWithWhereWithoutUserInput[]
|
|
87421
|
+
deleteMany?: ImpactRadiusEventScalarWhereInput | ImpactRadiusEventScalarWhereInput[]
|
|
87422
|
+
}
|
|
87423
|
+
|
|
85964
87424
|
export type UserCreateNestedOneWithoutLogsInput = {
|
|
85965
87425
|
create?: XOR<UserCreateWithoutLogsInput, UserUncheckedCreateWithoutLogsInput>
|
|
85966
87426
|
connectOrCreate?: UserCreateOrConnectWithoutLogsInput
|
|
@@ -86353,6 +87813,13 @@ export namespace Prisma {
|
|
|
86353
87813
|
connect?: SequenceWhereUniqueInput | SequenceWhereUniqueInput[]
|
|
86354
87814
|
}
|
|
86355
87815
|
|
|
87816
|
+
export type ImpactRadiusEventCreateNestedManyWithoutBrandInput = {
|
|
87817
|
+
create?: XOR<ImpactRadiusEventCreateWithoutBrandInput, ImpactRadiusEventUncheckedCreateWithoutBrandInput> | ImpactRadiusEventCreateWithoutBrandInput[] | ImpactRadiusEventUncheckedCreateWithoutBrandInput[]
|
|
87818
|
+
connectOrCreate?: ImpactRadiusEventCreateOrConnectWithoutBrandInput | ImpactRadiusEventCreateOrConnectWithoutBrandInput[]
|
|
87819
|
+
createMany?: ImpactRadiusEventCreateManyBrandInputEnvelope
|
|
87820
|
+
connect?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
87821
|
+
}
|
|
87822
|
+
|
|
86356
87823
|
export type BrandCreateNestedOneWithoutChildBrandsInput = {
|
|
86357
87824
|
create?: XOR<BrandCreateWithoutChildBrandsInput, BrandUncheckedCreateWithoutChildBrandsInput>
|
|
86358
87825
|
connectOrCreate?: BrandCreateOrConnectWithoutChildBrandsInput
|
|
@@ -86496,6 +87963,13 @@ export namespace Prisma {
|
|
|
86496
87963
|
connect?: SequenceWhereUniqueInput | SequenceWhereUniqueInput[]
|
|
86497
87964
|
}
|
|
86498
87965
|
|
|
87966
|
+
export type ImpactRadiusEventUncheckedCreateNestedManyWithoutBrandInput = {
|
|
87967
|
+
create?: XOR<ImpactRadiusEventCreateWithoutBrandInput, ImpactRadiusEventUncheckedCreateWithoutBrandInput> | ImpactRadiusEventCreateWithoutBrandInput[] | ImpactRadiusEventUncheckedCreateWithoutBrandInput[]
|
|
87968
|
+
connectOrCreate?: ImpactRadiusEventCreateOrConnectWithoutBrandInput | ImpactRadiusEventCreateOrConnectWithoutBrandInput[]
|
|
87969
|
+
createMany?: ImpactRadiusEventCreateManyBrandInputEnvelope
|
|
87970
|
+
connect?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
87971
|
+
}
|
|
87972
|
+
|
|
86499
87973
|
export type BrandUncheckedCreateNestedManyWithoutParentBrandInput = {
|
|
86500
87974
|
create?: XOR<BrandCreateWithoutParentBrandInput, BrandUncheckedCreateWithoutParentBrandInput> | BrandCreateWithoutParentBrandInput[] | BrandUncheckedCreateWithoutParentBrandInput[]
|
|
86501
87975
|
connectOrCreate?: BrandCreateOrConnectWithoutParentBrandInput | BrandCreateOrConnectWithoutParentBrandInput[]
|
|
@@ -86767,6 +88241,20 @@ export namespace Prisma {
|
|
|
86767
88241
|
deleteMany?: SequenceScalarWhereInput | SequenceScalarWhereInput[]
|
|
86768
88242
|
}
|
|
86769
88243
|
|
|
88244
|
+
export type ImpactRadiusEventUpdateManyWithoutBrandNestedInput = {
|
|
88245
|
+
create?: XOR<ImpactRadiusEventCreateWithoutBrandInput, ImpactRadiusEventUncheckedCreateWithoutBrandInput> | ImpactRadiusEventCreateWithoutBrandInput[] | ImpactRadiusEventUncheckedCreateWithoutBrandInput[]
|
|
88246
|
+
connectOrCreate?: ImpactRadiusEventCreateOrConnectWithoutBrandInput | ImpactRadiusEventCreateOrConnectWithoutBrandInput[]
|
|
88247
|
+
upsert?: ImpactRadiusEventUpsertWithWhereUniqueWithoutBrandInput | ImpactRadiusEventUpsertWithWhereUniqueWithoutBrandInput[]
|
|
88248
|
+
createMany?: ImpactRadiusEventCreateManyBrandInputEnvelope
|
|
88249
|
+
set?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
88250
|
+
disconnect?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
88251
|
+
delete?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
88252
|
+
connect?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
88253
|
+
update?: ImpactRadiusEventUpdateWithWhereUniqueWithoutBrandInput | ImpactRadiusEventUpdateWithWhereUniqueWithoutBrandInput[]
|
|
88254
|
+
updateMany?: ImpactRadiusEventUpdateManyWithWhereWithoutBrandInput | ImpactRadiusEventUpdateManyWithWhereWithoutBrandInput[]
|
|
88255
|
+
deleteMany?: ImpactRadiusEventScalarWhereInput | ImpactRadiusEventScalarWhereInput[]
|
|
88256
|
+
}
|
|
88257
|
+
|
|
86770
88258
|
export type BrandUpdateOneWithoutChildBrandsNestedInput = {
|
|
86771
88259
|
create?: XOR<BrandCreateWithoutChildBrandsInput, BrandUncheckedCreateWithoutChildBrandsInput>
|
|
86772
88260
|
connectOrCreate?: BrandCreateOrConnectWithoutChildBrandsInput
|
|
@@ -87045,6 +88533,20 @@ export namespace Prisma {
|
|
|
87045
88533
|
deleteMany?: SequenceScalarWhereInput | SequenceScalarWhereInput[]
|
|
87046
88534
|
}
|
|
87047
88535
|
|
|
88536
|
+
export type ImpactRadiusEventUncheckedUpdateManyWithoutBrandNestedInput = {
|
|
88537
|
+
create?: XOR<ImpactRadiusEventCreateWithoutBrandInput, ImpactRadiusEventUncheckedCreateWithoutBrandInput> | ImpactRadiusEventCreateWithoutBrandInput[] | ImpactRadiusEventUncheckedCreateWithoutBrandInput[]
|
|
88538
|
+
connectOrCreate?: ImpactRadiusEventCreateOrConnectWithoutBrandInput | ImpactRadiusEventCreateOrConnectWithoutBrandInput[]
|
|
88539
|
+
upsert?: ImpactRadiusEventUpsertWithWhereUniqueWithoutBrandInput | ImpactRadiusEventUpsertWithWhereUniqueWithoutBrandInput[]
|
|
88540
|
+
createMany?: ImpactRadiusEventCreateManyBrandInputEnvelope
|
|
88541
|
+
set?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
88542
|
+
disconnect?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
88543
|
+
delete?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
88544
|
+
connect?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
88545
|
+
update?: ImpactRadiusEventUpdateWithWhereUniqueWithoutBrandInput | ImpactRadiusEventUpdateWithWhereUniqueWithoutBrandInput[]
|
|
88546
|
+
updateMany?: ImpactRadiusEventUpdateManyWithWhereWithoutBrandInput | ImpactRadiusEventUpdateManyWithWhereWithoutBrandInput[]
|
|
88547
|
+
deleteMany?: ImpactRadiusEventScalarWhereInput | ImpactRadiusEventScalarWhereInput[]
|
|
88548
|
+
}
|
|
88549
|
+
|
|
87048
88550
|
export type BrandUncheckedUpdateManyWithoutParentBrandNestedInput = {
|
|
87049
88551
|
create?: XOR<BrandCreateWithoutParentBrandInput, BrandUncheckedCreateWithoutParentBrandInput> | BrandCreateWithoutParentBrandInput[] | BrandUncheckedCreateWithoutParentBrandInput[]
|
|
87050
88552
|
connectOrCreate?: BrandCreateOrConnectWithoutParentBrandInput | BrandCreateOrConnectWithoutParentBrandInput[]
|
|
@@ -89931,6 +91433,36 @@ export namespace Prisma {
|
|
|
89931
91433
|
update?: XOR<XOR<UserUpdateToOneWithWhereWithoutRakutenActivityInput, UserUpdateWithoutRakutenActivityInput>, UserUncheckedUpdateWithoutRakutenActivityInput>
|
|
89932
91434
|
}
|
|
89933
91435
|
|
|
91436
|
+
export type UserCreateNestedOneWithoutImpactRadiusEventsInput = {
|
|
91437
|
+
create?: XOR<UserCreateWithoutImpactRadiusEventsInput, UserUncheckedCreateWithoutImpactRadiusEventsInput>
|
|
91438
|
+
connectOrCreate?: UserCreateOrConnectWithoutImpactRadiusEventsInput
|
|
91439
|
+
connect?: UserWhereUniqueInput
|
|
91440
|
+
}
|
|
91441
|
+
|
|
91442
|
+
export type BrandCreateNestedOneWithoutImpactRadiusEventsInput = {
|
|
91443
|
+
create?: XOR<BrandCreateWithoutImpactRadiusEventsInput, BrandUncheckedCreateWithoutImpactRadiusEventsInput>
|
|
91444
|
+
connectOrCreate?: BrandCreateOrConnectWithoutImpactRadiusEventsInput
|
|
91445
|
+
connect?: BrandWhereUniqueInput
|
|
91446
|
+
}
|
|
91447
|
+
|
|
91448
|
+
export type UserUpdateOneRequiredWithoutImpactRadiusEventsNestedInput = {
|
|
91449
|
+
create?: XOR<UserCreateWithoutImpactRadiusEventsInput, UserUncheckedCreateWithoutImpactRadiusEventsInput>
|
|
91450
|
+
connectOrCreate?: UserCreateOrConnectWithoutImpactRadiusEventsInput
|
|
91451
|
+
upsert?: UserUpsertWithoutImpactRadiusEventsInput
|
|
91452
|
+
connect?: UserWhereUniqueInput
|
|
91453
|
+
update?: XOR<XOR<UserUpdateToOneWithWhereWithoutImpactRadiusEventsInput, UserUpdateWithoutImpactRadiusEventsInput>, UserUncheckedUpdateWithoutImpactRadiusEventsInput>
|
|
91454
|
+
}
|
|
91455
|
+
|
|
91456
|
+
export type BrandUpdateOneWithoutImpactRadiusEventsNestedInput = {
|
|
91457
|
+
create?: XOR<BrandCreateWithoutImpactRadiusEventsInput, BrandUncheckedCreateWithoutImpactRadiusEventsInput>
|
|
91458
|
+
connectOrCreate?: BrandCreateOrConnectWithoutImpactRadiusEventsInput
|
|
91459
|
+
upsert?: BrandUpsertWithoutImpactRadiusEventsInput
|
|
91460
|
+
disconnect?: BrandWhereInput | boolean
|
|
91461
|
+
delete?: BrandWhereInput | boolean
|
|
91462
|
+
connect?: BrandWhereUniqueInput
|
|
91463
|
+
update?: XOR<XOR<BrandUpdateToOneWithWhereWithoutImpactRadiusEventsInput, BrandUpdateWithoutImpactRadiusEventsInput>, BrandUncheckedUpdateWithoutImpactRadiusEventsInput>
|
|
91464
|
+
}
|
|
91465
|
+
|
|
89934
91466
|
export type BrandCreateNestedOneWithoutCreatorsearchfilterInput = {
|
|
89935
91467
|
create?: XOR<BrandCreateWithoutCreatorsearchfilterInput, BrandUncheckedCreateWithoutCreatorsearchfilterInput>
|
|
89936
91468
|
connectOrCreate?: BrandCreateOrConnectWithoutCreatorsearchfilterInput
|
|
@@ -90654,6 +92186,7 @@ export namespace Prisma {
|
|
|
90654
92186
|
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
90655
92187
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
90656
92188
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
92189
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
90657
92190
|
}
|
|
90658
92191
|
|
|
90659
92192
|
export type UserUncheckedCreateWithoutReferredUsersInput = {
|
|
@@ -90694,6 +92227,7 @@ export namespace Prisma {
|
|
|
90694
92227
|
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
90695
92228
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
90696
92229
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
92230
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
90697
92231
|
}
|
|
90698
92232
|
|
|
90699
92233
|
export type UserCreateOrConnectWithoutReferredUsersInput = {
|
|
@@ -90738,6 +92272,7 @@ export namespace Prisma {
|
|
|
90738
92272
|
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
90739
92273
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
90740
92274
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
92275
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
90741
92276
|
}
|
|
90742
92277
|
|
|
90743
92278
|
export type UserUncheckedCreateWithoutReferrerInput = {
|
|
@@ -90778,6 +92313,7 @@ export namespace Prisma {
|
|
|
90778
92313
|
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
90779
92314
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
90780
92315
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
92316
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
90781
92317
|
}
|
|
90782
92318
|
|
|
90783
92319
|
export type UserCreateOrConnectWithoutReferrerInput = {
|
|
@@ -91227,6 +92763,7 @@ export namespace Prisma {
|
|
|
91227
92763
|
images?: BrandToImageCreateNestedManyWithoutBrandInput
|
|
91228
92764
|
creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
|
|
91229
92765
|
sequences?: SequenceCreateNestedManyWithoutBrandInput
|
|
92766
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutBrandInput
|
|
91230
92767
|
parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
|
|
91231
92768
|
childBrands?: BrandCreateNestedManyWithoutParentBrandInput
|
|
91232
92769
|
}
|
|
@@ -91263,6 +92800,7 @@ export namespace Prisma {
|
|
|
91263
92800
|
images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
|
|
91264
92801
|
creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
|
|
91265
92802
|
sequences?: SequenceUncheckedCreateNestedManyWithoutBrandInput
|
|
92803
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutBrandInput
|
|
91266
92804
|
childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
|
|
91267
92805
|
}
|
|
91268
92806
|
|
|
@@ -91561,6 +93099,35 @@ export namespace Prisma {
|
|
|
91561
93099
|
skipDuplicates?: boolean
|
|
91562
93100
|
}
|
|
91563
93101
|
|
|
93102
|
+
export type ImpactRadiusEventCreateWithoutUserInput = {
|
|
93103
|
+
type: string
|
|
93104
|
+
created?: Date | string
|
|
93105
|
+
amount?: number | null
|
|
93106
|
+
commission?: number | null
|
|
93107
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
93108
|
+
brand?: BrandCreateNestedOneWithoutImpactRadiusEventsInput
|
|
93109
|
+
}
|
|
93110
|
+
|
|
93111
|
+
export type ImpactRadiusEventUncheckedCreateWithoutUserInput = {
|
|
93112
|
+
id?: number
|
|
93113
|
+
type: string
|
|
93114
|
+
created?: Date | string
|
|
93115
|
+
amount?: number | null
|
|
93116
|
+
commission?: number | null
|
|
93117
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
93118
|
+
brandId?: number | null
|
|
93119
|
+
}
|
|
93120
|
+
|
|
93121
|
+
export type ImpactRadiusEventCreateOrConnectWithoutUserInput = {
|
|
93122
|
+
where: ImpactRadiusEventWhereUniqueInput
|
|
93123
|
+
create: XOR<ImpactRadiusEventCreateWithoutUserInput, ImpactRadiusEventUncheckedCreateWithoutUserInput>
|
|
93124
|
+
}
|
|
93125
|
+
|
|
93126
|
+
export type ImpactRadiusEventCreateManyUserInputEnvelope = {
|
|
93127
|
+
data: ImpactRadiusEventCreateManyUserInput | ImpactRadiusEventCreateManyUserInput[]
|
|
93128
|
+
skipDuplicates?: boolean
|
|
93129
|
+
}
|
|
93130
|
+
|
|
91564
93131
|
export type UserUpsertWithoutReferredUsersInput = {
|
|
91565
93132
|
update: XOR<UserUpdateWithoutReferredUsersInput, UserUncheckedUpdateWithoutReferredUsersInput>
|
|
91566
93133
|
create: XOR<UserCreateWithoutReferredUsersInput, UserUncheckedCreateWithoutReferredUsersInput>
|
|
@@ -91609,6 +93176,7 @@ export namespace Prisma {
|
|
|
91609
93176
|
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
91610
93177
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
91611
93178
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
93179
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
91612
93180
|
}
|
|
91613
93181
|
|
|
91614
93182
|
export type UserUncheckedUpdateWithoutReferredUsersInput = {
|
|
@@ -91649,6 +93217,7 @@ export namespace Prisma {
|
|
|
91649
93217
|
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
91650
93218
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
91651
93219
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
93220
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
91652
93221
|
}
|
|
91653
93222
|
|
|
91654
93223
|
export type UserUpsertWithWhereUniqueWithoutReferrerInput = {
|
|
@@ -92417,6 +93986,36 @@ export namespace Prisma {
|
|
|
92417
93986
|
userId?: IntFilter<"RakutenActivity"> | number
|
|
92418
93987
|
}
|
|
92419
93988
|
|
|
93989
|
+
export type ImpactRadiusEventUpsertWithWhereUniqueWithoutUserInput = {
|
|
93990
|
+
where: ImpactRadiusEventWhereUniqueInput
|
|
93991
|
+
update: XOR<ImpactRadiusEventUpdateWithoutUserInput, ImpactRadiusEventUncheckedUpdateWithoutUserInput>
|
|
93992
|
+
create: XOR<ImpactRadiusEventCreateWithoutUserInput, ImpactRadiusEventUncheckedCreateWithoutUserInput>
|
|
93993
|
+
}
|
|
93994
|
+
|
|
93995
|
+
export type ImpactRadiusEventUpdateWithWhereUniqueWithoutUserInput = {
|
|
93996
|
+
where: ImpactRadiusEventWhereUniqueInput
|
|
93997
|
+
data: XOR<ImpactRadiusEventUpdateWithoutUserInput, ImpactRadiusEventUncheckedUpdateWithoutUserInput>
|
|
93998
|
+
}
|
|
93999
|
+
|
|
94000
|
+
export type ImpactRadiusEventUpdateManyWithWhereWithoutUserInput = {
|
|
94001
|
+
where: ImpactRadiusEventScalarWhereInput
|
|
94002
|
+
data: XOR<ImpactRadiusEventUpdateManyMutationInput, ImpactRadiusEventUncheckedUpdateManyWithoutUserInput>
|
|
94003
|
+
}
|
|
94004
|
+
|
|
94005
|
+
export type ImpactRadiusEventScalarWhereInput = {
|
|
94006
|
+
AND?: ImpactRadiusEventScalarWhereInput | ImpactRadiusEventScalarWhereInput[]
|
|
94007
|
+
OR?: ImpactRadiusEventScalarWhereInput[]
|
|
94008
|
+
NOT?: ImpactRadiusEventScalarWhereInput | ImpactRadiusEventScalarWhereInput[]
|
|
94009
|
+
id?: IntFilter<"ImpactRadiusEvent"> | number
|
|
94010
|
+
type?: StringFilter<"ImpactRadiusEvent"> | string
|
|
94011
|
+
created?: DateTimeFilter<"ImpactRadiusEvent"> | Date | string
|
|
94012
|
+
amount?: FloatNullableFilter<"ImpactRadiusEvent"> | number | null
|
|
94013
|
+
commission?: FloatNullableFilter<"ImpactRadiusEvent"> | number | null
|
|
94014
|
+
metaData?: JsonFilter<"ImpactRadiusEvent">
|
|
94015
|
+
userId?: IntFilter<"ImpactRadiusEvent"> | number
|
|
94016
|
+
brandId?: IntNullableFilter<"ImpactRadiusEvent"> | number | null
|
|
94017
|
+
}
|
|
94018
|
+
|
|
92420
94019
|
export type UserCreateWithoutLogsInput = {
|
|
92421
94020
|
role: string
|
|
92422
94021
|
email?: string | null
|
|
@@ -92454,6 +94053,7 @@ export namespace Prisma {
|
|
|
92454
94053
|
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
92455
94054
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
92456
94055
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
94056
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
92457
94057
|
}
|
|
92458
94058
|
|
|
92459
94059
|
export type UserUncheckedCreateWithoutLogsInput = {
|
|
@@ -92494,6 +94094,7 @@ export namespace Prisma {
|
|
|
92494
94094
|
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
92495
94095
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
92496
94096
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
94097
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
92497
94098
|
}
|
|
92498
94099
|
|
|
92499
94100
|
export type UserCreateOrConnectWithoutLogsInput = {
|
|
@@ -92549,6 +94150,7 @@ export namespace Prisma {
|
|
|
92549
94150
|
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
92550
94151
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
92551
94152
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
94153
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
92552
94154
|
}
|
|
92553
94155
|
|
|
92554
94156
|
export type UserUncheckedUpdateWithoutLogsInput = {
|
|
@@ -92589,6 +94191,7 @@ export namespace Prisma {
|
|
|
92589
94191
|
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
92590
94192
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
92591
94193
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
94194
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
92592
94195
|
}
|
|
92593
94196
|
|
|
92594
94197
|
export type CreatorToCategoryCreateWithoutCreatorProfileInput = {
|
|
@@ -92646,6 +94249,7 @@ export namespace Prisma {
|
|
|
92646
94249
|
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
92647
94250
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
92648
94251
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
94252
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
92649
94253
|
}
|
|
92650
94254
|
|
|
92651
94255
|
export type UserUncheckedCreateWithoutCreatorProfileInput = {
|
|
@@ -92686,6 +94290,7 @@ export namespace Prisma {
|
|
|
92686
94290
|
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
92687
94291
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
92688
94292
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
94293
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
92689
94294
|
}
|
|
92690
94295
|
|
|
92691
94296
|
export type UserCreateOrConnectWithoutCreatorProfileInput = {
|
|
@@ -92765,6 +94370,7 @@ export namespace Prisma {
|
|
|
92765
94370
|
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
92766
94371
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
92767
94372
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
94373
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
92768
94374
|
}
|
|
92769
94375
|
|
|
92770
94376
|
export type UserUncheckedUpdateWithoutCreatorProfileInput = {
|
|
@@ -92805,6 +94411,7 @@ export namespace Prisma {
|
|
|
92805
94411
|
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
92806
94412
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
92807
94413
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
94414
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
92808
94415
|
}
|
|
92809
94416
|
|
|
92810
94417
|
export type UserCreateWithoutInstagramProfileInput = {
|
|
@@ -92844,6 +94451,7 @@ export namespace Prisma {
|
|
|
92844
94451
|
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
92845
94452
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
92846
94453
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
94454
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
92847
94455
|
}
|
|
92848
94456
|
|
|
92849
94457
|
export type UserUncheckedCreateWithoutInstagramProfileInput = {
|
|
@@ -92884,6 +94492,7 @@ export namespace Prisma {
|
|
|
92884
94492
|
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
92885
94493
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
92886
94494
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
94495
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
92887
94496
|
}
|
|
92888
94497
|
|
|
92889
94498
|
export type UserCreateOrConnectWithoutInstagramProfileInput = {
|
|
@@ -92921,6 +94530,7 @@ export namespace Prisma {
|
|
|
92921
94530
|
images?: BrandToImageCreateNestedManyWithoutBrandInput
|
|
92922
94531
|
creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
|
|
92923
94532
|
sequences?: SequenceCreateNestedManyWithoutBrandInput
|
|
94533
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutBrandInput
|
|
92924
94534
|
parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
|
|
92925
94535
|
childBrands?: BrandCreateNestedManyWithoutParentBrandInput
|
|
92926
94536
|
}
|
|
@@ -92957,6 +94567,7 @@ export namespace Prisma {
|
|
|
92957
94567
|
images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
|
|
92958
94568
|
creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
|
|
92959
94569
|
sequences?: SequenceUncheckedCreateNestedManyWithoutBrandInput
|
|
94570
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutBrandInput
|
|
92960
94571
|
childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
|
|
92961
94572
|
}
|
|
92962
94573
|
|
|
@@ -93013,6 +94624,7 @@ export namespace Prisma {
|
|
|
93013
94624
|
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
93014
94625
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
93015
94626
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
94627
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
93016
94628
|
}
|
|
93017
94629
|
|
|
93018
94630
|
export type UserUncheckedUpdateWithoutInstagramProfileInput = {
|
|
@@ -93053,6 +94665,7 @@ export namespace Prisma {
|
|
|
93053
94665
|
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
93054
94666
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
93055
94667
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
94668
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
93056
94669
|
}
|
|
93057
94670
|
|
|
93058
94671
|
export type BrandUpsertWithoutInstagramProfileInput = {
|
|
@@ -93096,6 +94709,7 @@ export namespace Prisma {
|
|
|
93096
94709
|
images?: BrandToImageUpdateManyWithoutBrandNestedInput
|
|
93097
94710
|
creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
|
|
93098
94711
|
sequences?: SequenceUpdateManyWithoutBrandNestedInput
|
|
94712
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutBrandNestedInput
|
|
93099
94713
|
parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
|
|
93100
94714
|
childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
|
|
93101
94715
|
}
|
|
@@ -93132,6 +94746,7 @@ export namespace Prisma {
|
|
|
93132
94746
|
images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
|
|
93133
94747
|
creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
|
|
93134
94748
|
sequences?: SequenceUncheckedUpdateManyWithoutBrandNestedInput
|
|
94749
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutBrandNestedInput
|
|
93135
94750
|
childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
|
|
93136
94751
|
}
|
|
93137
94752
|
|
|
@@ -93172,6 +94787,7 @@ export namespace Prisma {
|
|
|
93172
94787
|
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
93173
94788
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
93174
94789
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
94790
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
93175
94791
|
}
|
|
93176
94792
|
|
|
93177
94793
|
export type UserUncheckedCreateWithoutTiktokProfileInput = {
|
|
@@ -93212,6 +94828,7 @@ export namespace Prisma {
|
|
|
93212
94828
|
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
93213
94829
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
93214
94830
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
94831
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
93215
94832
|
}
|
|
93216
94833
|
|
|
93217
94834
|
export type UserCreateOrConnectWithoutTiktokProfileInput = {
|
|
@@ -93249,6 +94866,7 @@ export namespace Prisma {
|
|
|
93249
94866
|
images?: BrandToImageCreateNestedManyWithoutBrandInput
|
|
93250
94867
|
creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
|
|
93251
94868
|
sequences?: SequenceCreateNestedManyWithoutBrandInput
|
|
94869
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutBrandInput
|
|
93252
94870
|
parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
|
|
93253
94871
|
childBrands?: BrandCreateNestedManyWithoutParentBrandInput
|
|
93254
94872
|
}
|
|
@@ -93285,6 +94903,7 @@ export namespace Prisma {
|
|
|
93285
94903
|
images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
|
|
93286
94904
|
creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
|
|
93287
94905
|
sequences?: SequenceUncheckedCreateNestedManyWithoutBrandInput
|
|
94906
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutBrandInput
|
|
93288
94907
|
childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
|
|
93289
94908
|
}
|
|
93290
94909
|
|
|
@@ -93341,6 +94960,7 @@ export namespace Prisma {
|
|
|
93341
94960
|
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
93342
94961
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
93343
94962
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
94963
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
93344
94964
|
}
|
|
93345
94965
|
|
|
93346
94966
|
export type UserUncheckedUpdateWithoutTiktokProfileInput = {
|
|
@@ -93381,6 +95001,7 @@ export namespace Prisma {
|
|
|
93381
95001
|
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
93382
95002
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
93383
95003
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
95004
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
93384
95005
|
}
|
|
93385
95006
|
|
|
93386
95007
|
export type BrandUpsertWithoutTiktokProfileInput = {
|
|
@@ -93424,6 +95045,7 @@ export namespace Prisma {
|
|
|
93424
95045
|
images?: BrandToImageUpdateManyWithoutBrandNestedInput
|
|
93425
95046
|
creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
|
|
93426
95047
|
sequences?: SequenceUpdateManyWithoutBrandNestedInput
|
|
95048
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutBrandNestedInput
|
|
93427
95049
|
parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
|
|
93428
95050
|
childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
|
|
93429
95051
|
}
|
|
@@ -93460,6 +95082,7 @@ export namespace Prisma {
|
|
|
93460
95082
|
images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
|
|
93461
95083
|
creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
|
|
93462
95084
|
sequences?: SequenceUncheckedUpdateManyWithoutBrandNestedInput
|
|
95085
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutBrandNestedInput
|
|
93463
95086
|
childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
|
|
93464
95087
|
}
|
|
93465
95088
|
|
|
@@ -93500,6 +95123,7 @@ export namespace Prisma {
|
|
|
93500
95123
|
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
93501
95124
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
93502
95125
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
95126
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
93503
95127
|
}
|
|
93504
95128
|
|
|
93505
95129
|
export type UserUncheckedCreateWithoutYoutubeProfileInput = {
|
|
@@ -93540,6 +95164,7 @@ export namespace Prisma {
|
|
|
93540
95164
|
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
93541
95165
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
93542
95166
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
95167
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
93543
95168
|
}
|
|
93544
95169
|
|
|
93545
95170
|
export type UserCreateOrConnectWithoutYoutubeProfileInput = {
|
|
@@ -93577,6 +95202,7 @@ export namespace Prisma {
|
|
|
93577
95202
|
images?: BrandToImageCreateNestedManyWithoutBrandInput
|
|
93578
95203
|
creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
|
|
93579
95204
|
sequences?: SequenceCreateNestedManyWithoutBrandInput
|
|
95205
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutBrandInput
|
|
93580
95206
|
parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
|
|
93581
95207
|
childBrands?: BrandCreateNestedManyWithoutParentBrandInput
|
|
93582
95208
|
}
|
|
@@ -93613,6 +95239,7 @@ export namespace Prisma {
|
|
|
93613
95239
|
images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
|
|
93614
95240
|
creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
|
|
93615
95241
|
sequences?: SequenceUncheckedCreateNestedManyWithoutBrandInput
|
|
95242
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutBrandInput
|
|
93616
95243
|
childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
|
|
93617
95244
|
}
|
|
93618
95245
|
|
|
@@ -93669,6 +95296,7 @@ export namespace Prisma {
|
|
|
93669
95296
|
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
93670
95297
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
93671
95298
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
95299
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
93672
95300
|
}
|
|
93673
95301
|
|
|
93674
95302
|
export type UserUncheckedUpdateWithoutYoutubeProfileInput = {
|
|
@@ -93709,6 +95337,7 @@ export namespace Prisma {
|
|
|
93709
95337
|
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
93710
95338
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
93711
95339
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
95340
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
93712
95341
|
}
|
|
93713
95342
|
|
|
93714
95343
|
export type BrandUpsertWithoutYoutubeProfileInput = {
|
|
@@ -93752,6 +95381,7 @@ export namespace Prisma {
|
|
|
93752
95381
|
images?: BrandToImageUpdateManyWithoutBrandNestedInput
|
|
93753
95382
|
creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
|
|
93754
95383
|
sequences?: SequenceUpdateManyWithoutBrandNestedInput
|
|
95384
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutBrandNestedInput
|
|
93755
95385
|
parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
|
|
93756
95386
|
childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
|
|
93757
95387
|
}
|
|
@@ -93788,6 +95418,7 @@ export namespace Prisma {
|
|
|
93788
95418
|
images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
|
|
93789
95419
|
creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
|
|
93790
95420
|
sequences?: SequenceUncheckedUpdateManyWithoutBrandNestedInput
|
|
95421
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutBrandNestedInput
|
|
93791
95422
|
childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
|
|
93792
95423
|
}
|
|
93793
95424
|
|
|
@@ -93828,6 +95459,7 @@ export namespace Prisma {
|
|
|
93828
95459
|
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
93829
95460
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
93830
95461
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
95462
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
93831
95463
|
}
|
|
93832
95464
|
|
|
93833
95465
|
export type UserUncheckedCreateWithoutTwitchProfileInput = {
|
|
@@ -93868,6 +95500,7 @@ export namespace Prisma {
|
|
|
93868
95500
|
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
93869
95501
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
93870
95502
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
95503
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
93871
95504
|
}
|
|
93872
95505
|
|
|
93873
95506
|
export type UserCreateOrConnectWithoutTwitchProfileInput = {
|
|
@@ -93923,6 +95556,7 @@ export namespace Prisma {
|
|
|
93923
95556
|
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
93924
95557
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
93925
95558
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
95559
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
93926
95560
|
}
|
|
93927
95561
|
|
|
93928
95562
|
export type UserUncheckedUpdateWithoutTwitchProfileInput = {
|
|
@@ -93963,6 +95597,7 @@ export namespace Prisma {
|
|
|
93963
95597
|
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
93964
95598
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
93965
95599
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
95600
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
93966
95601
|
}
|
|
93967
95602
|
|
|
93968
95603
|
export type UserCreateWithoutFacebookProfileInput = {
|
|
@@ -94002,6 +95637,7 @@ export namespace Prisma {
|
|
|
94002
95637
|
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
94003
95638
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
94004
95639
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
95640
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
94005
95641
|
}
|
|
94006
95642
|
|
|
94007
95643
|
export type UserUncheckedCreateWithoutFacebookProfileInput = {
|
|
@@ -94042,6 +95678,7 @@ export namespace Prisma {
|
|
|
94042
95678
|
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
94043
95679
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
94044
95680
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
95681
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
94045
95682
|
}
|
|
94046
95683
|
|
|
94047
95684
|
export type UserCreateOrConnectWithoutFacebookProfileInput = {
|
|
@@ -94097,6 +95734,7 @@ export namespace Prisma {
|
|
|
94097
95734
|
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
94098
95735
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
94099
95736
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
95737
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
94100
95738
|
}
|
|
94101
95739
|
|
|
94102
95740
|
export type UserUncheckedUpdateWithoutFacebookProfileInput = {
|
|
@@ -94137,6 +95775,7 @@ export namespace Prisma {
|
|
|
94137
95775
|
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
94138
95776
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
94139
95777
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
95778
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
94140
95779
|
}
|
|
94141
95780
|
|
|
94142
95781
|
export type UserCreateWithoutTwitterProfileInput = {
|
|
@@ -94176,6 +95815,7 @@ export namespace Prisma {
|
|
|
94176
95815
|
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
94177
95816
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
94178
95817
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
95818
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
94179
95819
|
}
|
|
94180
95820
|
|
|
94181
95821
|
export type UserUncheckedCreateWithoutTwitterProfileInput = {
|
|
@@ -94216,6 +95856,7 @@ export namespace Prisma {
|
|
|
94216
95856
|
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
94217
95857
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
94218
95858
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
95859
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
94219
95860
|
}
|
|
94220
95861
|
|
|
94221
95862
|
export type UserCreateOrConnectWithoutTwitterProfileInput = {
|
|
@@ -94271,6 +95912,7 @@ export namespace Prisma {
|
|
|
94271
95912
|
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
94272
95913
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
94273
95914
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
95915
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
94274
95916
|
}
|
|
94275
95917
|
|
|
94276
95918
|
export type UserUncheckedUpdateWithoutTwitterProfileInput = {
|
|
@@ -94311,6 +95953,7 @@ export namespace Prisma {
|
|
|
94311
95953
|
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
94312
95954
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
94313
95955
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
95956
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
94314
95957
|
}
|
|
94315
95958
|
|
|
94316
95959
|
export type UserCreateWithoutBrandProfilesInput = {
|
|
@@ -94350,6 +95993,7 @@ export namespace Prisma {
|
|
|
94350
95993
|
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
94351
95994
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
94352
95995
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
95996
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
94353
95997
|
}
|
|
94354
95998
|
|
|
94355
95999
|
export type UserUncheckedCreateWithoutBrandProfilesInput = {
|
|
@@ -94390,6 +96034,7 @@ export namespace Prisma {
|
|
|
94390
96034
|
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
94391
96035
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
94392
96036
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
96037
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
94393
96038
|
}
|
|
94394
96039
|
|
|
94395
96040
|
export type UserCreateOrConnectWithoutBrandProfilesInput = {
|
|
@@ -94427,6 +96072,7 @@ export namespace Prisma {
|
|
|
94427
96072
|
images?: BrandToImageCreateNestedManyWithoutBrandInput
|
|
94428
96073
|
creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
|
|
94429
96074
|
sequences?: SequenceCreateNestedManyWithoutBrandInput
|
|
96075
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutBrandInput
|
|
94430
96076
|
parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
|
|
94431
96077
|
childBrands?: BrandCreateNestedManyWithoutParentBrandInput
|
|
94432
96078
|
}
|
|
@@ -94463,6 +96109,7 @@ export namespace Prisma {
|
|
|
94463
96109
|
images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
|
|
94464
96110
|
creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
|
|
94465
96111
|
sequences?: SequenceUncheckedCreateNestedManyWithoutBrandInput
|
|
96112
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutBrandInput
|
|
94466
96113
|
childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
|
|
94467
96114
|
}
|
|
94468
96115
|
|
|
@@ -94519,6 +96166,7 @@ export namespace Prisma {
|
|
|
94519
96166
|
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
94520
96167
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
94521
96168
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
96169
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
94522
96170
|
}
|
|
94523
96171
|
|
|
94524
96172
|
export type UserUncheckedUpdateWithoutBrandProfilesInput = {
|
|
@@ -94559,6 +96207,7 @@ export namespace Prisma {
|
|
|
94559
96207
|
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
94560
96208
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
94561
96209
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
96210
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
94562
96211
|
}
|
|
94563
96212
|
|
|
94564
96213
|
export type BrandUpsertWithoutBrandUsersInput = {
|
|
@@ -94602,6 +96251,7 @@ export namespace Prisma {
|
|
|
94602
96251
|
images?: BrandToImageUpdateManyWithoutBrandNestedInput
|
|
94603
96252
|
creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
|
|
94604
96253
|
sequences?: SequenceUpdateManyWithoutBrandNestedInput
|
|
96254
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutBrandNestedInput
|
|
94605
96255
|
parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
|
|
94606
96256
|
childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
|
|
94607
96257
|
}
|
|
@@ -94638,6 +96288,7 @@ export namespace Prisma {
|
|
|
94638
96288
|
images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
|
|
94639
96289
|
creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
|
|
94640
96290
|
sequences?: SequenceUncheckedUpdateManyWithoutBrandNestedInput
|
|
96291
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutBrandNestedInput
|
|
94641
96292
|
childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
|
|
94642
96293
|
}
|
|
94643
96294
|
|
|
@@ -94678,6 +96329,7 @@ export namespace Prisma {
|
|
|
94678
96329
|
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
94679
96330
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
94680
96331
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
96332
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
94681
96333
|
}
|
|
94682
96334
|
|
|
94683
96335
|
export type UserUncheckedCreateWithoutAssignedBrandsInput = {
|
|
@@ -94718,6 +96370,7 @@ export namespace Prisma {
|
|
|
94718
96370
|
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
94719
96371
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
94720
96372
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
96373
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
94721
96374
|
}
|
|
94722
96375
|
|
|
94723
96376
|
export type UserCreateOrConnectWithoutAssignedBrandsInput = {
|
|
@@ -95462,6 +97115,35 @@ export namespace Prisma {
|
|
|
95462
97115
|
skipDuplicates?: boolean
|
|
95463
97116
|
}
|
|
95464
97117
|
|
|
97118
|
+
export type ImpactRadiusEventCreateWithoutBrandInput = {
|
|
97119
|
+
type: string
|
|
97120
|
+
created?: Date | string
|
|
97121
|
+
amount?: number | null
|
|
97122
|
+
commission?: number | null
|
|
97123
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
97124
|
+
user: UserCreateNestedOneWithoutImpactRadiusEventsInput
|
|
97125
|
+
}
|
|
97126
|
+
|
|
97127
|
+
export type ImpactRadiusEventUncheckedCreateWithoutBrandInput = {
|
|
97128
|
+
id?: number
|
|
97129
|
+
type: string
|
|
97130
|
+
created?: Date | string
|
|
97131
|
+
amount?: number | null
|
|
97132
|
+
commission?: number | null
|
|
97133
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
97134
|
+
userId: number
|
|
97135
|
+
}
|
|
97136
|
+
|
|
97137
|
+
export type ImpactRadiusEventCreateOrConnectWithoutBrandInput = {
|
|
97138
|
+
where: ImpactRadiusEventWhereUniqueInput
|
|
97139
|
+
create: XOR<ImpactRadiusEventCreateWithoutBrandInput, ImpactRadiusEventUncheckedCreateWithoutBrandInput>
|
|
97140
|
+
}
|
|
97141
|
+
|
|
97142
|
+
export type ImpactRadiusEventCreateManyBrandInputEnvelope = {
|
|
97143
|
+
data: ImpactRadiusEventCreateManyBrandInput | ImpactRadiusEventCreateManyBrandInput[]
|
|
97144
|
+
skipDuplicates?: boolean
|
|
97145
|
+
}
|
|
97146
|
+
|
|
95465
97147
|
export type BrandCreateWithoutChildBrandsInput = {
|
|
95466
97148
|
name: string
|
|
95467
97149
|
description?: string | null
|
|
@@ -95493,6 +97175,7 @@ export namespace Prisma {
|
|
|
95493
97175
|
images?: BrandToImageCreateNestedManyWithoutBrandInput
|
|
95494
97176
|
creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
|
|
95495
97177
|
sequences?: SequenceCreateNestedManyWithoutBrandInput
|
|
97178
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutBrandInput
|
|
95496
97179
|
parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
|
|
95497
97180
|
}
|
|
95498
97181
|
|
|
@@ -95529,6 +97212,7 @@ export namespace Prisma {
|
|
|
95529
97212
|
images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
|
|
95530
97213
|
creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
|
|
95531
97214
|
sequences?: SequenceUncheckedCreateNestedManyWithoutBrandInput
|
|
97215
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutBrandInput
|
|
95532
97216
|
}
|
|
95533
97217
|
|
|
95534
97218
|
export type BrandCreateOrConnectWithoutChildBrandsInput = {
|
|
@@ -95567,6 +97251,7 @@ export namespace Prisma {
|
|
|
95567
97251
|
images?: BrandToImageCreateNestedManyWithoutBrandInput
|
|
95568
97252
|
creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
|
|
95569
97253
|
sequences?: SequenceCreateNestedManyWithoutBrandInput
|
|
97254
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutBrandInput
|
|
95570
97255
|
childBrands?: BrandCreateNestedManyWithoutParentBrandInput
|
|
95571
97256
|
}
|
|
95572
97257
|
|
|
@@ -95602,6 +97287,7 @@ export namespace Prisma {
|
|
|
95602
97287
|
images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
|
|
95603
97288
|
creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
|
|
95604
97289
|
sequences?: SequenceUncheckedCreateNestedManyWithoutBrandInput
|
|
97290
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutBrandInput
|
|
95605
97291
|
childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
|
|
95606
97292
|
}
|
|
95607
97293
|
|
|
@@ -95663,6 +97349,7 @@ export namespace Prisma {
|
|
|
95663
97349
|
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
95664
97350
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
95665
97351
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
97352
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
95666
97353
|
}
|
|
95667
97354
|
|
|
95668
97355
|
export type UserUncheckedUpdateWithoutAssignedBrandsInput = {
|
|
@@ -95703,6 +97390,7 @@ export namespace Prisma {
|
|
|
95703
97390
|
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
95704
97391
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
95705
97392
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
97393
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
95706
97394
|
}
|
|
95707
97395
|
|
|
95708
97396
|
export type InstagramProfileUpsertWithoutBrandInput = {
|
|
@@ -96375,6 +98063,22 @@ export namespace Prisma {
|
|
|
96375
98063
|
enabled?: BoolFilter<"Sequence"> | boolean
|
|
96376
98064
|
}
|
|
96377
98065
|
|
|
98066
|
+
export type ImpactRadiusEventUpsertWithWhereUniqueWithoutBrandInput = {
|
|
98067
|
+
where: ImpactRadiusEventWhereUniqueInput
|
|
98068
|
+
update: XOR<ImpactRadiusEventUpdateWithoutBrandInput, ImpactRadiusEventUncheckedUpdateWithoutBrandInput>
|
|
98069
|
+
create: XOR<ImpactRadiusEventCreateWithoutBrandInput, ImpactRadiusEventUncheckedCreateWithoutBrandInput>
|
|
98070
|
+
}
|
|
98071
|
+
|
|
98072
|
+
export type ImpactRadiusEventUpdateWithWhereUniqueWithoutBrandInput = {
|
|
98073
|
+
where: ImpactRadiusEventWhereUniqueInput
|
|
98074
|
+
data: XOR<ImpactRadiusEventUpdateWithoutBrandInput, ImpactRadiusEventUncheckedUpdateWithoutBrandInput>
|
|
98075
|
+
}
|
|
98076
|
+
|
|
98077
|
+
export type ImpactRadiusEventUpdateManyWithWhereWithoutBrandInput = {
|
|
98078
|
+
where: ImpactRadiusEventScalarWhereInput
|
|
98079
|
+
data: XOR<ImpactRadiusEventUpdateManyMutationInput, ImpactRadiusEventUncheckedUpdateManyWithoutBrandInput>
|
|
98080
|
+
}
|
|
98081
|
+
|
|
96378
98082
|
export type BrandUpsertWithoutChildBrandsInput = {
|
|
96379
98083
|
update: XOR<BrandUpdateWithoutChildBrandsInput, BrandUncheckedUpdateWithoutChildBrandsInput>
|
|
96380
98084
|
create: XOR<BrandCreateWithoutChildBrandsInput, BrandUncheckedCreateWithoutChildBrandsInput>
|
|
@@ -96417,6 +98121,7 @@ export namespace Prisma {
|
|
|
96417
98121
|
images?: BrandToImageUpdateManyWithoutBrandNestedInput
|
|
96418
98122
|
creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
|
|
96419
98123
|
sequences?: SequenceUpdateManyWithoutBrandNestedInput
|
|
98124
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutBrandNestedInput
|
|
96420
98125
|
parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
|
|
96421
98126
|
}
|
|
96422
98127
|
|
|
@@ -96453,6 +98158,7 @@ export namespace Prisma {
|
|
|
96453
98158
|
images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
|
|
96454
98159
|
creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
|
|
96455
98160
|
sequences?: SequenceUncheckedUpdateManyWithoutBrandNestedInput
|
|
98161
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutBrandNestedInput
|
|
96456
98162
|
}
|
|
96457
98163
|
|
|
96458
98164
|
export type BrandUpsertWithWhereUniqueWithoutParentBrandInput = {
|
|
@@ -96553,6 +98259,7 @@ export namespace Prisma {
|
|
|
96553
98259
|
images?: BrandToImageCreateNestedManyWithoutBrandInput
|
|
96554
98260
|
creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
|
|
96555
98261
|
sequences?: SequenceCreateNestedManyWithoutBrandInput
|
|
98262
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutBrandInput
|
|
96556
98263
|
parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
|
|
96557
98264
|
childBrands?: BrandCreateNestedManyWithoutParentBrandInput
|
|
96558
98265
|
}
|
|
@@ -96589,6 +98296,7 @@ export namespace Prisma {
|
|
|
96589
98296
|
images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
|
|
96590
98297
|
creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
|
|
96591
98298
|
sequences?: SequenceUncheckedCreateNestedManyWithoutBrandInput
|
|
98299
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutBrandInput
|
|
96592
98300
|
childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
|
|
96593
98301
|
}
|
|
96594
98302
|
|
|
@@ -96702,6 +98410,7 @@ export namespace Prisma {
|
|
|
96702
98410
|
images?: BrandToImageUpdateManyWithoutBrandNestedInput
|
|
96703
98411
|
creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
|
|
96704
98412
|
sequences?: SequenceUpdateManyWithoutBrandNestedInput
|
|
98413
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutBrandNestedInput
|
|
96705
98414
|
parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
|
|
96706
98415
|
childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
|
|
96707
98416
|
}
|
|
@@ -96738,6 +98447,7 @@ export namespace Prisma {
|
|
|
96738
98447
|
images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
|
|
96739
98448
|
creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
|
|
96740
98449
|
sequences?: SequenceUncheckedUpdateManyWithoutBrandNestedInput
|
|
98450
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutBrandNestedInput
|
|
96741
98451
|
childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
|
|
96742
98452
|
}
|
|
96743
98453
|
|
|
@@ -96823,6 +98533,7 @@ export namespace Prisma {
|
|
|
96823
98533
|
images?: BrandToImageCreateNestedManyWithoutBrandInput
|
|
96824
98534
|
creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
|
|
96825
98535
|
sequences?: SequenceCreateNestedManyWithoutBrandInput
|
|
98536
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutBrandInput
|
|
96826
98537
|
parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
|
|
96827
98538
|
childBrands?: BrandCreateNestedManyWithoutParentBrandInput
|
|
96828
98539
|
}
|
|
@@ -96859,6 +98570,7 @@ export namespace Prisma {
|
|
|
96859
98570
|
images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
|
|
96860
98571
|
creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
|
|
96861
98572
|
sequences?: SequenceUncheckedCreateNestedManyWithoutBrandInput
|
|
98573
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutBrandInput
|
|
96862
98574
|
childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
|
|
96863
98575
|
}
|
|
96864
98576
|
|
|
@@ -96972,6 +98684,7 @@ export namespace Prisma {
|
|
|
96972
98684
|
images?: BrandToImageUpdateManyWithoutBrandNestedInput
|
|
96973
98685
|
creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
|
|
96974
98686
|
sequences?: SequenceUpdateManyWithoutBrandNestedInput
|
|
98687
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutBrandNestedInput
|
|
96975
98688
|
parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
|
|
96976
98689
|
childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
|
|
96977
98690
|
}
|
|
@@ -97008,6 +98721,7 @@ export namespace Prisma {
|
|
|
97008
98721
|
images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
|
|
97009
98722
|
creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
|
|
97010
98723
|
sequences?: SequenceUncheckedUpdateManyWithoutBrandNestedInput
|
|
98724
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutBrandNestedInput
|
|
97011
98725
|
childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
|
|
97012
98726
|
}
|
|
97013
98727
|
|
|
@@ -97041,6 +98755,7 @@ export namespace Prisma {
|
|
|
97041
98755
|
campaignInvites?: CampaignInviteCreateNestedManyWithoutBrandInput
|
|
97042
98756
|
creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
|
|
97043
98757
|
sequences?: SequenceCreateNestedManyWithoutBrandInput
|
|
98758
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutBrandInput
|
|
97044
98759
|
parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
|
|
97045
98760
|
childBrands?: BrandCreateNestedManyWithoutParentBrandInput
|
|
97046
98761
|
}
|
|
@@ -97077,6 +98792,7 @@ export namespace Prisma {
|
|
|
97077
98792
|
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutBrandInput
|
|
97078
98793
|
creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
|
|
97079
98794
|
sequences?: SequenceUncheckedCreateNestedManyWithoutBrandInput
|
|
98795
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutBrandInput
|
|
97080
98796
|
childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
|
|
97081
98797
|
}
|
|
97082
98798
|
|
|
@@ -97147,6 +98863,7 @@ export namespace Prisma {
|
|
|
97147
98863
|
campaignInvites?: CampaignInviteUpdateManyWithoutBrandNestedInput
|
|
97148
98864
|
creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
|
|
97149
98865
|
sequences?: SequenceUpdateManyWithoutBrandNestedInput
|
|
98866
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutBrandNestedInput
|
|
97150
98867
|
parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
|
|
97151
98868
|
childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
|
|
97152
98869
|
}
|
|
@@ -97183,6 +98900,7 @@ export namespace Prisma {
|
|
|
97183
98900
|
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutBrandNestedInput
|
|
97184
98901
|
creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
|
|
97185
98902
|
sequences?: SequenceUncheckedUpdateManyWithoutBrandNestedInput
|
|
98903
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutBrandNestedInput
|
|
97186
98904
|
childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
|
|
97187
98905
|
}
|
|
97188
98906
|
|
|
@@ -97242,6 +98960,7 @@ export namespace Prisma {
|
|
|
97242
98960
|
images?: BrandToImageCreateNestedManyWithoutBrandInput
|
|
97243
98961
|
creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
|
|
97244
98962
|
sequences?: SequenceCreateNestedManyWithoutBrandInput
|
|
98963
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutBrandInput
|
|
97245
98964
|
parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
|
|
97246
98965
|
childBrands?: BrandCreateNestedManyWithoutParentBrandInput
|
|
97247
98966
|
}
|
|
@@ -97278,6 +98997,7 @@ export namespace Prisma {
|
|
|
97278
98997
|
images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
|
|
97279
98998
|
creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
|
|
97280
98999
|
sequences?: SequenceUncheckedCreateNestedManyWithoutBrandInput
|
|
99000
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutBrandInput
|
|
97281
99001
|
childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
|
|
97282
99002
|
}
|
|
97283
99003
|
|
|
@@ -97347,6 +99067,7 @@ export namespace Prisma {
|
|
|
97347
99067
|
images?: BrandToImageUpdateManyWithoutBrandNestedInput
|
|
97348
99068
|
creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
|
|
97349
99069
|
sequences?: SequenceUpdateManyWithoutBrandNestedInput
|
|
99070
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutBrandNestedInput
|
|
97350
99071
|
parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
|
|
97351
99072
|
childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
|
|
97352
99073
|
}
|
|
@@ -97383,6 +99104,7 @@ export namespace Prisma {
|
|
|
97383
99104
|
images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
|
|
97384
99105
|
creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
|
|
97385
99106
|
sequences?: SequenceUncheckedUpdateManyWithoutBrandNestedInput
|
|
99107
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutBrandNestedInput
|
|
97386
99108
|
childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
|
|
97387
99109
|
}
|
|
97388
99110
|
|
|
@@ -97742,6 +99464,7 @@ export namespace Prisma {
|
|
|
97742
99464
|
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
97743
99465
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
97744
99466
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
99467
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
97745
99468
|
}
|
|
97746
99469
|
|
|
97747
99470
|
export type UserUncheckedCreateWithoutMessagesInput = {
|
|
@@ -97782,6 +99505,7 @@ export namespace Prisma {
|
|
|
97782
99505
|
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
97783
99506
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
97784
99507
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
99508
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
97785
99509
|
}
|
|
97786
99510
|
|
|
97787
99511
|
export type UserCreateOrConnectWithoutMessagesInput = {
|
|
@@ -97857,6 +99581,7 @@ export namespace Prisma {
|
|
|
97857
99581
|
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
97858
99582
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
97859
99583
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
99584
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
97860
99585
|
}
|
|
97861
99586
|
|
|
97862
99587
|
export type UserUncheckedUpdateWithoutMessagesInput = {
|
|
@@ -97897,6 +99622,7 @@ export namespace Prisma {
|
|
|
97897
99622
|
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
97898
99623
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
97899
99624
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
99625
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
97900
99626
|
}
|
|
97901
99627
|
|
|
97902
99628
|
export type ChatUpsertWithoutMessagesInput = {
|
|
@@ -98272,6 +99998,7 @@ export namespace Prisma {
|
|
|
98272
99998
|
images?: BrandToImageCreateNestedManyWithoutBrandInput
|
|
98273
99999
|
creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
|
|
98274
100000
|
sequences?: SequenceCreateNestedManyWithoutBrandInput
|
|
100001
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutBrandInput
|
|
98275
100002
|
parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
|
|
98276
100003
|
childBrands?: BrandCreateNestedManyWithoutParentBrandInput
|
|
98277
100004
|
}
|
|
@@ -98308,6 +100035,7 @@ export namespace Prisma {
|
|
|
98308
100035
|
images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
|
|
98309
100036
|
creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
|
|
98310
100037
|
sequences?: SequenceUncheckedCreateNestedManyWithoutBrandInput
|
|
100038
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutBrandInput
|
|
98311
100039
|
childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
|
|
98312
100040
|
}
|
|
98313
100041
|
|
|
@@ -98642,6 +100370,7 @@ export namespace Prisma {
|
|
|
98642
100370
|
images?: BrandToImageUpdateManyWithoutBrandNestedInput
|
|
98643
100371
|
creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
|
|
98644
100372
|
sequences?: SequenceUpdateManyWithoutBrandNestedInput
|
|
100373
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutBrandNestedInput
|
|
98645
100374
|
parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
|
|
98646
100375
|
childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
|
|
98647
100376
|
}
|
|
@@ -98678,6 +100407,7 @@ export namespace Prisma {
|
|
|
98678
100407
|
images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
|
|
98679
100408
|
creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
|
|
98680
100409
|
sequences?: SequenceUncheckedUpdateManyWithoutBrandNestedInput
|
|
100410
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutBrandNestedInput
|
|
98681
100411
|
childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
|
|
98682
100412
|
}
|
|
98683
100413
|
|
|
@@ -98776,6 +100506,7 @@ export namespace Prisma {
|
|
|
98776
100506
|
affiliateLinks?: AffiliateLinkCreateNestedManyWithoutAffiliateInput
|
|
98777
100507
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
98778
100508
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
100509
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
98779
100510
|
}
|
|
98780
100511
|
|
|
98781
100512
|
export type UserUncheckedCreateWithoutCampaignPinsInput = {
|
|
@@ -98816,6 +100547,7 @@ export namespace Prisma {
|
|
|
98816
100547
|
affiliateLinks?: AffiliateLinkUncheckedCreateNestedManyWithoutAffiliateInput
|
|
98817
100548
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
98818
100549
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
100550
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
98819
100551
|
}
|
|
98820
100552
|
|
|
98821
100553
|
export type UserCreateOrConnectWithoutCampaignPinsInput = {
|
|
@@ -99007,6 +100739,7 @@ export namespace Prisma {
|
|
|
99007
100739
|
affiliateLinks?: AffiliateLinkUpdateManyWithoutAffiliateNestedInput
|
|
99008
100740
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
99009
100741
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
100742
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
99010
100743
|
}
|
|
99011
100744
|
|
|
99012
100745
|
export type UserUncheckedUpdateWithoutCampaignPinsInput = {
|
|
@@ -99047,6 +100780,7 @@ export namespace Prisma {
|
|
|
99047
100780
|
affiliateLinks?: AffiliateLinkUncheckedUpdateManyWithoutAffiliateNestedInput
|
|
99048
100781
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
99049
100782
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
100783
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
99050
100784
|
}
|
|
99051
100785
|
|
|
99052
100786
|
export type CampaignUpsertWithoutCampaignPinsInput = {
|
|
@@ -101444,6 +103178,7 @@ export namespace Prisma {
|
|
|
101444
103178
|
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
101445
103179
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
101446
103180
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
103181
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
101447
103182
|
}
|
|
101448
103183
|
|
|
101449
103184
|
export type UserUncheckedCreateWithoutOptInsInput = {
|
|
@@ -101484,6 +103219,7 @@ export namespace Prisma {
|
|
|
101484
103219
|
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
101485
103220
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
101486
103221
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
103222
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
101487
103223
|
}
|
|
101488
103224
|
|
|
101489
103225
|
export type UserCreateOrConnectWithoutOptInsInput = {
|
|
@@ -101806,6 +103542,7 @@ export namespace Prisma {
|
|
|
101806
103542
|
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
101807
103543
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
101808
103544
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
103545
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
101809
103546
|
}
|
|
101810
103547
|
|
|
101811
103548
|
export type UserUncheckedUpdateWithoutOptInsInput = {
|
|
@@ -101846,6 +103583,7 @@ export namespace Prisma {
|
|
|
101846
103583
|
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
101847
103584
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
101848
103585
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
103586
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
101849
103587
|
}
|
|
101850
103588
|
|
|
101851
103589
|
export type CampaignUpsertWithoutOptInsInput = {
|
|
@@ -102341,6 +104079,7 @@ export namespace Prisma {
|
|
|
102341
104079
|
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
102342
104080
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
102343
104081
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
104082
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
102344
104083
|
}
|
|
102345
104084
|
|
|
102346
104085
|
export type UserUncheckedCreateWithoutSocialPostsInput = {
|
|
@@ -102381,6 +104120,7 @@ export namespace Prisma {
|
|
|
102381
104120
|
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
102382
104121
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
102383
104122
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
104123
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
102384
104124
|
}
|
|
102385
104125
|
|
|
102386
104126
|
export type UserCreateOrConnectWithoutSocialPostsInput = {
|
|
@@ -102612,6 +104352,7 @@ export namespace Prisma {
|
|
|
102612
104352
|
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
102613
104353
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
102614
104354
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
104355
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
102615
104356
|
}
|
|
102616
104357
|
|
|
102617
104358
|
export type UserUncheckedUpdateWithoutSocialPostsInput = {
|
|
@@ -102652,6 +104393,7 @@ export namespace Prisma {
|
|
|
102652
104393
|
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
102653
104394
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
102654
104395
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
104396
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
102655
104397
|
}
|
|
102656
104398
|
|
|
102657
104399
|
export type CampaignUpsertWithoutSocialPostsInput = {
|
|
@@ -103246,6 +104988,7 @@ export namespace Prisma {
|
|
|
103246
104988
|
images?: BrandToImageCreateNestedManyWithoutBrandInput
|
|
103247
104989
|
creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
|
|
103248
104990
|
sequences?: SequenceCreateNestedManyWithoutBrandInput
|
|
104991
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutBrandInput
|
|
103249
104992
|
parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
|
|
103250
104993
|
childBrands?: BrandCreateNestedManyWithoutParentBrandInput
|
|
103251
104994
|
}
|
|
@@ -103282,6 +105025,7 @@ export namespace Prisma {
|
|
|
103282
105025
|
images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
|
|
103283
105026
|
creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
|
|
103284
105027
|
sequences?: SequenceUncheckedCreateNestedManyWithoutBrandInput
|
|
105028
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutBrandInput
|
|
103285
105029
|
childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
|
|
103286
105030
|
}
|
|
103287
105031
|
|
|
@@ -103327,6 +105071,7 @@ export namespace Prisma {
|
|
|
103327
105071
|
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
103328
105072
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
103329
105073
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
105074
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
103330
105075
|
}
|
|
103331
105076
|
|
|
103332
105077
|
export type UserUncheckedCreateWithoutPaymentTransactionsInput = {
|
|
@@ -103367,6 +105112,7 @@ export namespace Prisma {
|
|
|
103367
105112
|
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
103368
105113
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
103369
105114
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
105115
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
103370
105116
|
}
|
|
103371
105117
|
|
|
103372
105118
|
export type UserCreateOrConnectWithoutPaymentTransactionsInput = {
|
|
@@ -103479,6 +105225,7 @@ export namespace Prisma {
|
|
|
103479
105225
|
images?: BrandToImageUpdateManyWithoutBrandNestedInput
|
|
103480
105226
|
creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
|
|
103481
105227
|
sequences?: SequenceUpdateManyWithoutBrandNestedInput
|
|
105228
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutBrandNestedInput
|
|
103482
105229
|
parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
|
|
103483
105230
|
childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
|
|
103484
105231
|
}
|
|
@@ -103515,6 +105262,7 @@ export namespace Prisma {
|
|
|
103515
105262
|
images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
|
|
103516
105263
|
creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
|
|
103517
105264
|
sequences?: SequenceUncheckedUpdateManyWithoutBrandNestedInput
|
|
105265
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutBrandNestedInput
|
|
103518
105266
|
childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
|
|
103519
105267
|
}
|
|
103520
105268
|
|
|
@@ -103566,6 +105314,7 @@ export namespace Prisma {
|
|
|
103566
105314
|
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
103567
105315
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
103568
105316
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
105317
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
103569
105318
|
}
|
|
103570
105319
|
|
|
103571
105320
|
export type UserUncheckedUpdateWithoutPaymentTransactionsInput = {
|
|
@@ -103606,6 +105355,7 @@ export namespace Prisma {
|
|
|
103606
105355
|
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
103607
105356
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
103608
105357
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
105358
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
103609
105359
|
}
|
|
103610
105360
|
|
|
103611
105361
|
export type PaymentTransactionUpsertWithoutNextTransactionInput = {
|
|
@@ -103739,6 +105489,7 @@ export namespace Prisma {
|
|
|
103739
105489
|
images?: BrandToImageCreateNestedManyWithoutBrandInput
|
|
103740
105490
|
creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
|
|
103741
105491
|
sequences?: SequenceCreateNestedManyWithoutBrandInput
|
|
105492
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutBrandInput
|
|
103742
105493
|
parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
|
|
103743
105494
|
childBrands?: BrandCreateNestedManyWithoutParentBrandInput
|
|
103744
105495
|
}
|
|
@@ -103775,6 +105526,7 @@ export namespace Prisma {
|
|
|
103775
105526
|
images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
|
|
103776
105527
|
creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
|
|
103777
105528
|
sequences?: SequenceUncheckedCreateNestedManyWithoutBrandInput
|
|
105529
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutBrandInput
|
|
103778
105530
|
childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
|
|
103779
105531
|
}
|
|
103780
105532
|
|
|
@@ -103840,6 +105592,7 @@ export namespace Prisma {
|
|
|
103840
105592
|
images?: BrandToImageUpdateManyWithoutBrandNestedInput
|
|
103841
105593
|
creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
|
|
103842
105594
|
sequences?: SequenceUpdateManyWithoutBrandNestedInput
|
|
105595
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutBrandNestedInput
|
|
103843
105596
|
parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
|
|
103844
105597
|
childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
|
|
103845
105598
|
}
|
|
@@ -103876,6 +105629,7 @@ export namespace Prisma {
|
|
|
103876
105629
|
images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
|
|
103877
105630
|
creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
|
|
103878
105631
|
sequences?: SequenceUncheckedUpdateManyWithoutBrandNestedInput
|
|
105632
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutBrandNestedInput
|
|
103879
105633
|
childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
|
|
103880
105634
|
}
|
|
103881
105635
|
|
|
@@ -103941,6 +105695,7 @@ export namespace Prisma {
|
|
|
103941
105695
|
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
103942
105696
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
103943
105697
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
105698
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
103944
105699
|
}
|
|
103945
105700
|
|
|
103946
105701
|
export type UserUncheckedCreateWithoutAffiliateLinksInput = {
|
|
@@ -103981,6 +105736,7 @@ export namespace Prisma {
|
|
|
103981
105736
|
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
103982
105737
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
103983
105738
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
105739
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
103984
105740
|
}
|
|
103985
105741
|
|
|
103986
105742
|
export type UserCreateOrConnectWithoutAffiliateLinksInput = {
|
|
@@ -104087,6 +105843,7 @@ export namespace Prisma {
|
|
|
104087
105843
|
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
104088
105844
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
104089
105845
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
105846
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
104090
105847
|
}
|
|
104091
105848
|
|
|
104092
105849
|
export type UserUncheckedUpdateWithoutAffiliateLinksInput = {
|
|
@@ -104127,6 +105884,7 @@ export namespace Prisma {
|
|
|
104127
105884
|
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
104128
105885
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
104129
105886
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
105887
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
104130
105888
|
}
|
|
104131
105889
|
|
|
104132
105890
|
export type BrandAffiliateLinkUpsertWithoutAffiliateLinksInput = {
|
|
@@ -104346,6 +106104,7 @@ export namespace Prisma {
|
|
|
104346
106104
|
images?: BrandToImageCreateNestedManyWithoutBrandInput
|
|
104347
106105
|
creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
|
|
104348
106106
|
sequences?: SequenceCreateNestedManyWithoutBrandInput
|
|
106107
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutBrandInput
|
|
104349
106108
|
parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
|
|
104350
106109
|
childBrands?: BrandCreateNestedManyWithoutParentBrandInput
|
|
104351
106110
|
}
|
|
@@ -104382,6 +106141,7 @@ export namespace Prisma {
|
|
|
104382
106141
|
images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
|
|
104383
106142
|
creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
|
|
104384
106143
|
sequences?: SequenceUncheckedCreateNestedManyWithoutBrandInput
|
|
106144
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutBrandInput
|
|
104385
106145
|
childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
|
|
104386
106146
|
}
|
|
104387
106147
|
|
|
@@ -104431,6 +106191,7 @@ export namespace Prisma {
|
|
|
104431
106191
|
images?: BrandToImageUpdateManyWithoutBrandNestedInput
|
|
104432
106192
|
creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
|
|
104433
106193
|
sequences?: SequenceUpdateManyWithoutBrandNestedInput
|
|
106194
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutBrandNestedInput
|
|
104434
106195
|
parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
|
|
104435
106196
|
childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
|
|
104436
106197
|
}
|
|
@@ -104467,6 +106228,7 @@ export namespace Prisma {
|
|
|
104467
106228
|
images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
|
|
104468
106229
|
creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
|
|
104469
106230
|
sequences?: SequenceUncheckedUpdateManyWithoutBrandNestedInput
|
|
106231
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutBrandNestedInput
|
|
104470
106232
|
childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
|
|
104471
106233
|
}
|
|
104472
106234
|
|
|
@@ -104500,6 +106262,7 @@ export namespace Prisma {
|
|
|
104500
106262
|
images?: BrandToImageCreateNestedManyWithoutBrandInput
|
|
104501
106263
|
creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
|
|
104502
106264
|
sequences?: SequenceCreateNestedManyWithoutBrandInput
|
|
106265
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutBrandInput
|
|
104503
106266
|
parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
|
|
104504
106267
|
childBrands?: BrandCreateNestedManyWithoutParentBrandInput
|
|
104505
106268
|
}
|
|
@@ -104536,6 +106299,7 @@ export namespace Prisma {
|
|
|
104536
106299
|
images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
|
|
104537
106300
|
creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
|
|
104538
106301
|
sequences?: SequenceUncheckedCreateNestedManyWithoutBrandInput
|
|
106302
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutBrandInput
|
|
104539
106303
|
childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
|
|
104540
106304
|
}
|
|
104541
106305
|
|
|
@@ -104817,6 +106581,7 @@ export namespace Prisma {
|
|
|
104817
106581
|
images?: BrandToImageUpdateManyWithoutBrandNestedInput
|
|
104818
106582
|
creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
|
|
104819
106583
|
sequences?: SequenceUpdateManyWithoutBrandNestedInput
|
|
106584
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutBrandNestedInput
|
|
104820
106585
|
parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
|
|
104821
106586
|
childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
|
|
104822
106587
|
}
|
|
@@ -104853,6 +106618,7 @@ export namespace Prisma {
|
|
|
104853
106618
|
images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
|
|
104854
106619
|
creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
|
|
104855
106620
|
sequences?: SequenceUncheckedUpdateManyWithoutBrandNestedInput
|
|
106621
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutBrandNestedInput
|
|
104856
106622
|
childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
|
|
104857
106623
|
}
|
|
104858
106624
|
|
|
@@ -105173,6 +106939,7 @@ export namespace Prisma {
|
|
|
105173
106939
|
images?: BrandToImageCreateNestedManyWithoutBrandInput
|
|
105174
106940
|
creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
|
|
105175
106941
|
sequences?: SequenceCreateNestedManyWithoutBrandInput
|
|
106942
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutBrandInput
|
|
105176
106943
|
parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
|
|
105177
106944
|
childBrands?: BrandCreateNestedManyWithoutParentBrandInput
|
|
105178
106945
|
}
|
|
@@ -105209,6 +106976,7 @@ export namespace Prisma {
|
|
|
105209
106976
|
images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
|
|
105210
106977
|
creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
|
|
105211
106978
|
sequences?: SequenceUncheckedCreateNestedManyWithoutBrandInput
|
|
106979
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutBrandInput
|
|
105212
106980
|
childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
|
|
105213
106981
|
}
|
|
105214
106982
|
|
|
@@ -105462,6 +107230,7 @@ export namespace Prisma {
|
|
|
105462
107230
|
images?: BrandToImageUpdateManyWithoutBrandNestedInput
|
|
105463
107231
|
creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
|
|
105464
107232
|
sequences?: SequenceUpdateManyWithoutBrandNestedInput
|
|
107233
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutBrandNestedInput
|
|
105465
107234
|
parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
|
|
105466
107235
|
childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
|
|
105467
107236
|
}
|
|
@@ -105498,6 +107267,7 @@ export namespace Prisma {
|
|
|
105498
107267
|
images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
|
|
105499
107268
|
creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
|
|
105500
107269
|
sequences?: SequenceUncheckedUpdateManyWithoutBrandNestedInput
|
|
107270
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutBrandNestedInput
|
|
105501
107271
|
childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
|
|
105502
107272
|
}
|
|
105503
107273
|
|
|
@@ -106073,6 +107843,7 @@ export namespace Prisma {
|
|
|
106073
107843
|
affiliateLinks?: AffiliateLinkCreateNestedManyWithoutAffiliateInput
|
|
106074
107844
|
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
106075
107845
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
107846
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
106076
107847
|
}
|
|
106077
107848
|
|
|
106078
107849
|
export type UserUncheckedCreateWithoutSocialProfilesInput = {
|
|
@@ -106113,6 +107884,7 @@ export namespace Prisma {
|
|
|
106113
107884
|
affiliateLinks?: AffiliateLinkUncheckedCreateNestedManyWithoutAffiliateInput
|
|
106114
107885
|
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
106115
107886
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
107887
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
106116
107888
|
}
|
|
106117
107889
|
|
|
106118
107890
|
export type UserCreateOrConnectWithoutSocialProfilesInput = {
|
|
@@ -106200,6 +107972,7 @@ export namespace Prisma {
|
|
|
106200
107972
|
affiliateLinks?: AffiliateLinkUpdateManyWithoutAffiliateNestedInput
|
|
106201
107973
|
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
106202
107974
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
107975
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
106203
107976
|
}
|
|
106204
107977
|
|
|
106205
107978
|
export type UserUncheckedUpdateWithoutSocialProfilesInput = {
|
|
@@ -106240,6 +108013,7 @@ export namespace Prisma {
|
|
|
106240
108013
|
affiliateLinks?: AffiliateLinkUncheckedUpdateManyWithoutAffiliateNestedInput
|
|
106241
108014
|
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
106242
108015
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
108016
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
106243
108017
|
}
|
|
106244
108018
|
|
|
106245
108019
|
export type BrandCreateWithoutMessageTemplateInput = {
|
|
@@ -106272,6 +108046,7 @@ export namespace Prisma {
|
|
|
106272
108046
|
images?: BrandToImageCreateNestedManyWithoutBrandInput
|
|
106273
108047
|
creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
|
|
106274
108048
|
sequences?: SequenceCreateNestedManyWithoutBrandInput
|
|
108049
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutBrandInput
|
|
106275
108050
|
parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
|
|
106276
108051
|
childBrands?: BrandCreateNestedManyWithoutParentBrandInput
|
|
106277
108052
|
}
|
|
@@ -106308,6 +108083,7 @@ export namespace Prisma {
|
|
|
106308
108083
|
images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
|
|
106309
108084
|
creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
|
|
106310
108085
|
sequences?: SequenceUncheckedCreateNestedManyWithoutBrandInput
|
|
108086
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutBrandInput
|
|
106311
108087
|
childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
|
|
106312
108088
|
}
|
|
106313
108089
|
|
|
@@ -106357,6 +108133,7 @@ export namespace Prisma {
|
|
|
106357
108133
|
images?: BrandToImageUpdateManyWithoutBrandNestedInput
|
|
106358
108134
|
creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
|
|
106359
108135
|
sequences?: SequenceUpdateManyWithoutBrandNestedInput
|
|
108136
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutBrandNestedInput
|
|
106360
108137
|
parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
|
|
106361
108138
|
childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
|
|
106362
108139
|
}
|
|
@@ -106393,6 +108170,7 @@ export namespace Prisma {
|
|
|
106393
108170
|
images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
|
|
106394
108171
|
creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
|
|
106395
108172
|
sequences?: SequenceUncheckedUpdateManyWithoutBrandNestedInput
|
|
108173
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutBrandNestedInput
|
|
106396
108174
|
childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
|
|
106397
108175
|
}
|
|
106398
108176
|
|
|
@@ -106426,6 +108204,7 @@ export namespace Prisma {
|
|
|
106426
108204
|
images?: BrandToImageCreateNestedManyWithoutBrandInput
|
|
106427
108205
|
creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
|
|
106428
108206
|
sequences?: SequenceCreateNestedManyWithoutBrandInput
|
|
108207
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutBrandInput
|
|
106429
108208
|
parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
|
|
106430
108209
|
childBrands?: BrandCreateNestedManyWithoutParentBrandInput
|
|
106431
108210
|
}
|
|
@@ -106462,6 +108241,7 @@ export namespace Prisma {
|
|
|
106462
108241
|
images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
|
|
106463
108242
|
creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
|
|
106464
108243
|
sequences?: SequenceUncheckedCreateNestedManyWithoutBrandInput
|
|
108244
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutBrandInput
|
|
106465
108245
|
childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
|
|
106466
108246
|
}
|
|
106467
108247
|
|
|
@@ -106540,6 +108320,7 @@ export namespace Prisma {
|
|
|
106540
108320
|
images?: BrandToImageUpdateManyWithoutBrandNestedInput
|
|
106541
108321
|
creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
|
|
106542
108322
|
sequences?: SequenceUpdateManyWithoutBrandNestedInput
|
|
108323
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutBrandNestedInput
|
|
106543
108324
|
parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
|
|
106544
108325
|
childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
|
|
106545
108326
|
}
|
|
@@ -106576,6 +108357,7 @@ export namespace Prisma {
|
|
|
106576
108357
|
images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
|
|
106577
108358
|
creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
|
|
106578
108359
|
sequences?: SequenceUncheckedUpdateManyWithoutBrandNestedInput
|
|
108360
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutBrandNestedInput
|
|
106579
108361
|
childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
|
|
106580
108362
|
}
|
|
106581
108363
|
|
|
@@ -106638,6 +108420,7 @@ export namespace Prisma {
|
|
|
106638
108420
|
images?: BrandToImageCreateNestedManyWithoutBrandInput
|
|
106639
108421
|
creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
|
|
106640
108422
|
sequences?: SequenceCreateNestedManyWithoutBrandInput
|
|
108423
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutBrandInput
|
|
106641
108424
|
parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
|
|
106642
108425
|
childBrands?: BrandCreateNestedManyWithoutParentBrandInput
|
|
106643
108426
|
}
|
|
@@ -106674,6 +108457,7 @@ export namespace Prisma {
|
|
|
106674
108457
|
images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
|
|
106675
108458
|
creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
|
|
106676
108459
|
sequences?: SequenceUncheckedCreateNestedManyWithoutBrandInput
|
|
108460
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutBrandInput
|
|
106677
108461
|
childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
|
|
106678
108462
|
}
|
|
106679
108463
|
|
|
@@ -106742,6 +108526,7 @@ export namespace Prisma {
|
|
|
106742
108526
|
images?: BrandToImageUpdateManyWithoutBrandNestedInput
|
|
106743
108527
|
creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
|
|
106744
108528
|
sequences?: SequenceUpdateManyWithoutBrandNestedInput
|
|
108529
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutBrandNestedInput
|
|
106745
108530
|
parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
|
|
106746
108531
|
childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
|
|
106747
108532
|
}
|
|
@@ -106778,6 +108563,7 @@ export namespace Prisma {
|
|
|
106778
108563
|
images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
|
|
106779
108564
|
creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
|
|
106780
108565
|
sequences?: SequenceUncheckedUpdateManyWithoutBrandNestedInput
|
|
108566
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutBrandNestedInput
|
|
106781
108567
|
childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
|
|
106782
108568
|
}
|
|
106783
108569
|
|
|
@@ -107340,6 +109126,7 @@ export namespace Prisma {
|
|
|
107340
109126
|
affiliateLinks?: AffiliateLinkCreateNestedManyWithoutAffiliateInput
|
|
107341
109127
|
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
107342
109128
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
109129
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
107343
109130
|
}
|
|
107344
109131
|
|
|
107345
109132
|
export type UserUncheckedCreateWithoutRakutenActivityInput = {
|
|
@@ -107380,6 +109167,7 @@ export namespace Prisma {
|
|
|
107380
109167
|
affiliateLinks?: AffiliateLinkUncheckedCreateNestedManyWithoutAffiliateInput
|
|
107381
109168
|
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
107382
109169
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
109170
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
107383
109171
|
}
|
|
107384
109172
|
|
|
107385
109173
|
export type UserCreateOrConnectWithoutRakutenActivityInput = {
|
|
@@ -107435,6 +109223,7 @@ export namespace Prisma {
|
|
|
107435
109223
|
affiliateLinks?: AffiliateLinkUpdateManyWithoutAffiliateNestedInput
|
|
107436
109224
|
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
107437
109225
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
109226
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
107438
109227
|
}
|
|
107439
109228
|
|
|
107440
109229
|
export type UserUncheckedUpdateWithoutRakutenActivityInput = {
|
|
@@ -107475,6 +109264,343 @@ export namespace Prisma {
|
|
|
107475
109264
|
affiliateLinks?: AffiliateLinkUncheckedUpdateManyWithoutAffiliateNestedInput
|
|
107476
109265
|
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
107477
109266
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
109267
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
109268
|
+
}
|
|
109269
|
+
|
|
109270
|
+
export type UserCreateWithoutImpactRadiusEventsInput = {
|
|
109271
|
+
role: string
|
|
109272
|
+
email?: string | null
|
|
109273
|
+
password?: string | null
|
|
109274
|
+
registered?: Date | string
|
|
109275
|
+
lastLoginDate?: Date | string | null
|
|
109276
|
+
firstName?: string | null
|
|
109277
|
+
lastName?: string | null
|
|
109278
|
+
phone?: string | null
|
|
109279
|
+
phoneCode?: number | null
|
|
109280
|
+
phoneShort?: string | null
|
|
109281
|
+
profilePicUrl?: string | null
|
|
109282
|
+
forgotPasswordKey?: string | null
|
|
109283
|
+
affiliateSlug?: string | null
|
|
109284
|
+
closed?: Date | string | null
|
|
109285
|
+
closedReason?: string | null
|
|
109286
|
+
usercomLastSynced?: Date | string | null
|
|
109287
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
109288
|
+
referrer?: UserCreateNestedOneWithoutReferredUsersInput
|
|
109289
|
+
referredUsers?: UserCreateNestedManyWithoutReferrerInput
|
|
109290
|
+
logs?: LogCreateNestedManyWithoutUserInput
|
|
109291
|
+
creatorProfile?: CreatorProfileCreateNestedOneWithoutUserInput
|
|
109292
|
+
instagramProfile?: InstagramProfileCreateNestedOneWithoutUserInput
|
|
109293
|
+
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutUserInput
|
|
109294
|
+
tiktokProfile?: TiktokProfileCreateNestedOneWithoutUserInput
|
|
109295
|
+
facebookProfile?: FacebookProfileCreateNestedOneWithoutUserInput
|
|
109296
|
+
twitterProfile?: TwitterProfileCreateNestedOneWithoutUserInput
|
|
109297
|
+
twitchProfile?: TwitchProfileCreateNestedOneWithoutUserInput
|
|
109298
|
+
brandProfiles?: BrandUserProfileCreateNestedManyWithoutUserInput
|
|
109299
|
+
optIns?: OptInCreateNestedManyWithoutUserInput
|
|
109300
|
+
assignedBrands?: BrandCreateNestedManyWithoutDedicatedSpecialistInput
|
|
109301
|
+
messages?: MessageCreateNestedManyWithoutUserInput
|
|
109302
|
+
socialPosts?: SocialPostCreateNestedManyWithoutUserInput
|
|
109303
|
+
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutCreatorInput
|
|
109304
|
+
affiliateLinks?: AffiliateLinkCreateNestedManyWithoutAffiliateInput
|
|
109305
|
+
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
109306
|
+
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
109307
|
+
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
109308
|
+
}
|
|
109309
|
+
|
|
109310
|
+
export type UserUncheckedCreateWithoutImpactRadiusEventsInput = {
|
|
109311
|
+
id?: number
|
|
109312
|
+
role: string
|
|
109313
|
+
email?: string | null
|
|
109314
|
+
password?: string | null
|
|
109315
|
+
registered?: Date | string
|
|
109316
|
+
lastLoginDate?: Date | string | null
|
|
109317
|
+
firstName?: string | null
|
|
109318
|
+
lastName?: string | null
|
|
109319
|
+
phone?: string | null
|
|
109320
|
+
phoneCode?: number | null
|
|
109321
|
+
phoneShort?: string | null
|
|
109322
|
+
profilePicUrl?: string | null
|
|
109323
|
+
forgotPasswordKey?: string | null
|
|
109324
|
+
affiliateSlug?: string | null
|
|
109325
|
+
closed?: Date | string | null
|
|
109326
|
+
closedReason?: string | null
|
|
109327
|
+
usercomLastSynced?: Date | string | null
|
|
109328
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
109329
|
+
referrerId?: number | null
|
|
109330
|
+
referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
|
|
109331
|
+
logs?: LogUncheckedCreateNestedManyWithoutUserInput
|
|
109332
|
+
creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
|
|
109333
|
+
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutUserInput
|
|
109334
|
+
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutUserInput
|
|
109335
|
+
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutUserInput
|
|
109336
|
+
facebookProfile?: FacebookProfileUncheckedCreateNestedOneWithoutUserInput
|
|
109337
|
+
twitterProfile?: TwitterProfileUncheckedCreateNestedOneWithoutUserInput
|
|
109338
|
+
twitchProfile?: TwitchProfileUncheckedCreateNestedOneWithoutUserInput
|
|
109339
|
+
brandProfiles?: BrandUserProfileUncheckedCreateNestedManyWithoutUserInput
|
|
109340
|
+
optIns?: OptInUncheckedCreateNestedManyWithoutUserInput
|
|
109341
|
+
assignedBrands?: BrandUncheckedCreateNestedManyWithoutDedicatedSpecialistInput
|
|
109342
|
+
messages?: MessageUncheckedCreateNestedManyWithoutUserInput
|
|
109343
|
+
socialPosts?: SocialPostUncheckedCreateNestedManyWithoutUserInput
|
|
109344
|
+
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutCreatorInput
|
|
109345
|
+
affiliateLinks?: AffiliateLinkUncheckedCreateNestedManyWithoutAffiliateInput
|
|
109346
|
+
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
109347
|
+
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
109348
|
+
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
109349
|
+
}
|
|
109350
|
+
|
|
109351
|
+
export type UserCreateOrConnectWithoutImpactRadiusEventsInput = {
|
|
109352
|
+
where: UserWhereUniqueInput
|
|
109353
|
+
create: XOR<UserCreateWithoutImpactRadiusEventsInput, UserUncheckedCreateWithoutImpactRadiusEventsInput>
|
|
109354
|
+
}
|
|
109355
|
+
|
|
109356
|
+
export type BrandCreateWithoutImpactRadiusEventsInput = {
|
|
109357
|
+
name: string
|
|
109358
|
+
description?: string | null
|
|
109359
|
+
website: string
|
|
109360
|
+
monthlyContacts?: number | null
|
|
109361
|
+
monthlyReports?: number | null
|
|
109362
|
+
lastContactDistribution?: Date | string | null
|
|
109363
|
+
logoUrl?: string | null
|
|
109364
|
+
affiliateBaseUrl?: string | null
|
|
109365
|
+
affiliateCommission?: number | null
|
|
109366
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
109367
|
+
dedicatedSpecialist?: UserCreateNestedOneWithoutAssignedBrandsInput
|
|
109368
|
+
instagramProfile?: InstagramProfileCreateNestedOneWithoutBrandInput
|
|
109369
|
+
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutBrandInput
|
|
109370
|
+
tiktokProfile?: TiktokProfileCreateNestedOneWithoutBrandInput
|
|
109371
|
+
campaigns?: CampaignCreateNestedManyWithoutBrandInput
|
|
109372
|
+
brandUsers?: BrandUserProfileCreateNestedManyWithoutBrandInput
|
|
109373
|
+
searchContacts?: SearchContactsCreateNestedManyWithoutBrandInput
|
|
109374
|
+
reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
|
|
109375
|
+
categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
|
|
109376
|
+
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
|
|
109377
|
+
savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
|
|
109378
|
+
creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
|
|
109379
|
+
affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
|
|
109380
|
+
messageTemplate?: MessageTemplateCreateNestedManyWithoutBrandInput
|
|
109381
|
+
emailTemplates?: EmailTemplateCreateNestedManyWithoutBrandInput
|
|
109382
|
+
socialListeningLists?: SocialListeningListCreateNestedManyWithoutBrandInput
|
|
109383
|
+
campaignInvites?: CampaignInviteCreateNestedManyWithoutBrandInput
|
|
109384
|
+
images?: BrandToImageCreateNestedManyWithoutBrandInput
|
|
109385
|
+
creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
|
|
109386
|
+
sequences?: SequenceCreateNestedManyWithoutBrandInput
|
|
109387
|
+
parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
|
|
109388
|
+
childBrands?: BrandCreateNestedManyWithoutParentBrandInput
|
|
109389
|
+
}
|
|
109390
|
+
|
|
109391
|
+
export type BrandUncheckedCreateWithoutImpactRadiusEventsInput = {
|
|
109392
|
+
id?: number
|
|
109393
|
+
name: string
|
|
109394
|
+
description?: string | null
|
|
109395
|
+
website: string
|
|
109396
|
+
monthlyContacts?: number | null
|
|
109397
|
+
monthlyReports?: number | null
|
|
109398
|
+
lastContactDistribution?: Date | string | null
|
|
109399
|
+
logoUrl?: string | null
|
|
109400
|
+
affiliateBaseUrl?: string | null
|
|
109401
|
+
affiliateCommission?: number | null
|
|
109402
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
109403
|
+
specialistId?: number | null
|
|
109404
|
+
parentBrandId?: number | null
|
|
109405
|
+
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
109406
|
+
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
109407
|
+
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
109408
|
+
campaigns?: CampaignUncheckedCreateNestedManyWithoutBrandInput
|
|
109409
|
+
brandUsers?: BrandUserProfileUncheckedCreateNestedManyWithoutBrandInput
|
|
109410
|
+
searchContacts?: SearchContactsUncheckedCreateNestedManyWithoutBrandInput
|
|
109411
|
+
reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
|
|
109412
|
+
categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
109413
|
+
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
|
|
109414
|
+
savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
|
|
109415
|
+
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
|
|
109416
|
+
affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
|
|
109417
|
+
messageTemplate?: MessageTemplateUncheckedCreateNestedManyWithoutBrandInput
|
|
109418
|
+
emailTemplates?: EmailTemplateUncheckedCreateNestedManyWithoutBrandInput
|
|
109419
|
+
socialListeningLists?: SocialListeningListUncheckedCreateNestedManyWithoutBrandInput
|
|
109420
|
+
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutBrandInput
|
|
109421
|
+
images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
|
|
109422
|
+
creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
|
|
109423
|
+
sequences?: SequenceUncheckedCreateNestedManyWithoutBrandInput
|
|
109424
|
+
childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
|
|
109425
|
+
}
|
|
109426
|
+
|
|
109427
|
+
export type BrandCreateOrConnectWithoutImpactRadiusEventsInput = {
|
|
109428
|
+
where: BrandWhereUniqueInput
|
|
109429
|
+
create: XOR<BrandCreateWithoutImpactRadiusEventsInput, BrandUncheckedCreateWithoutImpactRadiusEventsInput>
|
|
109430
|
+
}
|
|
109431
|
+
|
|
109432
|
+
export type UserUpsertWithoutImpactRadiusEventsInput = {
|
|
109433
|
+
update: XOR<UserUpdateWithoutImpactRadiusEventsInput, UserUncheckedUpdateWithoutImpactRadiusEventsInput>
|
|
109434
|
+
create: XOR<UserCreateWithoutImpactRadiusEventsInput, UserUncheckedCreateWithoutImpactRadiusEventsInput>
|
|
109435
|
+
where?: UserWhereInput
|
|
109436
|
+
}
|
|
109437
|
+
|
|
109438
|
+
export type UserUpdateToOneWithWhereWithoutImpactRadiusEventsInput = {
|
|
109439
|
+
where?: UserWhereInput
|
|
109440
|
+
data: XOR<UserUpdateWithoutImpactRadiusEventsInput, UserUncheckedUpdateWithoutImpactRadiusEventsInput>
|
|
109441
|
+
}
|
|
109442
|
+
|
|
109443
|
+
export type UserUpdateWithoutImpactRadiusEventsInput = {
|
|
109444
|
+
role?: StringFieldUpdateOperationsInput | string
|
|
109445
|
+
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109446
|
+
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109447
|
+
registered?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
109448
|
+
lastLoginDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
109449
|
+
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109450
|
+
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109451
|
+
phone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109452
|
+
phoneCode?: NullableIntFieldUpdateOperationsInput | number | null
|
|
109453
|
+
phoneShort?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109454
|
+
profilePicUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109455
|
+
forgotPasswordKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109456
|
+
affiliateSlug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109457
|
+
closed?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
109458
|
+
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109459
|
+
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
109460
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
109461
|
+
referrer?: UserUpdateOneWithoutReferredUsersNestedInput
|
|
109462
|
+
referredUsers?: UserUpdateManyWithoutReferrerNestedInput
|
|
109463
|
+
logs?: LogUpdateManyWithoutUserNestedInput
|
|
109464
|
+
creatorProfile?: CreatorProfileUpdateOneWithoutUserNestedInput
|
|
109465
|
+
instagramProfile?: InstagramProfileUpdateOneWithoutUserNestedInput
|
|
109466
|
+
youtubeProfile?: YoutubeProfileUpdateOneWithoutUserNestedInput
|
|
109467
|
+
tiktokProfile?: TiktokProfileUpdateOneWithoutUserNestedInput
|
|
109468
|
+
facebookProfile?: FacebookProfileUpdateOneWithoutUserNestedInput
|
|
109469
|
+
twitterProfile?: TwitterProfileUpdateOneWithoutUserNestedInput
|
|
109470
|
+
twitchProfile?: TwitchProfileUpdateOneWithoutUserNestedInput
|
|
109471
|
+
brandProfiles?: BrandUserProfileUpdateManyWithoutUserNestedInput
|
|
109472
|
+
optIns?: OptInUpdateManyWithoutUserNestedInput
|
|
109473
|
+
assignedBrands?: BrandUpdateManyWithoutDedicatedSpecialistNestedInput
|
|
109474
|
+
messages?: MessageUpdateManyWithoutUserNestedInput
|
|
109475
|
+
socialPosts?: SocialPostUpdateManyWithoutUserNestedInput
|
|
109476
|
+
paymentTransactions?: PaymentTransactionUpdateManyWithoutCreatorNestedInput
|
|
109477
|
+
affiliateLinks?: AffiliateLinkUpdateManyWithoutAffiliateNestedInput
|
|
109478
|
+
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
109479
|
+
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
109480
|
+
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
109481
|
+
}
|
|
109482
|
+
|
|
109483
|
+
export type UserUncheckedUpdateWithoutImpactRadiusEventsInput = {
|
|
109484
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
109485
|
+
role?: StringFieldUpdateOperationsInput | string
|
|
109486
|
+
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109487
|
+
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109488
|
+
registered?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
109489
|
+
lastLoginDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
109490
|
+
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109491
|
+
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109492
|
+
phone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109493
|
+
phoneCode?: NullableIntFieldUpdateOperationsInput | number | null
|
|
109494
|
+
phoneShort?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109495
|
+
profilePicUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109496
|
+
forgotPasswordKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109497
|
+
affiliateSlug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109498
|
+
closed?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
109499
|
+
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109500
|
+
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
109501
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
109502
|
+
referrerId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
109503
|
+
referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
|
|
109504
|
+
logs?: LogUncheckedUpdateManyWithoutUserNestedInput
|
|
109505
|
+
creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
109506
|
+
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
109507
|
+
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
109508
|
+
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
109509
|
+
facebookProfile?: FacebookProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
109510
|
+
twitterProfile?: TwitterProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
109511
|
+
twitchProfile?: TwitchProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
109512
|
+
brandProfiles?: BrandUserProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
109513
|
+
optIns?: OptInUncheckedUpdateManyWithoutUserNestedInput
|
|
109514
|
+
assignedBrands?: BrandUncheckedUpdateManyWithoutDedicatedSpecialistNestedInput
|
|
109515
|
+
messages?: MessageUncheckedUpdateManyWithoutUserNestedInput
|
|
109516
|
+
socialPosts?: SocialPostUncheckedUpdateManyWithoutUserNestedInput
|
|
109517
|
+
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutCreatorNestedInput
|
|
109518
|
+
affiliateLinks?: AffiliateLinkUncheckedUpdateManyWithoutAffiliateNestedInput
|
|
109519
|
+
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
109520
|
+
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
109521
|
+
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
109522
|
+
}
|
|
109523
|
+
|
|
109524
|
+
export type BrandUpsertWithoutImpactRadiusEventsInput = {
|
|
109525
|
+
update: XOR<BrandUpdateWithoutImpactRadiusEventsInput, BrandUncheckedUpdateWithoutImpactRadiusEventsInput>
|
|
109526
|
+
create: XOR<BrandCreateWithoutImpactRadiusEventsInput, BrandUncheckedCreateWithoutImpactRadiusEventsInput>
|
|
109527
|
+
where?: BrandWhereInput
|
|
109528
|
+
}
|
|
109529
|
+
|
|
109530
|
+
export type BrandUpdateToOneWithWhereWithoutImpactRadiusEventsInput = {
|
|
109531
|
+
where?: BrandWhereInput
|
|
109532
|
+
data: XOR<BrandUpdateWithoutImpactRadiusEventsInput, BrandUncheckedUpdateWithoutImpactRadiusEventsInput>
|
|
109533
|
+
}
|
|
109534
|
+
|
|
109535
|
+
export type BrandUpdateWithoutImpactRadiusEventsInput = {
|
|
109536
|
+
name?: StringFieldUpdateOperationsInput | string
|
|
109537
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109538
|
+
website?: StringFieldUpdateOperationsInput | string
|
|
109539
|
+
monthlyContacts?: NullableIntFieldUpdateOperationsInput | number | null
|
|
109540
|
+
monthlyReports?: NullableIntFieldUpdateOperationsInput | number | null
|
|
109541
|
+
lastContactDistribution?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
109542
|
+
logoUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109543
|
+
affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109544
|
+
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
109545
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
109546
|
+
dedicatedSpecialist?: UserUpdateOneWithoutAssignedBrandsNestedInput
|
|
109547
|
+
instagramProfile?: InstagramProfileUpdateOneWithoutBrandNestedInput
|
|
109548
|
+
youtubeProfile?: YoutubeProfileUpdateOneWithoutBrandNestedInput
|
|
109549
|
+
tiktokProfile?: TiktokProfileUpdateOneWithoutBrandNestedInput
|
|
109550
|
+
campaigns?: CampaignUpdateManyWithoutBrandNestedInput
|
|
109551
|
+
brandUsers?: BrandUserProfileUpdateManyWithoutBrandNestedInput
|
|
109552
|
+
searchContacts?: SearchContactsUpdateManyWithoutBrandNestedInput
|
|
109553
|
+
reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
|
|
109554
|
+
categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
|
|
109555
|
+
paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
|
|
109556
|
+
savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
|
|
109557
|
+
creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
|
|
109558
|
+
affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
|
|
109559
|
+
messageTemplate?: MessageTemplateUpdateManyWithoutBrandNestedInput
|
|
109560
|
+
emailTemplates?: EmailTemplateUpdateManyWithoutBrandNestedInput
|
|
109561
|
+
socialListeningLists?: SocialListeningListUpdateManyWithoutBrandNestedInput
|
|
109562
|
+
campaignInvites?: CampaignInviteUpdateManyWithoutBrandNestedInput
|
|
109563
|
+
images?: BrandToImageUpdateManyWithoutBrandNestedInput
|
|
109564
|
+
creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
|
|
109565
|
+
sequences?: SequenceUpdateManyWithoutBrandNestedInput
|
|
109566
|
+
parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
|
|
109567
|
+
childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
|
|
109568
|
+
}
|
|
109569
|
+
|
|
109570
|
+
export type BrandUncheckedUpdateWithoutImpactRadiusEventsInput = {
|
|
109571
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
109572
|
+
name?: StringFieldUpdateOperationsInput | string
|
|
109573
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109574
|
+
website?: StringFieldUpdateOperationsInput | string
|
|
109575
|
+
monthlyContacts?: NullableIntFieldUpdateOperationsInput | number | null
|
|
109576
|
+
monthlyReports?: NullableIntFieldUpdateOperationsInput | number | null
|
|
109577
|
+
lastContactDistribution?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
109578
|
+
logoUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109579
|
+
affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109580
|
+
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
109581
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
109582
|
+
specialistId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
109583
|
+
parentBrandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
109584
|
+
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
109585
|
+
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
109586
|
+
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
109587
|
+
campaigns?: CampaignUncheckedUpdateManyWithoutBrandNestedInput
|
|
109588
|
+
brandUsers?: BrandUserProfileUncheckedUpdateManyWithoutBrandNestedInput
|
|
109589
|
+
searchContacts?: SearchContactsUncheckedUpdateManyWithoutBrandNestedInput
|
|
109590
|
+
reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
|
|
109591
|
+
categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
109592
|
+
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
|
|
109593
|
+
savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
|
|
109594
|
+
creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
|
|
109595
|
+
affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
|
|
109596
|
+
messageTemplate?: MessageTemplateUncheckedUpdateManyWithoutBrandNestedInput
|
|
109597
|
+
emailTemplates?: EmailTemplateUncheckedUpdateManyWithoutBrandNestedInput
|
|
109598
|
+
socialListeningLists?: SocialListeningListUncheckedUpdateManyWithoutBrandNestedInput
|
|
109599
|
+
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutBrandNestedInput
|
|
109600
|
+
images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
|
|
109601
|
+
creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
|
|
109602
|
+
sequences?: SequenceUncheckedUpdateManyWithoutBrandNestedInput
|
|
109603
|
+
childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
|
|
107478
109604
|
}
|
|
107479
109605
|
|
|
107480
109606
|
export type BrandCreateWithoutCreatorsearchfilterInput = {
|
|
@@ -107507,6 +109633,7 @@ export namespace Prisma {
|
|
|
107507
109633
|
campaignInvites?: CampaignInviteCreateNestedManyWithoutBrandInput
|
|
107508
109634
|
images?: BrandToImageCreateNestedManyWithoutBrandInput
|
|
107509
109635
|
sequences?: SequenceCreateNestedManyWithoutBrandInput
|
|
109636
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutBrandInput
|
|
107510
109637
|
parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
|
|
107511
109638
|
childBrands?: BrandCreateNestedManyWithoutParentBrandInput
|
|
107512
109639
|
}
|
|
@@ -107543,6 +109670,7 @@ export namespace Prisma {
|
|
|
107543
109670
|
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutBrandInput
|
|
107544
109671
|
images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
|
|
107545
109672
|
sequences?: SequenceUncheckedCreateNestedManyWithoutBrandInput
|
|
109673
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutBrandInput
|
|
107546
109674
|
childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
|
|
107547
109675
|
}
|
|
107548
109676
|
|
|
@@ -107592,6 +109720,7 @@ export namespace Prisma {
|
|
|
107592
109720
|
campaignInvites?: CampaignInviteUpdateManyWithoutBrandNestedInput
|
|
107593
109721
|
images?: BrandToImageUpdateManyWithoutBrandNestedInput
|
|
107594
109722
|
sequences?: SequenceUpdateManyWithoutBrandNestedInput
|
|
109723
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutBrandNestedInput
|
|
107595
109724
|
parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
|
|
107596
109725
|
childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
|
|
107597
109726
|
}
|
|
@@ -107628,6 +109757,7 @@ export namespace Prisma {
|
|
|
107628
109757
|
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutBrandNestedInput
|
|
107629
109758
|
images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
|
|
107630
109759
|
sequences?: SequenceUncheckedUpdateManyWithoutBrandNestedInput
|
|
109760
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutBrandNestedInput
|
|
107631
109761
|
childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
|
|
107632
109762
|
}
|
|
107633
109763
|
|
|
@@ -107823,6 +109953,7 @@ export namespace Prisma {
|
|
|
107823
109953
|
campaignInvites?: CampaignInviteCreateNestedManyWithoutBrandInput
|
|
107824
109954
|
images?: BrandToImageCreateNestedManyWithoutBrandInput
|
|
107825
109955
|
creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
|
|
109956
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutBrandInput
|
|
107826
109957
|
parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
|
|
107827
109958
|
childBrands?: BrandCreateNestedManyWithoutParentBrandInput
|
|
107828
109959
|
}
|
|
@@ -107859,6 +109990,7 @@ export namespace Prisma {
|
|
|
107859
109990
|
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutBrandInput
|
|
107860
109991
|
images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
|
|
107861
109992
|
creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
|
|
109993
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutBrandInput
|
|
107862
109994
|
childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
|
|
107863
109995
|
}
|
|
107864
109996
|
|
|
@@ -108181,6 +110313,7 @@ export namespace Prisma {
|
|
|
108181
110313
|
campaignInvites?: CampaignInviteUpdateManyWithoutBrandNestedInput
|
|
108182
110314
|
images?: BrandToImageUpdateManyWithoutBrandNestedInput
|
|
108183
110315
|
creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
|
|
110316
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutBrandNestedInput
|
|
108184
110317
|
parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
|
|
108185
110318
|
childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
|
|
108186
110319
|
}
|
|
@@ -108217,6 +110350,7 @@ export namespace Prisma {
|
|
|
108217
110350
|
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutBrandNestedInput
|
|
108218
110351
|
images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
|
|
108219
110352
|
creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
|
|
110353
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutBrandNestedInput
|
|
108220
110354
|
childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
|
|
108221
110355
|
}
|
|
108222
110356
|
|
|
@@ -109087,6 +111221,16 @@ export namespace Prisma {
|
|
|
109087
111221
|
advertiserId?: number | null
|
|
109088
111222
|
}
|
|
109089
111223
|
|
|
111224
|
+
export type ImpactRadiusEventCreateManyUserInput = {
|
|
111225
|
+
id?: number
|
|
111226
|
+
type: string
|
|
111227
|
+
created?: Date | string
|
|
111228
|
+
amount?: number | null
|
|
111229
|
+
commission?: number | null
|
|
111230
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
111231
|
+
brandId?: number | null
|
|
111232
|
+
}
|
|
111233
|
+
|
|
109090
111234
|
export type UserUpdateWithoutReferrerInput = {
|
|
109091
111235
|
role?: StringFieldUpdateOperationsInput | string
|
|
109092
111236
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -109124,6 +111268,7 @@ export namespace Prisma {
|
|
|
109124
111268
|
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
109125
111269
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
109126
111270
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
111271
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
109127
111272
|
}
|
|
109128
111273
|
|
|
109129
111274
|
export type UserUncheckedUpdateWithoutReferrerInput = {
|
|
@@ -109164,6 +111309,7 @@ export namespace Prisma {
|
|
|
109164
111309
|
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
109165
111310
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
109166
111311
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
111312
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
109167
111313
|
}
|
|
109168
111314
|
|
|
109169
111315
|
export type UserUncheckedUpdateManyWithoutReferrerInput = {
|
|
@@ -109309,6 +111455,7 @@ export namespace Prisma {
|
|
|
109309
111455
|
images?: BrandToImageUpdateManyWithoutBrandNestedInput
|
|
109310
111456
|
creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
|
|
109311
111457
|
sequences?: SequenceUpdateManyWithoutBrandNestedInput
|
|
111458
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutBrandNestedInput
|
|
109312
111459
|
parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
|
|
109313
111460
|
childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
|
|
109314
111461
|
}
|
|
@@ -109345,6 +111492,7 @@ export namespace Prisma {
|
|
|
109345
111492
|
images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
|
|
109346
111493
|
creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
|
|
109347
111494
|
sequences?: SequenceUncheckedUpdateManyWithoutBrandNestedInput
|
|
111495
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutBrandNestedInput
|
|
109348
111496
|
childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
|
|
109349
111497
|
}
|
|
109350
111498
|
|
|
@@ -109683,6 +111831,35 @@ export namespace Prisma {
|
|
|
109683
111831
|
advertiserId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
109684
111832
|
}
|
|
109685
111833
|
|
|
111834
|
+
export type ImpactRadiusEventUpdateWithoutUserInput = {
|
|
111835
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
111836
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
111837
|
+
amount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
111838
|
+
commission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
111839
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
111840
|
+
brand?: BrandUpdateOneWithoutImpactRadiusEventsNestedInput
|
|
111841
|
+
}
|
|
111842
|
+
|
|
111843
|
+
export type ImpactRadiusEventUncheckedUpdateWithoutUserInput = {
|
|
111844
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
111845
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
111846
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
111847
|
+
amount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
111848
|
+
commission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
111849
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
111850
|
+
brandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
111851
|
+
}
|
|
111852
|
+
|
|
111853
|
+
export type ImpactRadiusEventUncheckedUpdateManyWithoutUserInput = {
|
|
111854
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
111855
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
111856
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
111857
|
+
amount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
111858
|
+
commission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
111859
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
111860
|
+
brandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
111861
|
+
}
|
|
111862
|
+
|
|
109686
111863
|
export type CreatorToCategoryCreateManyCreatorProfileInput = {
|
|
109687
111864
|
categoryId: number
|
|
109688
111865
|
}
|
|
@@ -109883,6 +112060,16 @@ export namespace Prisma {
|
|
|
109883
112060
|
enabled?: boolean
|
|
109884
112061
|
}
|
|
109885
112062
|
|
|
112063
|
+
export type ImpactRadiusEventCreateManyBrandInput = {
|
|
112064
|
+
id?: number
|
|
112065
|
+
type: string
|
|
112066
|
+
created?: Date | string
|
|
112067
|
+
amount?: number | null
|
|
112068
|
+
commission?: number | null
|
|
112069
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
112070
|
+
userId: number
|
|
112071
|
+
}
|
|
112072
|
+
|
|
109886
112073
|
export type BrandCreateManyParentBrandInput = {
|
|
109887
112074
|
id?: number
|
|
109888
112075
|
name: string
|
|
@@ -110485,6 +112672,35 @@ export namespace Prisma {
|
|
|
110485
112672
|
enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
110486
112673
|
}
|
|
110487
112674
|
|
|
112675
|
+
export type ImpactRadiusEventUpdateWithoutBrandInput = {
|
|
112676
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
112677
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
112678
|
+
amount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
112679
|
+
commission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
112680
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
112681
|
+
user?: UserUpdateOneRequiredWithoutImpactRadiusEventsNestedInput
|
|
112682
|
+
}
|
|
112683
|
+
|
|
112684
|
+
export type ImpactRadiusEventUncheckedUpdateWithoutBrandInput = {
|
|
112685
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
112686
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
112687
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
112688
|
+
amount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
112689
|
+
commission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
112690
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
112691
|
+
userId?: IntFieldUpdateOperationsInput | number
|
|
112692
|
+
}
|
|
112693
|
+
|
|
112694
|
+
export type ImpactRadiusEventUncheckedUpdateManyWithoutBrandInput = {
|
|
112695
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
112696
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
112697
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
112698
|
+
amount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
112699
|
+
commission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
112700
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
112701
|
+
userId?: IntFieldUpdateOperationsInput | number
|
|
112702
|
+
}
|
|
112703
|
+
|
|
110488
112704
|
export type BrandUpdateWithoutParentBrandInput = {
|
|
110489
112705
|
name?: StringFieldUpdateOperationsInput | string
|
|
110490
112706
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -110516,6 +112732,7 @@ export namespace Prisma {
|
|
|
110516
112732
|
images?: BrandToImageUpdateManyWithoutBrandNestedInput
|
|
110517
112733
|
creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
|
|
110518
112734
|
sequences?: SequenceUpdateManyWithoutBrandNestedInput
|
|
112735
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutBrandNestedInput
|
|
110519
112736
|
childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
|
|
110520
112737
|
}
|
|
110521
112738
|
|
|
@@ -110551,6 +112768,7 @@ export namespace Prisma {
|
|
|
110551
112768
|
images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
|
|
110552
112769
|
creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
|
|
110553
112770
|
sequences?: SequenceUncheckedUpdateManyWithoutBrandNestedInput
|
|
112771
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutBrandNestedInput
|
|
110554
112772
|
childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
|
|
110555
112773
|
}
|
|
110556
112774
|
|
|
@@ -112574,6 +114792,10 @@ export namespace Prisma {
|
|
|
112574
114792
|
* @deprecated Use RakutenActivityDefaultArgs instead
|
|
112575
114793
|
*/
|
|
112576
114794
|
export type RakutenActivityArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = RakutenActivityDefaultArgs<ExtArgs>
|
|
114795
|
+
/**
|
|
114796
|
+
* @deprecated Use ImpactRadiusEventDefaultArgs instead
|
|
114797
|
+
*/
|
|
114798
|
+
export type ImpactRadiusEventArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = ImpactRadiusEventDefaultArgs<ExtArgs>
|
|
112577
114799
|
/**
|
|
112578
114800
|
* @deprecated Use CreatorSearchFilterDefaultArgs instead
|
|
112579
114801
|
*/
|