@creator.co/creatorco-prisma-client 1.0.48 → 1.0.50-alpha-283f6cb
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 +25 -5
- package/index-browser.js +21 -1
- package/index.d.ts +3060 -127
- package/index.js +25 -5
- package/package.json +1 -1
- package/schema.prisma +24 -0
- package/wasm.js +21 -1
package/index.d.ts
CHANGED
|
@@ -383,6 +383,11 @@ export type ShopifyDiscountCode = $Result.DefaultSelection<Prisma.$ShopifyDiscou
|
|
|
383
383
|
*
|
|
384
384
|
*/
|
|
385
385
|
export type ShopifySale = $Result.DefaultSelection<Prisma.$ShopifySalePayload>
|
|
386
|
+
/**
|
|
387
|
+
* Model CreatorFlag
|
|
388
|
+
*
|
|
389
|
+
*/
|
|
390
|
+
export type CreatorFlag = $Result.DefaultSelection<Prisma.$CreatorFlagPayload>
|
|
386
391
|
|
|
387
392
|
/**
|
|
388
393
|
* Enums
|
|
@@ -1291,6 +1296,16 @@ export class PrismaClient<
|
|
|
1291
1296
|
* ```
|
|
1292
1297
|
*/
|
|
1293
1298
|
get shopifySale(): Prisma.ShopifySaleDelegate<ExtArgs>;
|
|
1299
|
+
|
|
1300
|
+
/**
|
|
1301
|
+
* `prisma.creatorFlag`: Exposes CRUD operations for the **CreatorFlag** model.
|
|
1302
|
+
* Example usage:
|
|
1303
|
+
* ```ts
|
|
1304
|
+
* // Fetch zero or more CreatorFlags
|
|
1305
|
+
* const creatorFlags = await prisma.creatorFlag.findMany()
|
|
1306
|
+
* ```
|
|
1307
|
+
*/
|
|
1308
|
+
get creatorFlag(): Prisma.CreatorFlagDelegate<ExtArgs>;
|
|
1294
1309
|
}
|
|
1295
1310
|
|
|
1296
1311
|
export namespace Prisma {
|
|
@@ -1841,7 +1856,8 @@ export namespace Prisma {
|
|
|
1841
1856
|
ShopifyProductVariation: 'ShopifyProductVariation',
|
|
1842
1857
|
CampaignToShopifyProduct: 'CampaignToShopifyProduct',
|
|
1843
1858
|
ShopifyDiscountCode: 'ShopifyDiscountCode',
|
|
1844
|
-
ShopifySale: 'ShopifySale'
|
|
1859
|
+
ShopifySale: 'ShopifySale',
|
|
1860
|
+
CreatorFlag: 'CreatorFlag'
|
|
1845
1861
|
};
|
|
1846
1862
|
|
|
1847
1863
|
export type ModelName = (typeof ModelName)[keyof typeof ModelName]
|
|
@@ -1858,7 +1874,7 @@ export namespace Prisma {
|
|
|
1858
1874
|
|
|
1859
1875
|
export type TypeMap<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
1860
1876
|
meta: {
|
|
1861
|
-
modelProps: 'user' | 'log' | 'creatorProfile' | 'instagramProfile' | 'tiktokProfile' | 'youtubeProfile' | 'twitchProfile' | 'facebookProfile' | 'twitterProfile' | 'brandUserProfile' | 'brand' | 'searchContacts' | 'reportCredits' | 'brandToImage' | 'brandToCategory' | 'creatorToCategory' | 'chat' | 'message' | 'campaign' | 'campaignPin' | 'campaignToImage' | 'campaignToBrandAffiliateLink' | 'campaignToCategory' | 'campaignToCountry' | 'productList' | 'productListItem' | 'campaignToProductList' | 'optinToProductListItem' | 'variable' | 'variableOption' | 'step' | 'campaignStep' | 'optInStep' | 'category' | 'optIn' | 'trolleyPayment' | 'optInVariable' | 'socialPost' | 'archivedSocialPost' | 'image' | 'brandImage' | 'country' | 'state' | 'paymentTransaction' | 'externalAffiliateClick' | 'brandAffiliateLink' | 'affiliateLink' | 'affiliateClick' | 'affiliateEvent' | 'savedFile' | 'campaignInvite' | 'creatorList' | 'creatorListItem' | 'socialProfile' | 'messageTemplate' | 'emailTemplate' | 'socialListeningList' | 'listToSocialPost' | 'optInView' | 'rakutenActivity' | 'impactRadiusEvent' | 'shareASaleEvent' | 'creatorSearchFilter' | 'sequence' | 'sequenceStep' | 'sequenceOutboundEmail' | 'sequenceInboundEmail' | 'sequenceImapCheckpoint' | 'shopifyStore' | 'shopifyProduct' | 'shopifyProductVariation' | 'campaignToShopifyProduct' | 'shopifyDiscountCode' | 'shopifySale'
|
|
1877
|
+
modelProps: 'user' | 'log' | 'creatorProfile' | 'instagramProfile' | 'tiktokProfile' | 'youtubeProfile' | 'twitchProfile' | 'facebookProfile' | 'twitterProfile' | 'brandUserProfile' | 'brand' | 'searchContacts' | 'reportCredits' | 'brandToImage' | 'brandToCategory' | 'creatorToCategory' | 'chat' | 'message' | 'campaign' | 'campaignPin' | 'campaignToImage' | 'campaignToBrandAffiliateLink' | 'campaignToCategory' | 'campaignToCountry' | 'productList' | 'productListItem' | 'campaignToProductList' | 'optinToProductListItem' | 'variable' | 'variableOption' | 'step' | 'campaignStep' | 'optInStep' | 'category' | 'optIn' | 'trolleyPayment' | 'optInVariable' | 'socialPost' | 'archivedSocialPost' | 'image' | 'brandImage' | 'country' | 'state' | 'paymentTransaction' | 'externalAffiliateClick' | 'brandAffiliateLink' | 'affiliateLink' | 'affiliateClick' | 'affiliateEvent' | 'savedFile' | 'campaignInvite' | 'creatorList' | 'creatorListItem' | 'socialProfile' | 'messageTemplate' | 'emailTemplate' | 'socialListeningList' | 'listToSocialPost' | 'optInView' | 'rakutenActivity' | 'impactRadiusEvent' | 'shareASaleEvent' | 'creatorSearchFilter' | 'sequence' | 'sequenceStep' | 'sequenceOutboundEmail' | 'sequenceInboundEmail' | 'sequenceImapCheckpoint' | 'shopifyStore' | 'shopifyProduct' | 'shopifyProductVariation' | 'campaignToShopifyProduct' | 'shopifyDiscountCode' | 'shopifySale' | 'creatorFlag'
|
|
1862
1878
|
txIsolationLevel: Prisma.TransactionIsolationLevel
|
|
1863
1879
|
},
|
|
1864
1880
|
model: {
|
|
@@ -7042,6 +7058,76 @@ export namespace Prisma {
|
|
|
7042
7058
|
}
|
|
7043
7059
|
}
|
|
7044
7060
|
}
|
|
7061
|
+
CreatorFlag: {
|
|
7062
|
+
payload: Prisma.$CreatorFlagPayload<ExtArgs>
|
|
7063
|
+
fields: Prisma.CreatorFlagFieldRefs
|
|
7064
|
+
operations: {
|
|
7065
|
+
findUnique: {
|
|
7066
|
+
args: Prisma.CreatorFlagFindUniqueArgs<ExtArgs>,
|
|
7067
|
+
result: $Utils.PayloadToResult<Prisma.$CreatorFlagPayload> | null
|
|
7068
|
+
}
|
|
7069
|
+
findUniqueOrThrow: {
|
|
7070
|
+
args: Prisma.CreatorFlagFindUniqueOrThrowArgs<ExtArgs>,
|
|
7071
|
+
result: $Utils.PayloadToResult<Prisma.$CreatorFlagPayload>
|
|
7072
|
+
}
|
|
7073
|
+
findFirst: {
|
|
7074
|
+
args: Prisma.CreatorFlagFindFirstArgs<ExtArgs>,
|
|
7075
|
+
result: $Utils.PayloadToResult<Prisma.$CreatorFlagPayload> | null
|
|
7076
|
+
}
|
|
7077
|
+
findFirstOrThrow: {
|
|
7078
|
+
args: Prisma.CreatorFlagFindFirstOrThrowArgs<ExtArgs>,
|
|
7079
|
+
result: $Utils.PayloadToResult<Prisma.$CreatorFlagPayload>
|
|
7080
|
+
}
|
|
7081
|
+
findMany: {
|
|
7082
|
+
args: Prisma.CreatorFlagFindManyArgs<ExtArgs>,
|
|
7083
|
+
result: $Utils.PayloadToResult<Prisma.$CreatorFlagPayload>[]
|
|
7084
|
+
}
|
|
7085
|
+
create: {
|
|
7086
|
+
args: Prisma.CreatorFlagCreateArgs<ExtArgs>,
|
|
7087
|
+
result: $Utils.PayloadToResult<Prisma.$CreatorFlagPayload>
|
|
7088
|
+
}
|
|
7089
|
+
createMany: {
|
|
7090
|
+
args: Prisma.CreatorFlagCreateManyArgs<ExtArgs>,
|
|
7091
|
+
result: Prisma.BatchPayload
|
|
7092
|
+
}
|
|
7093
|
+
createManyAndReturn: {
|
|
7094
|
+
args: Prisma.CreatorFlagCreateManyAndReturnArgs<ExtArgs>,
|
|
7095
|
+
result: $Utils.PayloadToResult<Prisma.$CreatorFlagPayload>[]
|
|
7096
|
+
}
|
|
7097
|
+
delete: {
|
|
7098
|
+
args: Prisma.CreatorFlagDeleteArgs<ExtArgs>,
|
|
7099
|
+
result: $Utils.PayloadToResult<Prisma.$CreatorFlagPayload>
|
|
7100
|
+
}
|
|
7101
|
+
update: {
|
|
7102
|
+
args: Prisma.CreatorFlagUpdateArgs<ExtArgs>,
|
|
7103
|
+
result: $Utils.PayloadToResult<Prisma.$CreatorFlagPayload>
|
|
7104
|
+
}
|
|
7105
|
+
deleteMany: {
|
|
7106
|
+
args: Prisma.CreatorFlagDeleteManyArgs<ExtArgs>,
|
|
7107
|
+
result: Prisma.BatchPayload
|
|
7108
|
+
}
|
|
7109
|
+
updateMany: {
|
|
7110
|
+
args: Prisma.CreatorFlagUpdateManyArgs<ExtArgs>,
|
|
7111
|
+
result: Prisma.BatchPayload
|
|
7112
|
+
}
|
|
7113
|
+
upsert: {
|
|
7114
|
+
args: Prisma.CreatorFlagUpsertArgs<ExtArgs>,
|
|
7115
|
+
result: $Utils.PayloadToResult<Prisma.$CreatorFlagPayload>
|
|
7116
|
+
}
|
|
7117
|
+
aggregate: {
|
|
7118
|
+
args: Prisma.CreatorFlagAggregateArgs<ExtArgs>,
|
|
7119
|
+
result: $Utils.Optional<AggregateCreatorFlag>
|
|
7120
|
+
}
|
|
7121
|
+
groupBy: {
|
|
7122
|
+
args: Prisma.CreatorFlagGroupByArgs<ExtArgs>,
|
|
7123
|
+
result: $Utils.Optional<CreatorFlagGroupByOutputType>[]
|
|
7124
|
+
}
|
|
7125
|
+
count: {
|
|
7126
|
+
args: Prisma.CreatorFlagCountArgs<ExtArgs>,
|
|
7127
|
+
result: $Utils.Optional<CreatorFlagCountAggregateOutputType> | number
|
|
7128
|
+
}
|
|
7129
|
+
}
|
|
7130
|
+
}
|
|
7045
7131
|
}
|
|
7046
7132
|
} & {
|
|
7047
7133
|
other: {
|
|
@@ -7215,6 +7301,9 @@ export namespace Prisma {
|
|
|
7215
7301
|
socialProfiles: number
|
|
7216
7302
|
rakutenActivity: number
|
|
7217
7303
|
impactRadiusEvents: number
|
|
7304
|
+
flagsAssigned: number
|
|
7305
|
+
flagsCreated: number
|
|
7306
|
+
flagsEdited: number
|
|
7218
7307
|
}
|
|
7219
7308
|
|
|
7220
7309
|
export type UserCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -7231,6 +7320,9 @@ export namespace Prisma {
|
|
|
7231
7320
|
socialProfiles?: boolean | UserCountOutputTypeCountSocialProfilesArgs
|
|
7232
7321
|
rakutenActivity?: boolean | UserCountOutputTypeCountRakutenActivityArgs
|
|
7233
7322
|
impactRadiusEvents?: boolean | UserCountOutputTypeCountImpactRadiusEventsArgs
|
|
7323
|
+
flagsAssigned?: boolean | UserCountOutputTypeCountFlagsAssignedArgs
|
|
7324
|
+
flagsCreated?: boolean | UserCountOutputTypeCountFlagsCreatedArgs
|
|
7325
|
+
flagsEdited?: boolean | UserCountOutputTypeCountFlagsEditedArgs
|
|
7234
7326
|
}
|
|
7235
7327
|
|
|
7236
7328
|
// Custom InputTypes
|
|
@@ -7335,6 +7427,27 @@ export namespace Prisma {
|
|
|
7335
7427
|
where?: ImpactRadiusEventWhereInput
|
|
7336
7428
|
}
|
|
7337
7429
|
|
|
7430
|
+
/**
|
|
7431
|
+
* UserCountOutputType without action
|
|
7432
|
+
*/
|
|
7433
|
+
export type UserCountOutputTypeCountFlagsAssignedArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
7434
|
+
where?: CreatorFlagWhereInput
|
|
7435
|
+
}
|
|
7436
|
+
|
|
7437
|
+
/**
|
|
7438
|
+
* UserCountOutputType without action
|
|
7439
|
+
*/
|
|
7440
|
+
export type UserCountOutputTypeCountFlagsCreatedArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
7441
|
+
where?: CreatorFlagWhereInput
|
|
7442
|
+
}
|
|
7443
|
+
|
|
7444
|
+
/**
|
|
7445
|
+
* UserCountOutputType without action
|
|
7446
|
+
*/
|
|
7447
|
+
export type UserCountOutputTypeCountFlagsEditedArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
7448
|
+
where?: CreatorFlagWhereInput
|
|
7449
|
+
}
|
|
7450
|
+
|
|
7338
7451
|
|
|
7339
7452
|
/**
|
|
7340
7453
|
* Count Type CreatorProfileCountOutputType
|
|
@@ -9112,6 +9225,9 @@ export namespace Prisma {
|
|
|
9112
9225
|
socialProfiles?: boolean | User$socialProfilesArgs<ExtArgs>
|
|
9113
9226
|
rakutenActivity?: boolean | User$rakutenActivityArgs<ExtArgs>
|
|
9114
9227
|
impactRadiusEvents?: boolean | User$impactRadiusEventsArgs<ExtArgs>
|
|
9228
|
+
flagsAssigned?: boolean | User$flagsAssignedArgs<ExtArgs>
|
|
9229
|
+
flagsCreated?: boolean | User$flagsCreatedArgs<ExtArgs>
|
|
9230
|
+
flagsEdited?: boolean | User$flagsEditedArgs<ExtArgs>
|
|
9115
9231
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
9116
9232
|
}, ExtArgs["result"]["user"]>
|
|
9117
9233
|
|
|
@@ -9186,6 +9302,9 @@ export namespace Prisma {
|
|
|
9186
9302
|
socialProfiles?: boolean | User$socialProfilesArgs<ExtArgs>
|
|
9187
9303
|
rakutenActivity?: boolean | User$rakutenActivityArgs<ExtArgs>
|
|
9188
9304
|
impactRadiusEvents?: boolean | User$impactRadiusEventsArgs<ExtArgs>
|
|
9305
|
+
flagsAssigned?: boolean | User$flagsAssignedArgs<ExtArgs>
|
|
9306
|
+
flagsCreated?: boolean | User$flagsCreatedArgs<ExtArgs>
|
|
9307
|
+
flagsEdited?: boolean | User$flagsEditedArgs<ExtArgs>
|
|
9189
9308
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
9190
9309
|
}
|
|
9191
9310
|
export type UserIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -9216,6 +9335,9 @@ export namespace Prisma {
|
|
|
9216
9335
|
socialProfiles: Prisma.$SocialProfilePayload<ExtArgs>[]
|
|
9217
9336
|
rakutenActivity: Prisma.$RakutenActivityPayload<ExtArgs>[]
|
|
9218
9337
|
impactRadiusEvents: Prisma.$ImpactRadiusEventPayload<ExtArgs>[]
|
|
9338
|
+
flagsAssigned: Prisma.$CreatorFlagPayload<ExtArgs>[]
|
|
9339
|
+
flagsCreated: Prisma.$CreatorFlagPayload<ExtArgs>[]
|
|
9340
|
+
flagsEdited: Prisma.$CreatorFlagPayload<ExtArgs>[]
|
|
9219
9341
|
}
|
|
9220
9342
|
scalars: $Extensions.GetPayloadResult<{
|
|
9221
9343
|
id: number
|
|
@@ -9671,6 +9793,12 @@ export namespace Prisma {
|
|
|
9671
9793
|
|
|
9672
9794
|
impactRadiusEvents<T extends User$impactRadiusEventsArgs<ExtArgs> = {}>(args?: Subset<T, User$impactRadiusEventsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ImpactRadiusEventPayload<ExtArgs>, T, 'findMany'> | Null>;
|
|
9673
9795
|
|
|
9796
|
+
flagsAssigned<T extends User$flagsAssignedArgs<ExtArgs> = {}>(args?: Subset<T, User$flagsAssignedArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CreatorFlagPayload<ExtArgs>, T, 'findMany'> | Null>;
|
|
9797
|
+
|
|
9798
|
+
flagsCreated<T extends User$flagsCreatedArgs<ExtArgs> = {}>(args?: Subset<T, User$flagsCreatedArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CreatorFlagPayload<ExtArgs>, T, 'findMany'> | Null>;
|
|
9799
|
+
|
|
9800
|
+
flagsEdited<T extends User$flagsEditedArgs<ExtArgs> = {}>(args?: Subset<T, User$flagsEditedArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CreatorFlagPayload<ExtArgs>, T, 'findMany'> | Null>;
|
|
9801
|
+
|
|
9674
9802
|
/**
|
|
9675
9803
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
9676
9804
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -10417,6 +10545,66 @@ export namespace Prisma {
|
|
|
10417
10545
|
distinct?: ImpactRadiusEventScalarFieldEnum | ImpactRadiusEventScalarFieldEnum[]
|
|
10418
10546
|
}
|
|
10419
10547
|
|
|
10548
|
+
/**
|
|
10549
|
+
* User.flagsAssigned
|
|
10550
|
+
*/
|
|
10551
|
+
export type User$flagsAssignedArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10552
|
+
/**
|
|
10553
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
10554
|
+
*/
|
|
10555
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
10556
|
+
/**
|
|
10557
|
+
* Choose, which related nodes to fetch as well
|
|
10558
|
+
*/
|
|
10559
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
10560
|
+
where?: CreatorFlagWhereInput
|
|
10561
|
+
orderBy?: CreatorFlagOrderByWithRelationAndSearchRelevanceInput | CreatorFlagOrderByWithRelationAndSearchRelevanceInput[]
|
|
10562
|
+
cursor?: CreatorFlagWhereUniqueInput
|
|
10563
|
+
take?: number
|
|
10564
|
+
skip?: number
|
|
10565
|
+
distinct?: CreatorFlagScalarFieldEnum | CreatorFlagScalarFieldEnum[]
|
|
10566
|
+
}
|
|
10567
|
+
|
|
10568
|
+
/**
|
|
10569
|
+
* User.flagsCreated
|
|
10570
|
+
*/
|
|
10571
|
+
export type User$flagsCreatedArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10572
|
+
/**
|
|
10573
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
10574
|
+
*/
|
|
10575
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
10576
|
+
/**
|
|
10577
|
+
* Choose, which related nodes to fetch as well
|
|
10578
|
+
*/
|
|
10579
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
10580
|
+
where?: CreatorFlagWhereInput
|
|
10581
|
+
orderBy?: CreatorFlagOrderByWithRelationAndSearchRelevanceInput | CreatorFlagOrderByWithRelationAndSearchRelevanceInput[]
|
|
10582
|
+
cursor?: CreatorFlagWhereUniqueInput
|
|
10583
|
+
take?: number
|
|
10584
|
+
skip?: number
|
|
10585
|
+
distinct?: CreatorFlagScalarFieldEnum | CreatorFlagScalarFieldEnum[]
|
|
10586
|
+
}
|
|
10587
|
+
|
|
10588
|
+
/**
|
|
10589
|
+
* User.flagsEdited
|
|
10590
|
+
*/
|
|
10591
|
+
export type User$flagsEditedArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10592
|
+
/**
|
|
10593
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
10594
|
+
*/
|
|
10595
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
10596
|
+
/**
|
|
10597
|
+
* Choose, which related nodes to fetch as well
|
|
10598
|
+
*/
|
|
10599
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
10600
|
+
where?: CreatorFlagWhereInput
|
|
10601
|
+
orderBy?: CreatorFlagOrderByWithRelationAndSearchRelevanceInput | CreatorFlagOrderByWithRelationAndSearchRelevanceInput[]
|
|
10602
|
+
cursor?: CreatorFlagWhereUniqueInput
|
|
10603
|
+
take?: number
|
|
10604
|
+
skip?: number
|
|
10605
|
+
distinct?: CreatorFlagScalarFieldEnum | CreatorFlagScalarFieldEnum[]
|
|
10606
|
+
}
|
|
10607
|
+
|
|
10420
10608
|
/**
|
|
10421
10609
|
* User without action
|
|
10422
10610
|
*/
|
|
@@ -46990,6 +47178,7 @@ export namespace Prisma {
|
|
|
46990
47178
|
paymentStatus: number
|
|
46991
47179
|
extraData: number
|
|
46992
47180
|
favoritedDate: number
|
|
47181
|
+
rating: number
|
|
46993
47182
|
userId: number
|
|
46994
47183
|
campaignId: number
|
|
46995
47184
|
currentStepId: number
|
|
@@ -47067,6 +47256,7 @@ export namespace Prisma {
|
|
|
47067
47256
|
paymentStatus?: true
|
|
47068
47257
|
extraData?: true
|
|
47069
47258
|
favoritedDate?: true
|
|
47259
|
+
rating?: true
|
|
47070
47260
|
userId?: true
|
|
47071
47261
|
campaignId?: true
|
|
47072
47262
|
currentStepId?: true
|
|
@@ -47175,6 +47365,7 @@ export namespace Prisma {
|
|
|
47175
47365
|
paymentStatus: string
|
|
47176
47366
|
extraData: JsonValue
|
|
47177
47367
|
favoritedDate: Date | null
|
|
47368
|
+
rating: JsonValue | null
|
|
47178
47369
|
userId: number
|
|
47179
47370
|
campaignId: number
|
|
47180
47371
|
currentStepId: number | null
|
|
@@ -47215,6 +47406,7 @@ export namespace Prisma {
|
|
|
47215
47406
|
paymentStatus?: boolean
|
|
47216
47407
|
extraData?: boolean
|
|
47217
47408
|
favoritedDate?: boolean
|
|
47409
|
+
rating?: boolean
|
|
47218
47410
|
userId?: boolean
|
|
47219
47411
|
campaignId?: boolean
|
|
47220
47412
|
currentStepId?: boolean
|
|
@@ -47251,6 +47443,7 @@ export namespace Prisma {
|
|
|
47251
47443
|
paymentStatus?: boolean
|
|
47252
47444
|
extraData?: boolean
|
|
47253
47445
|
favoritedDate?: boolean
|
|
47446
|
+
rating?: boolean
|
|
47254
47447
|
userId?: boolean
|
|
47255
47448
|
campaignId?: boolean
|
|
47256
47449
|
currentStepId?: boolean
|
|
@@ -47275,6 +47468,7 @@ export namespace Prisma {
|
|
|
47275
47468
|
paymentStatus?: boolean
|
|
47276
47469
|
extraData?: boolean
|
|
47277
47470
|
favoritedDate?: boolean
|
|
47471
|
+
rating?: boolean
|
|
47278
47472
|
userId?: boolean
|
|
47279
47473
|
campaignId?: boolean
|
|
47280
47474
|
currentStepId?: boolean
|
|
@@ -47337,6 +47531,7 @@ export namespace Prisma {
|
|
|
47337
47531
|
paymentStatus: string
|
|
47338
47532
|
extraData: Prisma.JsonValue
|
|
47339
47533
|
favoritedDate: Date | null
|
|
47534
|
+
rating: Prisma.JsonValue | null
|
|
47340
47535
|
userId: number
|
|
47341
47536
|
campaignId: number
|
|
47342
47537
|
currentStepId: number | null
|
|
@@ -47801,6 +47996,7 @@ export namespace Prisma {
|
|
|
47801
47996
|
readonly paymentStatus: FieldRef<"OptIn", 'String'>
|
|
47802
47997
|
readonly extraData: FieldRef<"OptIn", 'Json'>
|
|
47803
47998
|
readonly favoritedDate: FieldRef<"OptIn", 'DateTime'>
|
|
47999
|
+
readonly rating: FieldRef<"OptIn", 'Json'>
|
|
47804
48000
|
readonly userId: FieldRef<"OptIn", 'Int'>
|
|
47805
48001
|
readonly campaignId: FieldRef<"OptIn", 'Int'>
|
|
47806
48002
|
readonly currentStepId: FieldRef<"OptIn", 'Int'>
|
|
@@ -89616,343 +89812,1425 @@ export namespace Prisma {
|
|
|
89616
89812
|
|
|
89617
89813
|
|
|
89618
89814
|
/**
|
|
89619
|
-
* Fields of the ShopifySale model
|
|
89815
|
+
* Fields of the ShopifySale model
|
|
89816
|
+
*/
|
|
89817
|
+
interface ShopifySaleFieldRefs {
|
|
89818
|
+
readonly id: FieldRef<"ShopifySale", 'Int'>
|
|
89819
|
+
readonly amount: FieldRef<"ShopifySale", 'Float'>
|
|
89820
|
+
readonly metaData: FieldRef<"ShopifySale", 'Json'>
|
|
89821
|
+
readonly discountCodeId: FieldRef<"ShopifySale", 'Int'>
|
|
89822
|
+
readonly created: FieldRef<"ShopifySale", 'DateTime'>
|
|
89823
|
+
}
|
|
89824
|
+
|
|
89825
|
+
|
|
89826
|
+
// Custom InputTypes
|
|
89827
|
+
/**
|
|
89828
|
+
* ShopifySale findUnique
|
|
89829
|
+
*/
|
|
89830
|
+
export type ShopifySaleFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89831
|
+
/**
|
|
89832
|
+
* Select specific fields to fetch from the ShopifySale
|
|
89833
|
+
*/
|
|
89834
|
+
select?: ShopifySaleSelect<ExtArgs> | null
|
|
89835
|
+
/**
|
|
89836
|
+
* Choose, which related nodes to fetch as well
|
|
89837
|
+
*/
|
|
89838
|
+
include?: ShopifySaleInclude<ExtArgs> | null
|
|
89839
|
+
/**
|
|
89840
|
+
* Filter, which ShopifySale to fetch.
|
|
89841
|
+
*/
|
|
89842
|
+
where: ShopifySaleWhereUniqueInput
|
|
89843
|
+
}
|
|
89844
|
+
|
|
89845
|
+
/**
|
|
89846
|
+
* ShopifySale findUniqueOrThrow
|
|
89847
|
+
*/
|
|
89848
|
+
export type ShopifySaleFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89849
|
+
/**
|
|
89850
|
+
* Select specific fields to fetch from the ShopifySale
|
|
89851
|
+
*/
|
|
89852
|
+
select?: ShopifySaleSelect<ExtArgs> | null
|
|
89853
|
+
/**
|
|
89854
|
+
* Choose, which related nodes to fetch as well
|
|
89855
|
+
*/
|
|
89856
|
+
include?: ShopifySaleInclude<ExtArgs> | null
|
|
89857
|
+
/**
|
|
89858
|
+
* Filter, which ShopifySale to fetch.
|
|
89859
|
+
*/
|
|
89860
|
+
where: ShopifySaleWhereUniqueInput
|
|
89861
|
+
}
|
|
89862
|
+
|
|
89863
|
+
/**
|
|
89864
|
+
* ShopifySale findFirst
|
|
89865
|
+
*/
|
|
89866
|
+
export type ShopifySaleFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89867
|
+
/**
|
|
89868
|
+
* Select specific fields to fetch from the ShopifySale
|
|
89869
|
+
*/
|
|
89870
|
+
select?: ShopifySaleSelect<ExtArgs> | null
|
|
89871
|
+
/**
|
|
89872
|
+
* Choose, which related nodes to fetch as well
|
|
89873
|
+
*/
|
|
89874
|
+
include?: ShopifySaleInclude<ExtArgs> | null
|
|
89875
|
+
/**
|
|
89876
|
+
* Filter, which ShopifySale to fetch.
|
|
89877
|
+
*/
|
|
89878
|
+
where?: ShopifySaleWhereInput
|
|
89879
|
+
/**
|
|
89880
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
89881
|
+
*
|
|
89882
|
+
* Determine the order of ShopifySales to fetch.
|
|
89883
|
+
*/
|
|
89884
|
+
orderBy?: ShopifySaleOrderByWithRelationAndSearchRelevanceInput | ShopifySaleOrderByWithRelationAndSearchRelevanceInput[]
|
|
89885
|
+
/**
|
|
89886
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
89887
|
+
*
|
|
89888
|
+
* Sets the position for searching for ShopifySales.
|
|
89889
|
+
*/
|
|
89890
|
+
cursor?: ShopifySaleWhereUniqueInput
|
|
89891
|
+
/**
|
|
89892
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
89893
|
+
*
|
|
89894
|
+
* Take `±n` ShopifySales from the position of the cursor.
|
|
89895
|
+
*/
|
|
89896
|
+
take?: number
|
|
89897
|
+
/**
|
|
89898
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
89899
|
+
*
|
|
89900
|
+
* Skip the first `n` ShopifySales.
|
|
89901
|
+
*/
|
|
89902
|
+
skip?: number
|
|
89903
|
+
/**
|
|
89904
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
89905
|
+
*
|
|
89906
|
+
* Filter by unique combinations of ShopifySales.
|
|
89907
|
+
*/
|
|
89908
|
+
distinct?: ShopifySaleScalarFieldEnum | ShopifySaleScalarFieldEnum[]
|
|
89909
|
+
}
|
|
89910
|
+
|
|
89911
|
+
/**
|
|
89912
|
+
* ShopifySale findFirstOrThrow
|
|
89913
|
+
*/
|
|
89914
|
+
export type ShopifySaleFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89915
|
+
/**
|
|
89916
|
+
* Select specific fields to fetch from the ShopifySale
|
|
89917
|
+
*/
|
|
89918
|
+
select?: ShopifySaleSelect<ExtArgs> | null
|
|
89919
|
+
/**
|
|
89920
|
+
* Choose, which related nodes to fetch as well
|
|
89921
|
+
*/
|
|
89922
|
+
include?: ShopifySaleInclude<ExtArgs> | null
|
|
89923
|
+
/**
|
|
89924
|
+
* Filter, which ShopifySale to fetch.
|
|
89925
|
+
*/
|
|
89926
|
+
where?: ShopifySaleWhereInput
|
|
89927
|
+
/**
|
|
89928
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
89929
|
+
*
|
|
89930
|
+
* Determine the order of ShopifySales to fetch.
|
|
89931
|
+
*/
|
|
89932
|
+
orderBy?: ShopifySaleOrderByWithRelationAndSearchRelevanceInput | ShopifySaleOrderByWithRelationAndSearchRelevanceInput[]
|
|
89933
|
+
/**
|
|
89934
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
89935
|
+
*
|
|
89936
|
+
* Sets the position for searching for ShopifySales.
|
|
89937
|
+
*/
|
|
89938
|
+
cursor?: ShopifySaleWhereUniqueInput
|
|
89939
|
+
/**
|
|
89940
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
89941
|
+
*
|
|
89942
|
+
* Take `±n` ShopifySales from the position of the cursor.
|
|
89943
|
+
*/
|
|
89944
|
+
take?: number
|
|
89945
|
+
/**
|
|
89946
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
89947
|
+
*
|
|
89948
|
+
* Skip the first `n` ShopifySales.
|
|
89949
|
+
*/
|
|
89950
|
+
skip?: number
|
|
89951
|
+
/**
|
|
89952
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
89953
|
+
*
|
|
89954
|
+
* Filter by unique combinations of ShopifySales.
|
|
89955
|
+
*/
|
|
89956
|
+
distinct?: ShopifySaleScalarFieldEnum | ShopifySaleScalarFieldEnum[]
|
|
89957
|
+
}
|
|
89958
|
+
|
|
89959
|
+
/**
|
|
89960
|
+
* ShopifySale findMany
|
|
89961
|
+
*/
|
|
89962
|
+
export type ShopifySaleFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89963
|
+
/**
|
|
89964
|
+
* Select specific fields to fetch from the ShopifySale
|
|
89965
|
+
*/
|
|
89966
|
+
select?: ShopifySaleSelect<ExtArgs> | null
|
|
89967
|
+
/**
|
|
89968
|
+
* Choose, which related nodes to fetch as well
|
|
89969
|
+
*/
|
|
89970
|
+
include?: ShopifySaleInclude<ExtArgs> | null
|
|
89971
|
+
/**
|
|
89972
|
+
* Filter, which ShopifySales to fetch.
|
|
89973
|
+
*/
|
|
89974
|
+
where?: ShopifySaleWhereInput
|
|
89975
|
+
/**
|
|
89976
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
89977
|
+
*
|
|
89978
|
+
* Determine the order of ShopifySales to fetch.
|
|
89979
|
+
*/
|
|
89980
|
+
orderBy?: ShopifySaleOrderByWithRelationAndSearchRelevanceInput | ShopifySaleOrderByWithRelationAndSearchRelevanceInput[]
|
|
89981
|
+
/**
|
|
89982
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
89983
|
+
*
|
|
89984
|
+
* Sets the position for listing ShopifySales.
|
|
89985
|
+
*/
|
|
89986
|
+
cursor?: ShopifySaleWhereUniqueInput
|
|
89987
|
+
/**
|
|
89988
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
89989
|
+
*
|
|
89990
|
+
* Take `±n` ShopifySales from the position of the cursor.
|
|
89991
|
+
*/
|
|
89992
|
+
take?: number
|
|
89993
|
+
/**
|
|
89994
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
89995
|
+
*
|
|
89996
|
+
* Skip the first `n` ShopifySales.
|
|
89997
|
+
*/
|
|
89998
|
+
skip?: number
|
|
89999
|
+
distinct?: ShopifySaleScalarFieldEnum | ShopifySaleScalarFieldEnum[]
|
|
90000
|
+
}
|
|
90001
|
+
|
|
90002
|
+
/**
|
|
90003
|
+
* ShopifySale create
|
|
90004
|
+
*/
|
|
90005
|
+
export type ShopifySaleCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
90006
|
+
/**
|
|
90007
|
+
* Select specific fields to fetch from the ShopifySale
|
|
90008
|
+
*/
|
|
90009
|
+
select?: ShopifySaleSelect<ExtArgs> | null
|
|
90010
|
+
/**
|
|
90011
|
+
* Choose, which related nodes to fetch as well
|
|
90012
|
+
*/
|
|
90013
|
+
include?: ShopifySaleInclude<ExtArgs> | null
|
|
90014
|
+
/**
|
|
90015
|
+
* The data needed to create a ShopifySale.
|
|
90016
|
+
*/
|
|
90017
|
+
data: XOR<ShopifySaleCreateInput, ShopifySaleUncheckedCreateInput>
|
|
90018
|
+
}
|
|
90019
|
+
|
|
90020
|
+
/**
|
|
90021
|
+
* ShopifySale createMany
|
|
90022
|
+
*/
|
|
90023
|
+
export type ShopifySaleCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
90024
|
+
/**
|
|
90025
|
+
* The data used to create many ShopifySales.
|
|
90026
|
+
*/
|
|
90027
|
+
data: ShopifySaleCreateManyInput | ShopifySaleCreateManyInput[]
|
|
90028
|
+
skipDuplicates?: boolean
|
|
90029
|
+
}
|
|
90030
|
+
|
|
90031
|
+
/**
|
|
90032
|
+
* ShopifySale createManyAndReturn
|
|
90033
|
+
*/
|
|
90034
|
+
export type ShopifySaleCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
90035
|
+
/**
|
|
90036
|
+
* Select specific fields to fetch from the ShopifySale
|
|
90037
|
+
*/
|
|
90038
|
+
select?: ShopifySaleSelectCreateManyAndReturn<ExtArgs> | null
|
|
90039
|
+
/**
|
|
90040
|
+
* The data used to create many ShopifySales.
|
|
90041
|
+
*/
|
|
90042
|
+
data: ShopifySaleCreateManyInput | ShopifySaleCreateManyInput[]
|
|
90043
|
+
skipDuplicates?: boolean
|
|
90044
|
+
/**
|
|
90045
|
+
* Choose, which related nodes to fetch as well
|
|
90046
|
+
*/
|
|
90047
|
+
include?: ShopifySaleIncludeCreateManyAndReturn<ExtArgs> | null
|
|
90048
|
+
}
|
|
90049
|
+
|
|
90050
|
+
/**
|
|
90051
|
+
* ShopifySale update
|
|
90052
|
+
*/
|
|
90053
|
+
export type ShopifySaleUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
90054
|
+
/**
|
|
90055
|
+
* Select specific fields to fetch from the ShopifySale
|
|
90056
|
+
*/
|
|
90057
|
+
select?: ShopifySaleSelect<ExtArgs> | null
|
|
90058
|
+
/**
|
|
90059
|
+
* Choose, which related nodes to fetch as well
|
|
90060
|
+
*/
|
|
90061
|
+
include?: ShopifySaleInclude<ExtArgs> | null
|
|
90062
|
+
/**
|
|
90063
|
+
* The data needed to update a ShopifySale.
|
|
90064
|
+
*/
|
|
90065
|
+
data: XOR<ShopifySaleUpdateInput, ShopifySaleUncheckedUpdateInput>
|
|
90066
|
+
/**
|
|
90067
|
+
* Choose, which ShopifySale to update.
|
|
90068
|
+
*/
|
|
90069
|
+
where: ShopifySaleWhereUniqueInput
|
|
90070
|
+
}
|
|
90071
|
+
|
|
90072
|
+
/**
|
|
90073
|
+
* ShopifySale updateMany
|
|
90074
|
+
*/
|
|
90075
|
+
export type ShopifySaleUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
90076
|
+
/**
|
|
90077
|
+
* The data used to update ShopifySales.
|
|
90078
|
+
*/
|
|
90079
|
+
data: XOR<ShopifySaleUpdateManyMutationInput, ShopifySaleUncheckedUpdateManyInput>
|
|
90080
|
+
/**
|
|
90081
|
+
* Filter which ShopifySales to update
|
|
90082
|
+
*/
|
|
90083
|
+
where?: ShopifySaleWhereInput
|
|
90084
|
+
}
|
|
90085
|
+
|
|
90086
|
+
/**
|
|
90087
|
+
* ShopifySale upsert
|
|
90088
|
+
*/
|
|
90089
|
+
export type ShopifySaleUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
90090
|
+
/**
|
|
90091
|
+
* Select specific fields to fetch from the ShopifySale
|
|
90092
|
+
*/
|
|
90093
|
+
select?: ShopifySaleSelect<ExtArgs> | null
|
|
90094
|
+
/**
|
|
90095
|
+
* Choose, which related nodes to fetch as well
|
|
90096
|
+
*/
|
|
90097
|
+
include?: ShopifySaleInclude<ExtArgs> | null
|
|
90098
|
+
/**
|
|
90099
|
+
* The filter to search for the ShopifySale to update in case it exists.
|
|
90100
|
+
*/
|
|
90101
|
+
where: ShopifySaleWhereUniqueInput
|
|
90102
|
+
/**
|
|
90103
|
+
* In case the ShopifySale found by the `where` argument doesn't exist, create a new ShopifySale with this data.
|
|
90104
|
+
*/
|
|
90105
|
+
create: XOR<ShopifySaleCreateInput, ShopifySaleUncheckedCreateInput>
|
|
90106
|
+
/**
|
|
90107
|
+
* In case the ShopifySale was found with the provided `where` argument, update it with this data.
|
|
90108
|
+
*/
|
|
90109
|
+
update: XOR<ShopifySaleUpdateInput, ShopifySaleUncheckedUpdateInput>
|
|
90110
|
+
}
|
|
90111
|
+
|
|
90112
|
+
/**
|
|
90113
|
+
* ShopifySale delete
|
|
90114
|
+
*/
|
|
90115
|
+
export type ShopifySaleDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
90116
|
+
/**
|
|
90117
|
+
* Select specific fields to fetch from the ShopifySale
|
|
90118
|
+
*/
|
|
90119
|
+
select?: ShopifySaleSelect<ExtArgs> | null
|
|
90120
|
+
/**
|
|
90121
|
+
* Choose, which related nodes to fetch as well
|
|
90122
|
+
*/
|
|
90123
|
+
include?: ShopifySaleInclude<ExtArgs> | null
|
|
90124
|
+
/**
|
|
90125
|
+
* Filter which ShopifySale to delete.
|
|
90126
|
+
*/
|
|
90127
|
+
where: ShopifySaleWhereUniqueInput
|
|
90128
|
+
}
|
|
90129
|
+
|
|
90130
|
+
/**
|
|
90131
|
+
* ShopifySale deleteMany
|
|
90132
|
+
*/
|
|
90133
|
+
export type ShopifySaleDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
90134
|
+
/**
|
|
90135
|
+
* Filter which ShopifySales to delete
|
|
90136
|
+
*/
|
|
90137
|
+
where?: ShopifySaleWhereInput
|
|
90138
|
+
}
|
|
90139
|
+
|
|
90140
|
+
/**
|
|
90141
|
+
* ShopifySale without action
|
|
90142
|
+
*/
|
|
90143
|
+
export type ShopifySaleDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
90144
|
+
/**
|
|
90145
|
+
* Select specific fields to fetch from the ShopifySale
|
|
90146
|
+
*/
|
|
90147
|
+
select?: ShopifySaleSelect<ExtArgs> | null
|
|
90148
|
+
/**
|
|
90149
|
+
* Choose, which related nodes to fetch as well
|
|
90150
|
+
*/
|
|
90151
|
+
include?: ShopifySaleInclude<ExtArgs> | null
|
|
90152
|
+
}
|
|
90153
|
+
|
|
90154
|
+
|
|
90155
|
+
/**
|
|
90156
|
+
* Model CreatorFlag
|
|
90157
|
+
*/
|
|
90158
|
+
|
|
90159
|
+
export type AggregateCreatorFlag = {
|
|
90160
|
+
_count: CreatorFlagCountAggregateOutputType | null
|
|
90161
|
+
_avg: CreatorFlagAvgAggregateOutputType | null
|
|
90162
|
+
_sum: CreatorFlagSumAggregateOutputType | null
|
|
90163
|
+
_min: CreatorFlagMinAggregateOutputType | null
|
|
90164
|
+
_max: CreatorFlagMaxAggregateOutputType | null
|
|
90165
|
+
}
|
|
90166
|
+
|
|
90167
|
+
export type CreatorFlagAvgAggregateOutputType = {
|
|
90168
|
+
id: number | null
|
|
90169
|
+
userId: number | null
|
|
90170
|
+
flaggedByUserId: number | null
|
|
90171
|
+
editedByUserId: number | null
|
|
90172
|
+
}
|
|
90173
|
+
|
|
90174
|
+
export type CreatorFlagSumAggregateOutputType = {
|
|
90175
|
+
id: number | null
|
|
90176
|
+
userId: number | null
|
|
90177
|
+
flaggedByUserId: number | null
|
|
90178
|
+
editedByUserId: number | null
|
|
90179
|
+
}
|
|
90180
|
+
|
|
90181
|
+
export type CreatorFlagMinAggregateOutputType = {
|
|
90182
|
+
id: number | null
|
|
90183
|
+
label: string | null
|
|
90184
|
+
comment: string | null
|
|
90185
|
+
color: string | null
|
|
90186
|
+
createdAt: Date | null
|
|
90187
|
+
updatedAt: Date | null
|
|
90188
|
+
userId: number | null
|
|
90189
|
+
flaggedByUserId: number | null
|
|
90190
|
+
editedByUserId: number | null
|
|
90191
|
+
}
|
|
90192
|
+
|
|
90193
|
+
export type CreatorFlagMaxAggregateOutputType = {
|
|
90194
|
+
id: number | null
|
|
90195
|
+
label: string | null
|
|
90196
|
+
comment: string | null
|
|
90197
|
+
color: string | null
|
|
90198
|
+
createdAt: Date | null
|
|
90199
|
+
updatedAt: Date | null
|
|
90200
|
+
userId: number | null
|
|
90201
|
+
flaggedByUserId: number | null
|
|
90202
|
+
editedByUserId: number | null
|
|
90203
|
+
}
|
|
90204
|
+
|
|
90205
|
+
export type CreatorFlagCountAggregateOutputType = {
|
|
90206
|
+
id: number
|
|
90207
|
+
label: number
|
|
90208
|
+
comment: number
|
|
90209
|
+
color: number
|
|
90210
|
+
createdAt: number
|
|
90211
|
+
updatedAt: number
|
|
90212
|
+
userId: number
|
|
90213
|
+
flaggedByUserId: number
|
|
90214
|
+
editedByUserId: number
|
|
90215
|
+
_all: number
|
|
90216
|
+
}
|
|
90217
|
+
|
|
90218
|
+
|
|
90219
|
+
export type CreatorFlagAvgAggregateInputType = {
|
|
90220
|
+
id?: true
|
|
90221
|
+
userId?: true
|
|
90222
|
+
flaggedByUserId?: true
|
|
90223
|
+
editedByUserId?: true
|
|
90224
|
+
}
|
|
90225
|
+
|
|
90226
|
+
export type CreatorFlagSumAggregateInputType = {
|
|
90227
|
+
id?: true
|
|
90228
|
+
userId?: true
|
|
90229
|
+
flaggedByUserId?: true
|
|
90230
|
+
editedByUserId?: true
|
|
90231
|
+
}
|
|
90232
|
+
|
|
90233
|
+
export type CreatorFlagMinAggregateInputType = {
|
|
90234
|
+
id?: true
|
|
90235
|
+
label?: true
|
|
90236
|
+
comment?: true
|
|
90237
|
+
color?: true
|
|
90238
|
+
createdAt?: true
|
|
90239
|
+
updatedAt?: true
|
|
90240
|
+
userId?: true
|
|
90241
|
+
flaggedByUserId?: true
|
|
90242
|
+
editedByUserId?: true
|
|
90243
|
+
}
|
|
90244
|
+
|
|
90245
|
+
export type CreatorFlagMaxAggregateInputType = {
|
|
90246
|
+
id?: true
|
|
90247
|
+
label?: true
|
|
90248
|
+
comment?: true
|
|
90249
|
+
color?: true
|
|
90250
|
+
createdAt?: true
|
|
90251
|
+
updatedAt?: true
|
|
90252
|
+
userId?: true
|
|
90253
|
+
flaggedByUserId?: true
|
|
90254
|
+
editedByUserId?: true
|
|
90255
|
+
}
|
|
90256
|
+
|
|
90257
|
+
export type CreatorFlagCountAggregateInputType = {
|
|
90258
|
+
id?: true
|
|
90259
|
+
label?: true
|
|
90260
|
+
comment?: true
|
|
90261
|
+
color?: true
|
|
90262
|
+
createdAt?: true
|
|
90263
|
+
updatedAt?: true
|
|
90264
|
+
userId?: true
|
|
90265
|
+
flaggedByUserId?: true
|
|
90266
|
+
editedByUserId?: true
|
|
90267
|
+
_all?: true
|
|
90268
|
+
}
|
|
90269
|
+
|
|
90270
|
+
export type CreatorFlagAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
90271
|
+
/**
|
|
90272
|
+
* Filter which CreatorFlag to aggregate.
|
|
90273
|
+
*/
|
|
90274
|
+
where?: CreatorFlagWhereInput
|
|
90275
|
+
/**
|
|
90276
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
90277
|
+
*
|
|
90278
|
+
* Determine the order of CreatorFlags to fetch.
|
|
90279
|
+
*/
|
|
90280
|
+
orderBy?: CreatorFlagOrderByWithRelationAndSearchRelevanceInput | CreatorFlagOrderByWithRelationAndSearchRelevanceInput[]
|
|
90281
|
+
/**
|
|
90282
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
90283
|
+
*
|
|
90284
|
+
* Sets the start position
|
|
90285
|
+
*/
|
|
90286
|
+
cursor?: CreatorFlagWhereUniqueInput
|
|
90287
|
+
/**
|
|
90288
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
90289
|
+
*
|
|
90290
|
+
* Take `±n` CreatorFlags from the position of the cursor.
|
|
90291
|
+
*/
|
|
90292
|
+
take?: number
|
|
90293
|
+
/**
|
|
90294
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
90295
|
+
*
|
|
90296
|
+
* Skip the first `n` CreatorFlags.
|
|
90297
|
+
*/
|
|
90298
|
+
skip?: number
|
|
90299
|
+
/**
|
|
90300
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
90301
|
+
*
|
|
90302
|
+
* Count returned CreatorFlags
|
|
90303
|
+
**/
|
|
90304
|
+
_count?: true | CreatorFlagCountAggregateInputType
|
|
90305
|
+
/**
|
|
90306
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
90307
|
+
*
|
|
90308
|
+
* Select which fields to average
|
|
90309
|
+
**/
|
|
90310
|
+
_avg?: CreatorFlagAvgAggregateInputType
|
|
90311
|
+
/**
|
|
90312
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
90313
|
+
*
|
|
90314
|
+
* Select which fields to sum
|
|
90315
|
+
**/
|
|
90316
|
+
_sum?: CreatorFlagSumAggregateInputType
|
|
90317
|
+
/**
|
|
90318
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
90319
|
+
*
|
|
90320
|
+
* Select which fields to find the minimum value
|
|
90321
|
+
**/
|
|
90322
|
+
_min?: CreatorFlagMinAggregateInputType
|
|
90323
|
+
/**
|
|
90324
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
90325
|
+
*
|
|
90326
|
+
* Select which fields to find the maximum value
|
|
90327
|
+
**/
|
|
90328
|
+
_max?: CreatorFlagMaxAggregateInputType
|
|
90329
|
+
}
|
|
90330
|
+
|
|
90331
|
+
export type GetCreatorFlagAggregateType<T extends CreatorFlagAggregateArgs> = {
|
|
90332
|
+
[P in keyof T & keyof AggregateCreatorFlag]: P extends '_count' | 'count'
|
|
90333
|
+
? T[P] extends true
|
|
90334
|
+
? number
|
|
90335
|
+
: GetScalarType<T[P], AggregateCreatorFlag[P]>
|
|
90336
|
+
: GetScalarType<T[P], AggregateCreatorFlag[P]>
|
|
90337
|
+
}
|
|
90338
|
+
|
|
90339
|
+
|
|
90340
|
+
|
|
90341
|
+
|
|
90342
|
+
export type CreatorFlagGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
90343
|
+
where?: CreatorFlagWhereInput
|
|
90344
|
+
orderBy?: CreatorFlagOrderByWithAggregationInput | CreatorFlagOrderByWithAggregationInput[]
|
|
90345
|
+
by: CreatorFlagScalarFieldEnum[] | CreatorFlagScalarFieldEnum
|
|
90346
|
+
having?: CreatorFlagScalarWhereWithAggregatesInput
|
|
90347
|
+
take?: number
|
|
90348
|
+
skip?: number
|
|
90349
|
+
_count?: CreatorFlagCountAggregateInputType | true
|
|
90350
|
+
_avg?: CreatorFlagAvgAggregateInputType
|
|
90351
|
+
_sum?: CreatorFlagSumAggregateInputType
|
|
90352
|
+
_min?: CreatorFlagMinAggregateInputType
|
|
90353
|
+
_max?: CreatorFlagMaxAggregateInputType
|
|
90354
|
+
}
|
|
90355
|
+
|
|
90356
|
+
export type CreatorFlagGroupByOutputType = {
|
|
90357
|
+
id: number
|
|
90358
|
+
label: string
|
|
90359
|
+
comment: string | null
|
|
90360
|
+
color: string
|
|
90361
|
+
createdAt: Date
|
|
90362
|
+
updatedAt: Date
|
|
90363
|
+
userId: number
|
|
90364
|
+
flaggedByUserId: number
|
|
90365
|
+
editedByUserId: number | null
|
|
90366
|
+
_count: CreatorFlagCountAggregateOutputType | null
|
|
90367
|
+
_avg: CreatorFlagAvgAggregateOutputType | null
|
|
90368
|
+
_sum: CreatorFlagSumAggregateOutputType | null
|
|
90369
|
+
_min: CreatorFlagMinAggregateOutputType | null
|
|
90370
|
+
_max: CreatorFlagMaxAggregateOutputType | null
|
|
90371
|
+
}
|
|
90372
|
+
|
|
90373
|
+
type GetCreatorFlagGroupByPayload<T extends CreatorFlagGroupByArgs> = Prisma.PrismaPromise<
|
|
90374
|
+
Array<
|
|
90375
|
+
PickEnumerable<CreatorFlagGroupByOutputType, T['by']> &
|
|
90376
|
+
{
|
|
90377
|
+
[P in ((keyof T) & (keyof CreatorFlagGroupByOutputType))]: P extends '_count'
|
|
90378
|
+
? T[P] extends boolean
|
|
90379
|
+
? number
|
|
90380
|
+
: GetScalarType<T[P], CreatorFlagGroupByOutputType[P]>
|
|
90381
|
+
: GetScalarType<T[P], CreatorFlagGroupByOutputType[P]>
|
|
90382
|
+
}
|
|
90383
|
+
>
|
|
90384
|
+
>
|
|
90385
|
+
|
|
90386
|
+
|
|
90387
|
+
export type CreatorFlagSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
90388
|
+
id?: boolean
|
|
90389
|
+
label?: boolean
|
|
90390
|
+
comment?: boolean
|
|
90391
|
+
color?: boolean
|
|
90392
|
+
createdAt?: boolean
|
|
90393
|
+
updatedAt?: boolean
|
|
90394
|
+
userId?: boolean
|
|
90395
|
+
flaggedByUserId?: boolean
|
|
90396
|
+
editedByUserId?: boolean
|
|
90397
|
+
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
90398
|
+
flaggedByUser?: boolean | UserDefaultArgs<ExtArgs>
|
|
90399
|
+
editedByUser?: boolean | CreatorFlag$editedByUserArgs<ExtArgs>
|
|
90400
|
+
}, ExtArgs["result"]["creatorFlag"]>
|
|
90401
|
+
|
|
90402
|
+
export type CreatorFlagSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
90403
|
+
id?: boolean
|
|
90404
|
+
label?: boolean
|
|
90405
|
+
comment?: boolean
|
|
90406
|
+
color?: boolean
|
|
90407
|
+
createdAt?: boolean
|
|
90408
|
+
updatedAt?: boolean
|
|
90409
|
+
userId?: boolean
|
|
90410
|
+
flaggedByUserId?: boolean
|
|
90411
|
+
editedByUserId?: boolean
|
|
90412
|
+
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
90413
|
+
flaggedByUser?: boolean | UserDefaultArgs<ExtArgs>
|
|
90414
|
+
editedByUser?: boolean | CreatorFlag$editedByUserArgs<ExtArgs>
|
|
90415
|
+
}, ExtArgs["result"]["creatorFlag"]>
|
|
90416
|
+
|
|
90417
|
+
export type CreatorFlagSelectScalar = {
|
|
90418
|
+
id?: boolean
|
|
90419
|
+
label?: boolean
|
|
90420
|
+
comment?: boolean
|
|
90421
|
+
color?: boolean
|
|
90422
|
+
createdAt?: boolean
|
|
90423
|
+
updatedAt?: boolean
|
|
90424
|
+
userId?: boolean
|
|
90425
|
+
flaggedByUserId?: boolean
|
|
90426
|
+
editedByUserId?: boolean
|
|
90427
|
+
}
|
|
90428
|
+
|
|
90429
|
+
export type CreatorFlagInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
90430
|
+
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
90431
|
+
flaggedByUser?: boolean | UserDefaultArgs<ExtArgs>
|
|
90432
|
+
editedByUser?: boolean | CreatorFlag$editedByUserArgs<ExtArgs>
|
|
90433
|
+
}
|
|
90434
|
+
export type CreatorFlagIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
90435
|
+
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
90436
|
+
flaggedByUser?: boolean | UserDefaultArgs<ExtArgs>
|
|
90437
|
+
editedByUser?: boolean | CreatorFlag$editedByUserArgs<ExtArgs>
|
|
90438
|
+
}
|
|
90439
|
+
|
|
90440
|
+
export type $CreatorFlagPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
90441
|
+
name: "CreatorFlag"
|
|
90442
|
+
objects: {
|
|
90443
|
+
user: Prisma.$UserPayload<ExtArgs>
|
|
90444
|
+
flaggedByUser: Prisma.$UserPayload<ExtArgs>
|
|
90445
|
+
editedByUser: Prisma.$UserPayload<ExtArgs> | null
|
|
90446
|
+
}
|
|
90447
|
+
scalars: $Extensions.GetPayloadResult<{
|
|
90448
|
+
id: number
|
|
90449
|
+
label: string
|
|
90450
|
+
comment: string | null
|
|
90451
|
+
color: string
|
|
90452
|
+
createdAt: Date
|
|
90453
|
+
updatedAt: Date
|
|
90454
|
+
userId: number
|
|
90455
|
+
flaggedByUserId: number
|
|
90456
|
+
editedByUserId: number | null
|
|
90457
|
+
}, ExtArgs["result"]["creatorFlag"]>
|
|
90458
|
+
composites: {}
|
|
90459
|
+
}
|
|
90460
|
+
|
|
90461
|
+
type CreatorFlagGetPayload<S extends boolean | null | undefined | CreatorFlagDefaultArgs> = $Result.GetResult<Prisma.$CreatorFlagPayload, S>
|
|
90462
|
+
|
|
90463
|
+
type CreatorFlagCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
90464
|
+
Omit<CreatorFlagFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
90465
|
+
select?: CreatorFlagCountAggregateInputType | true
|
|
90466
|
+
}
|
|
90467
|
+
|
|
90468
|
+
export interface CreatorFlagDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
90469
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['CreatorFlag'], meta: { name: 'CreatorFlag' } }
|
|
90470
|
+
/**
|
|
90471
|
+
* Find zero or one CreatorFlag that matches the filter.
|
|
90472
|
+
* @param {CreatorFlagFindUniqueArgs} args - Arguments to find a CreatorFlag
|
|
90473
|
+
* @example
|
|
90474
|
+
* // Get one CreatorFlag
|
|
90475
|
+
* const creatorFlag = await prisma.creatorFlag.findUnique({
|
|
90476
|
+
* where: {
|
|
90477
|
+
* // ... provide filter here
|
|
90478
|
+
* }
|
|
90479
|
+
* })
|
|
90480
|
+
**/
|
|
90481
|
+
findUnique<T extends CreatorFlagFindUniqueArgs<ExtArgs>>(
|
|
90482
|
+
args: SelectSubset<T, CreatorFlagFindUniqueArgs<ExtArgs>>
|
|
90483
|
+
): Prisma__CreatorFlagClient<$Result.GetResult<Prisma.$CreatorFlagPayload<ExtArgs>, T, 'findUnique'> | null, null, ExtArgs>
|
|
90484
|
+
|
|
90485
|
+
/**
|
|
90486
|
+
* Find one CreatorFlag that matches the filter or throw an error with `error.code='P2025'`
|
|
90487
|
+
* if no matches were found.
|
|
90488
|
+
* @param {CreatorFlagFindUniqueOrThrowArgs} args - Arguments to find a CreatorFlag
|
|
90489
|
+
* @example
|
|
90490
|
+
* // Get one CreatorFlag
|
|
90491
|
+
* const creatorFlag = await prisma.creatorFlag.findUniqueOrThrow({
|
|
90492
|
+
* where: {
|
|
90493
|
+
* // ... provide filter here
|
|
90494
|
+
* }
|
|
90495
|
+
* })
|
|
90496
|
+
**/
|
|
90497
|
+
findUniqueOrThrow<T extends CreatorFlagFindUniqueOrThrowArgs<ExtArgs>>(
|
|
90498
|
+
args?: SelectSubset<T, CreatorFlagFindUniqueOrThrowArgs<ExtArgs>>
|
|
90499
|
+
): Prisma__CreatorFlagClient<$Result.GetResult<Prisma.$CreatorFlagPayload<ExtArgs>, T, 'findUniqueOrThrow'>, never, ExtArgs>
|
|
90500
|
+
|
|
90501
|
+
/**
|
|
90502
|
+
* Find the first CreatorFlag that matches the filter.
|
|
90503
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
90504
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
90505
|
+
* @param {CreatorFlagFindFirstArgs} args - Arguments to find a CreatorFlag
|
|
90506
|
+
* @example
|
|
90507
|
+
* // Get one CreatorFlag
|
|
90508
|
+
* const creatorFlag = await prisma.creatorFlag.findFirst({
|
|
90509
|
+
* where: {
|
|
90510
|
+
* // ... provide filter here
|
|
90511
|
+
* }
|
|
90512
|
+
* })
|
|
90513
|
+
**/
|
|
90514
|
+
findFirst<T extends CreatorFlagFindFirstArgs<ExtArgs>>(
|
|
90515
|
+
args?: SelectSubset<T, CreatorFlagFindFirstArgs<ExtArgs>>
|
|
90516
|
+
): Prisma__CreatorFlagClient<$Result.GetResult<Prisma.$CreatorFlagPayload<ExtArgs>, T, 'findFirst'> | null, null, ExtArgs>
|
|
90517
|
+
|
|
90518
|
+
/**
|
|
90519
|
+
* Find the first CreatorFlag that matches the filter or
|
|
90520
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
90521
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
90522
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
90523
|
+
* @param {CreatorFlagFindFirstOrThrowArgs} args - Arguments to find a CreatorFlag
|
|
90524
|
+
* @example
|
|
90525
|
+
* // Get one CreatorFlag
|
|
90526
|
+
* const creatorFlag = await prisma.creatorFlag.findFirstOrThrow({
|
|
90527
|
+
* where: {
|
|
90528
|
+
* // ... provide filter here
|
|
90529
|
+
* }
|
|
90530
|
+
* })
|
|
90531
|
+
**/
|
|
90532
|
+
findFirstOrThrow<T extends CreatorFlagFindFirstOrThrowArgs<ExtArgs>>(
|
|
90533
|
+
args?: SelectSubset<T, CreatorFlagFindFirstOrThrowArgs<ExtArgs>>
|
|
90534
|
+
): Prisma__CreatorFlagClient<$Result.GetResult<Prisma.$CreatorFlagPayload<ExtArgs>, T, 'findFirstOrThrow'>, never, ExtArgs>
|
|
90535
|
+
|
|
90536
|
+
/**
|
|
90537
|
+
* Find zero or more CreatorFlags that matches the filter.
|
|
90538
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
90539
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
90540
|
+
* @param {CreatorFlagFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
90541
|
+
* @example
|
|
90542
|
+
* // Get all CreatorFlags
|
|
90543
|
+
* const creatorFlags = await prisma.creatorFlag.findMany()
|
|
90544
|
+
*
|
|
90545
|
+
* // Get first 10 CreatorFlags
|
|
90546
|
+
* const creatorFlags = await prisma.creatorFlag.findMany({ take: 10 })
|
|
90547
|
+
*
|
|
90548
|
+
* // Only select the `id`
|
|
90549
|
+
* const creatorFlagWithIdOnly = await prisma.creatorFlag.findMany({ select: { id: true } })
|
|
90550
|
+
*
|
|
90551
|
+
**/
|
|
90552
|
+
findMany<T extends CreatorFlagFindManyArgs<ExtArgs>>(
|
|
90553
|
+
args?: SelectSubset<T, CreatorFlagFindManyArgs<ExtArgs>>
|
|
90554
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CreatorFlagPayload<ExtArgs>, T, 'findMany'>>
|
|
90555
|
+
|
|
90556
|
+
/**
|
|
90557
|
+
* Create a CreatorFlag.
|
|
90558
|
+
* @param {CreatorFlagCreateArgs} args - Arguments to create a CreatorFlag.
|
|
90559
|
+
* @example
|
|
90560
|
+
* // Create one CreatorFlag
|
|
90561
|
+
* const CreatorFlag = await prisma.creatorFlag.create({
|
|
90562
|
+
* data: {
|
|
90563
|
+
* // ... data to create a CreatorFlag
|
|
90564
|
+
* }
|
|
90565
|
+
* })
|
|
90566
|
+
*
|
|
90567
|
+
**/
|
|
90568
|
+
create<T extends CreatorFlagCreateArgs<ExtArgs>>(
|
|
90569
|
+
args: SelectSubset<T, CreatorFlagCreateArgs<ExtArgs>>
|
|
90570
|
+
): Prisma__CreatorFlagClient<$Result.GetResult<Prisma.$CreatorFlagPayload<ExtArgs>, T, 'create'>, never, ExtArgs>
|
|
90571
|
+
|
|
90572
|
+
/**
|
|
90573
|
+
* Create many CreatorFlags.
|
|
90574
|
+
* @param {CreatorFlagCreateManyArgs} args - Arguments to create many CreatorFlags.
|
|
90575
|
+
* @example
|
|
90576
|
+
* // Create many CreatorFlags
|
|
90577
|
+
* const creatorFlag = await prisma.creatorFlag.createMany({
|
|
90578
|
+
* data: [
|
|
90579
|
+
* // ... provide data here
|
|
90580
|
+
* ]
|
|
90581
|
+
* })
|
|
90582
|
+
*
|
|
90583
|
+
**/
|
|
90584
|
+
createMany<T extends CreatorFlagCreateManyArgs<ExtArgs>>(
|
|
90585
|
+
args?: SelectSubset<T, CreatorFlagCreateManyArgs<ExtArgs>>
|
|
90586
|
+
): Prisma.PrismaPromise<BatchPayload>
|
|
90587
|
+
|
|
90588
|
+
/**
|
|
90589
|
+
* Create many CreatorFlags and returns the data saved in the database.
|
|
90590
|
+
* @param {CreatorFlagCreateManyAndReturnArgs} args - Arguments to create many CreatorFlags.
|
|
90591
|
+
* @example
|
|
90592
|
+
* // Create many CreatorFlags
|
|
90593
|
+
* const creatorFlag = await prisma.creatorFlag.createManyAndReturn({
|
|
90594
|
+
* data: [
|
|
90595
|
+
* // ... provide data here
|
|
90596
|
+
* ]
|
|
90597
|
+
* })
|
|
90598
|
+
*
|
|
90599
|
+
* // Create many CreatorFlags and only return the `id`
|
|
90600
|
+
* const creatorFlagWithIdOnly = await prisma.creatorFlag.createManyAndReturn({
|
|
90601
|
+
* select: { id: true },
|
|
90602
|
+
* data: [
|
|
90603
|
+
* // ... provide data here
|
|
90604
|
+
* ]
|
|
90605
|
+
* })
|
|
90606
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
90607
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
90608
|
+
*
|
|
90609
|
+
**/
|
|
90610
|
+
createManyAndReturn<T extends CreatorFlagCreateManyAndReturnArgs<ExtArgs>>(
|
|
90611
|
+
args?: SelectSubset<T, CreatorFlagCreateManyAndReturnArgs<ExtArgs>>
|
|
90612
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CreatorFlagPayload<ExtArgs>, T, 'createManyAndReturn'>>
|
|
90613
|
+
|
|
90614
|
+
/**
|
|
90615
|
+
* Delete a CreatorFlag.
|
|
90616
|
+
* @param {CreatorFlagDeleteArgs} args - Arguments to delete one CreatorFlag.
|
|
90617
|
+
* @example
|
|
90618
|
+
* // Delete one CreatorFlag
|
|
90619
|
+
* const CreatorFlag = await prisma.creatorFlag.delete({
|
|
90620
|
+
* where: {
|
|
90621
|
+
* // ... filter to delete one CreatorFlag
|
|
90622
|
+
* }
|
|
90623
|
+
* })
|
|
90624
|
+
*
|
|
90625
|
+
**/
|
|
90626
|
+
delete<T extends CreatorFlagDeleteArgs<ExtArgs>>(
|
|
90627
|
+
args: SelectSubset<T, CreatorFlagDeleteArgs<ExtArgs>>
|
|
90628
|
+
): Prisma__CreatorFlagClient<$Result.GetResult<Prisma.$CreatorFlagPayload<ExtArgs>, T, 'delete'>, never, ExtArgs>
|
|
90629
|
+
|
|
90630
|
+
/**
|
|
90631
|
+
* Update one CreatorFlag.
|
|
90632
|
+
* @param {CreatorFlagUpdateArgs} args - Arguments to update one CreatorFlag.
|
|
90633
|
+
* @example
|
|
90634
|
+
* // Update one CreatorFlag
|
|
90635
|
+
* const creatorFlag = await prisma.creatorFlag.update({
|
|
90636
|
+
* where: {
|
|
90637
|
+
* // ... provide filter here
|
|
90638
|
+
* },
|
|
90639
|
+
* data: {
|
|
90640
|
+
* // ... provide data here
|
|
90641
|
+
* }
|
|
90642
|
+
* })
|
|
90643
|
+
*
|
|
90644
|
+
**/
|
|
90645
|
+
update<T extends CreatorFlagUpdateArgs<ExtArgs>>(
|
|
90646
|
+
args: SelectSubset<T, CreatorFlagUpdateArgs<ExtArgs>>
|
|
90647
|
+
): Prisma__CreatorFlagClient<$Result.GetResult<Prisma.$CreatorFlagPayload<ExtArgs>, T, 'update'>, never, ExtArgs>
|
|
90648
|
+
|
|
90649
|
+
/**
|
|
90650
|
+
* Delete zero or more CreatorFlags.
|
|
90651
|
+
* @param {CreatorFlagDeleteManyArgs} args - Arguments to filter CreatorFlags to delete.
|
|
90652
|
+
* @example
|
|
90653
|
+
* // Delete a few CreatorFlags
|
|
90654
|
+
* const { count } = await prisma.creatorFlag.deleteMany({
|
|
90655
|
+
* where: {
|
|
90656
|
+
* // ... provide filter here
|
|
90657
|
+
* }
|
|
90658
|
+
* })
|
|
90659
|
+
*
|
|
90660
|
+
**/
|
|
90661
|
+
deleteMany<T extends CreatorFlagDeleteManyArgs<ExtArgs>>(
|
|
90662
|
+
args?: SelectSubset<T, CreatorFlagDeleteManyArgs<ExtArgs>>
|
|
90663
|
+
): Prisma.PrismaPromise<BatchPayload>
|
|
90664
|
+
|
|
90665
|
+
/**
|
|
90666
|
+
* Update zero or more CreatorFlags.
|
|
90667
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
90668
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
90669
|
+
* @param {CreatorFlagUpdateManyArgs} args - Arguments to update one or more rows.
|
|
90670
|
+
* @example
|
|
90671
|
+
* // Update many CreatorFlags
|
|
90672
|
+
* const creatorFlag = await prisma.creatorFlag.updateMany({
|
|
90673
|
+
* where: {
|
|
90674
|
+
* // ... provide filter here
|
|
90675
|
+
* },
|
|
90676
|
+
* data: {
|
|
90677
|
+
* // ... provide data here
|
|
90678
|
+
* }
|
|
90679
|
+
* })
|
|
90680
|
+
*
|
|
90681
|
+
**/
|
|
90682
|
+
updateMany<T extends CreatorFlagUpdateManyArgs<ExtArgs>>(
|
|
90683
|
+
args: SelectSubset<T, CreatorFlagUpdateManyArgs<ExtArgs>>
|
|
90684
|
+
): Prisma.PrismaPromise<BatchPayload>
|
|
90685
|
+
|
|
90686
|
+
/**
|
|
90687
|
+
* Create or update one CreatorFlag.
|
|
90688
|
+
* @param {CreatorFlagUpsertArgs} args - Arguments to update or create a CreatorFlag.
|
|
90689
|
+
* @example
|
|
90690
|
+
* // Update or create a CreatorFlag
|
|
90691
|
+
* const creatorFlag = await prisma.creatorFlag.upsert({
|
|
90692
|
+
* create: {
|
|
90693
|
+
* // ... data to create a CreatorFlag
|
|
90694
|
+
* },
|
|
90695
|
+
* update: {
|
|
90696
|
+
* // ... in case it already exists, update
|
|
90697
|
+
* },
|
|
90698
|
+
* where: {
|
|
90699
|
+
* // ... the filter for the CreatorFlag we want to update
|
|
90700
|
+
* }
|
|
90701
|
+
* })
|
|
90702
|
+
**/
|
|
90703
|
+
upsert<T extends CreatorFlagUpsertArgs<ExtArgs>>(
|
|
90704
|
+
args: SelectSubset<T, CreatorFlagUpsertArgs<ExtArgs>>
|
|
90705
|
+
): Prisma__CreatorFlagClient<$Result.GetResult<Prisma.$CreatorFlagPayload<ExtArgs>, T, 'upsert'>, never, ExtArgs>
|
|
90706
|
+
|
|
90707
|
+
/**
|
|
90708
|
+
* Count the number of CreatorFlags.
|
|
90709
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
90710
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
90711
|
+
* @param {CreatorFlagCountArgs} args - Arguments to filter CreatorFlags to count.
|
|
90712
|
+
* @example
|
|
90713
|
+
* // Count the number of CreatorFlags
|
|
90714
|
+
* const count = await prisma.creatorFlag.count({
|
|
90715
|
+
* where: {
|
|
90716
|
+
* // ... the filter for the CreatorFlags we want to count
|
|
90717
|
+
* }
|
|
90718
|
+
* })
|
|
90719
|
+
**/
|
|
90720
|
+
count<T extends CreatorFlagCountArgs>(
|
|
90721
|
+
args?: Subset<T, CreatorFlagCountArgs>,
|
|
90722
|
+
): Prisma.PrismaPromise<
|
|
90723
|
+
T extends $Utils.Record<'select', any>
|
|
90724
|
+
? T['select'] extends true
|
|
90725
|
+
? number
|
|
90726
|
+
: GetScalarType<T['select'], CreatorFlagCountAggregateOutputType>
|
|
90727
|
+
: number
|
|
90728
|
+
>
|
|
90729
|
+
|
|
90730
|
+
/**
|
|
90731
|
+
* Allows you to perform aggregations operations on a CreatorFlag.
|
|
90732
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
90733
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
90734
|
+
* @param {CreatorFlagAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
90735
|
+
* @example
|
|
90736
|
+
* // Ordered by age ascending
|
|
90737
|
+
* // Where email contains prisma.io
|
|
90738
|
+
* // Limited to the 10 users
|
|
90739
|
+
* const aggregations = await prisma.user.aggregate({
|
|
90740
|
+
* _avg: {
|
|
90741
|
+
* age: true,
|
|
90742
|
+
* },
|
|
90743
|
+
* where: {
|
|
90744
|
+
* email: {
|
|
90745
|
+
* contains: "prisma.io",
|
|
90746
|
+
* },
|
|
90747
|
+
* },
|
|
90748
|
+
* orderBy: {
|
|
90749
|
+
* age: "asc",
|
|
90750
|
+
* },
|
|
90751
|
+
* take: 10,
|
|
90752
|
+
* })
|
|
90753
|
+
**/
|
|
90754
|
+
aggregate<T extends CreatorFlagAggregateArgs>(args: Subset<T, CreatorFlagAggregateArgs>): Prisma.PrismaPromise<GetCreatorFlagAggregateType<T>>
|
|
90755
|
+
|
|
90756
|
+
/**
|
|
90757
|
+
* Group by CreatorFlag.
|
|
90758
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
90759
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
90760
|
+
* @param {CreatorFlagGroupByArgs} args - Group by arguments.
|
|
90761
|
+
* @example
|
|
90762
|
+
* // Group by city, order by createdAt, get count
|
|
90763
|
+
* const result = await prisma.user.groupBy({
|
|
90764
|
+
* by: ['city', 'createdAt'],
|
|
90765
|
+
* orderBy: {
|
|
90766
|
+
* createdAt: true
|
|
90767
|
+
* },
|
|
90768
|
+
* _count: {
|
|
90769
|
+
* _all: true
|
|
90770
|
+
* },
|
|
90771
|
+
* })
|
|
90772
|
+
*
|
|
90773
|
+
**/
|
|
90774
|
+
groupBy<
|
|
90775
|
+
T extends CreatorFlagGroupByArgs,
|
|
90776
|
+
HasSelectOrTake extends Or<
|
|
90777
|
+
Extends<'skip', Keys<T>>,
|
|
90778
|
+
Extends<'take', Keys<T>>
|
|
90779
|
+
>,
|
|
90780
|
+
OrderByArg extends True extends HasSelectOrTake
|
|
90781
|
+
? { orderBy: CreatorFlagGroupByArgs['orderBy'] }
|
|
90782
|
+
: { orderBy?: CreatorFlagGroupByArgs['orderBy'] },
|
|
90783
|
+
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
90784
|
+
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
90785
|
+
ByValid extends Has<ByFields, OrderFields>,
|
|
90786
|
+
HavingFields extends GetHavingFields<T['having']>,
|
|
90787
|
+
HavingValid extends Has<ByFields, HavingFields>,
|
|
90788
|
+
ByEmpty extends T['by'] extends never[] ? True : False,
|
|
90789
|
+
InputErrors extends ByEmpty extends True
|
|
90790
|
+
? `Error: "by" must not be empty.`
|
|
90791
|
+
: HavingValid extends False
|
|
90792
|
+
? {
|
|
90793
|
+
[P in HavingFields]: P extends ByFields
|
|
90794
|
+
? never
|
|
90795
|
+
: P extends string
|
|
90796
|
+
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
|
90797
|
+
: [
|
|
90798
|
+
Error,
|
|
90799
|
+
'Field ',
|
|
90800
|
+
P,
|
|
90801
|
+
` in "having" needs to be provided in "by"`,
|
|
90802
|
+
]
|
|
90803
|
+
}[HavingFields]
|
|
90804
|
+
: 'take' extends Keys<T>
|
|
90805
|
+
? 'orderBy' extends Keys<T>
|
|
90806
|
+
? ByValid extends True
|
|
90807
|
+
? {}
|
|
90808
|
+
: {
|
|
90809
|
+
[P in OrderFields]: P extends ByFields
|
|
90810
|
+
? never
|
|
90811
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
90812
|
+
}[OrderFields]
|
|
90813
|
+
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
|
90814
|
+
: 'skip' extends Keys<T>
|
|
90815
|
+
? 'orderBy' extends Keys<T>
|
|
90816
|
+
? ByValid extends True
|
|
90817
|
+
? {}
|
|
90818
|
+
: {
|
|
90819
|
+
[P in OrderFields]: P extends ByFields
|
|
90820
|
+
? never
|
|
90821
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
90822
|
+
}[OrderFields]
|
|
90823
|
+
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
|
90824
|
+
: ByValid extends True
|
|
90825
|
+
? {}
|
|
90826
|
+
: {
|
|
90827
|
+
[P in OrderFields]: P extends ByFields
|
|
90828
|
+
? never
|
|
90829
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
90830
|
+
}[OrderFields]
|
|
90831
|
+
>(args: SubsetIntersection<T, CreatorFlagGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetCreatorFlagGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
90832
|
+
/**
|
|
90833
|
+
* Fields of the CreatorFlag model
|
|
90834
|
+
*/
|
|
90835
|
+
readonly fields: CreatorFlagFieldRefs;
|
|
90836
|
+
}
|
|
90837
|
+
|
|
90838
|
+
/**
|
|
90839
|
+
* The delegate class that acts as a "Promise-like" for CreatorFlag.
|
|
90840
|
+
* Why is this prefixed with `Prisma__`?
|
|
90841
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
90842
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
90843
|
+
*/
|
|
90844
|
+
export interface Prisma__CreatorFlagClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
90845
|
+
readonly [Symbol.toStringTag]: 'PrismaPromise';
|
|
90846
|
+
|
|
90847
|
+
user<T extends UserDefaultArgs<ExtArgs> = {}>(args?: Subset<T, UserDefaultArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, 'findUniqueOrThrow'> | Null, Null, ExtArgs>;
|
|
90848
|
+
|
|
90849
|
+
flaggedByUser<T extends UserDefaultArgs<ExtArgs> = {}>(args?: Subset<T, UserDefaultArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, 'findUniqueOrThrow'> | Null, Null, ExtArgs>;
|
|
90850
|
+
|
|
90851
|
+
editedByUser<T extends CreatorFlag$editedByUserArgs<ExtArgs> = {}>(args?: Subset<T, CreatorFlag$editedByUserArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, 'findUniqueOrThrow'> | null, null, ExtArgs>;
|
|
90852
|
+
|
|
90853
|
+
/**
|
|
90854
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
90855
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
90856
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
90857
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
90858
|
+
*/
|
|
90859
|
+
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>;
|
|
90860
|
+
/**
|
|
90861
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
90862
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
90863
|
+
* @returns A Promise for the completion of the callback.
|
|
90864
|
+
*/
|
|
90865
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>;
|
|
90866
|
+
/**
|
|
90867
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
90868
|
+
* resolved value cannot be modified from the callback.
|
|
90869
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
90870
|
+
* @returns A Promise for the completion of the callback.
|
|
90871
|
+
*/
|
|
90872
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>;
|
|
90873
|
+
}
|
|
90874
|
+
|
|
90875
|
+
|
|
90876
|
+
|
|
90877
|
+
/**
|
|
90878
|
+
* Fields of the CreatorFlag model
|
|
89620
90879
|
*/
|
|
89621
|
-
interface
|
|
89622
|
-
readonly id: FieldRef<"
|
|
89623
|
-
readonly
|
|
89624
|
-
readonly
|
|
89625
|
-
readonly
|
|
89626
|
-
readonly
|
|
90880
|
+
interface CreatorFlagFieldRefs {
|
|
90881
|
+
readonly id: FieldRef<"CreatorFlag", 'Int'>
|
|
90882
|
+
readonly label: FieldRef<"CreatorFlag", 'String'>
|
|
90883
|
+
readonly comment: FieldRef<"CreatorFlag", 'String'>
|
|
90884
|
+
readonly color: FieldRef<"CreatorFlag", 'String'>
|
|
90885
|
+
readonly createdAt: FieldRef<"CreatorFlag", 'DateTime'>
|
|
90886
|
+
readonly updatedAt: FieldRef<"CreatorFlag", 'DateTime'>
|
|
90887
|
+
readonly userId: FieldRef<"CreatorFlag", 'Int'>
|
|
90888
|
+
readonly flaggedByUserId: FieldRef<"CreatorFlag", 'Int'>
|
|
90889
|
+
readonly editedByUserId: FieldRef<"CreatorFlag", 'Int'>
|
|
89627
90890
|
}
|
|
89628
90891
|
|
|
89629
90892
|
|
|
89630
90893
|
// Custom InputTypes
|
|
89631
90894
|
/**
|
|
89632
|
-
*
|
|
90895
|
+
* CreatorFlag findUnique
|
|
89633
90896
|
*/
|
|
89634
|
-
export type
|
|
90897
|
+
export type CreatorFlagFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89635
90898
|
/**
|
|
89636
|
-
* Select specific fields to fetch from the
|
|
90899
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
89637
90900
|
*/
|
|
89638
|
-
select?:
|
|
90901
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
89639
90902
|
/**
|
|
89640
90903
|
* Choose, which related nodes to fetch as well
|
|
89641
90904
|
*/
|
|
89642
|
-
include?:
|
|
90905
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
89643
90906
|
/**
|
|
89644
|
-
* Filter, which
|
|
90907
|
+
* Filter, which CreatorFlag to fetch.
|
|
89645
90908
|
*/
|
|
89646
|
-
where:
|
|
90909
|
+
where: CreatorFlagWhereUniqueInput
|
|
89647
90910
|
}
|
|
89648
90911
|
|
|
89649
90912
|
/**
|
|
89650
|
-
*
|
|
90913
|
+
* CreatorFlag findUniqueOrThrow
|
|
89651
90914
|
*/
|
|
89652
|
-
export type
|
|
90915
|
+
export type CreatorFlagFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89653
90916
|
/**
|
|
89654
|
-
* Select specific fields to fetch from the
|
|
90917
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
89655
90918
|
*/
|
|
89656
|
-
select?:
|
|
90919
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
89657
90920
|
/**
|
|
89658
90921
|
* Choose, which related nodes to fetch as well
|
|
89659
90922
|
*/
|
|
89660
|
-
include?:
|
|
90923
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
89661
90924
|
/**
|
|
89662
|
-
* Filter, which
|
|
90925
|
+
* Filter, which CreatorFlag to fetch.
|
|
89663
90926
|
*/
|
|
89664
|
-
where:
|
|
90927
|
+
where: CreatorFlagWhereUniqueInput
|
|
89665
90928
|
}
|
|
89666
90929
|
|
|
89667
90930
|
/**
|
|
89668
|
-
*
|
|
90931
|
+
* CreatorFlag findFirst
|
|
89669
90932
|
*/
|
|
89670
|
-
export type
|
|
90933
|
+
export type CreatorFlagFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89671
90934
|
/**
|
|
89672
|
-
* Select specific fields to fetch from the
|
|
90935
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
89673
90936
|
*/
|
|
89674
|
-
select?:
|
|
90937
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
89675
90938
|
/**
|
|
89676
90939
|
* Choose, which related nodes to fetch as well
|
|
89677
90940
|
*/
|
|
89678
|
-
include?:
|
|
90941
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
89679
90942
|
/**
|
|
89680
|
-
* Filter, which
|
|
90943
|
+
* Filter, which CreatorFlag to fetch.
|
|
89681
90944
|
*/
|
|
89682
|
-
where?:
|
|
90945
|
+
where?: CreatorFlagWhereInput
|
|
89683
90946
|
/**
|
|
89684
90947
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
89685
90948
|
*
|
|
89686
|
-
* Determine the order of
|
|
90949
|
+
* Determine the order of CreatorFlags to fetch.
|
|
89687
90950
|
*/
|
|
89688
|
-
orderBy?:
|
|
90951
|
+
orderBy?: CreatorFlagOrderByWithRelationAndSearchRelevanceInput | CreatorFlagOrderByWithRelationAndSearchRelevanceInput[]
|
|
89689
90952
|
/**
|
|
89690
90953
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
89691
90954
|
*
|
|
89692
|
-
* Sets the position for searching for
|
|
90955
|
+
* Sets the position for searching for CreatorFlags.
|
|
89693
90956
|
*/
|
|
89694
|
-
cursor?:
|
|
90957
|
+
cursor?: CreatorFlagWhereUniqueInput
|
|
89695
90958
|
/**
|
|
89696
90959
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
89697
90960
|
*
|
|
89698
|
-
* Take `±n`
|
|
90961
|
+
* Take `±n` CreatorFlags from the position of the cursor.
|
|
89699
90962
|
*/
|
|
89700
90963
|
take?: number
|
|
89701
90964
|
/**
|
|
89702
90965
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
89703
90966
|
*
|
|
89704
|
-
* Skip the first `n`
|
|
90967
|
+
* Skip the first `n` CreatorFlags.
|
|
89705
90968
|
*/
|
|
89706
90969
|
skip?: number
|
|
89707
90970
|
/**
|
|
89708
90971
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
89709
90972
|
*
|
|
89710
|
-
* Filter by unique combinations of
|
|
90973
|
+
* Filter by unique combinations of CreatorFlags.
|
|
89711
90974
|
*/
|
|
89712
|
-
distinct?:
|
|
90975
|
+
distinct?: CreatorFlagScalarFieldEnum | CreatorFlagScalarFieldEnum[]
|
|
89713
90976
|
}
|
|
89714
90977
|
|
|
89715
90978
|
/**
|
|
89716
|
-
*
|
|
90979
|
+
* CreatorFlag findFirstOrThrow
|
|
89717
90980
|
*/
|
|
89718
|
-
export type
|
|
90981
|
+
export type CreatorFlagFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89719
90982
|
/**
|
|
89720
|
-
* Select specific fields to fetch from the
|
|
90983
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
89721
90984
|
*/
|
|
89722
|
-
select?:
|
|
90985
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
89723
90986
|
/**
|
|
89724
90987
|
* Choose, which related nodes to fetch as well
|
|
89725
90988
|
*/
|
|
89726
|
-
include?:
|
|
90989
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
89727
90990
|
/**
|
|
89728
|
-
* Filter, which
|
|
90991
|
+
* Filter, which CreatorFlag to fetch.
|
|
89729
90992
|
*/
|
|
89730
|
-
where?:
|
|
90993
|
+
where?: CreatorFlagWhereInput
|
|
89731
90994
|
/**
|
|
89732
90995
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
89733
90996
|
*
|
|
89734
|
-
* Determine the order of
|
|
90997
|
+
* Determine the order of CreatorFlags to fetch.
|
|
89735
90998
|
*/
|
|
89736
|
-
orderBy?:
|
|
90999
|
+
orderBy?: CreatorFlagOrderByWithRelationAndSearchRelevanceInput | CreatorFlagOrderByWithRelationAndSearchRelevanceInput[]
|
|
89737
91000
|
/**
|
|
89738
91001
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
89739
91002
|
*
|
|
89740
|
-
* Sets the position for searching for
|
|
91003
|
+
* Sets the position for searching for CreatorFlags.
|
|
89741
91004
|
*/
|
|
89742
|
-
cursor?:
|
|
91005
|
+
cursor?: CreatorFlagWhereUniqueInput
|
|
89743
91006
|
/**
|
|
89744
91007
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
89745
91008
|
*
|
|
89746
|
-
* Take `±n`
|
|
91009
|
+
* Take `±n` CreatorFlags from the position of the cursor.
|
|
89747
91010
|
*/
|
|
89748
91011
|
take?: number
|
|
89749
91012
|
/**
|
|
89750
91013
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
89751
91014
|
*
|
|
89752
|
-
* Skip the first `n`
|
|
91015
|
+
* Skip the first `n` CreatorFlags.
|
|
89753
91016
|
*/
|
|
89754
91017
|
skip?: number
|
|
89755
91018
|
/**
|
|
89756
91019
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
89757
91020
|
*
|
|
89758
|
-
* Filter by unique combinations of
|
|
91021
|
+
* Filter by unique combinations of CreatorFlags.
|
|
89759
91022
|
*/
|
|
89760
|
-
distinct?:
|
|
91023
|
+
distinct?: CreatorFlagScalarFieldEnum | CreatorFlagScalarFieldEnum[]
|
|
89761
91024
|
}
|
|
89762
91025
|
|
|
89763
91026
|
/**
|
|
89764
|
-
*
|
|
91027
|
+
* CreatorFlag findMany
|
|
89765
91028
|
*/
|
|
89766
|
-
export type
|
|
91029
|
+
export type CreatorFlagFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89767
91030
|
/**
|
|
89768
|
-
* Select specific fields to fetch from the
|
|
91031
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
89769
91032
|
*/
|
|
89770
|
-
select?:
|
|
91033
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
89771
91034
|
/**
|
|
89772
91035
|
* Choose, which related nodes to fetch as well
|
|
89773
91036
|
*/
|
|
89774
|
-
include?:
|
|
91037
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
89775
91038
|
/**
|
|
89776
|
-
* Filter, which
|
|
91039
|
+
* Filter, which CreatorFlags to fetch.
|
|
89777
91040
|
*/
|
|
89778
|
-
where?:
|
|
91041
|
+
where?: CreatorFlagWhereInput
|
|
89779
91042
|
/**
|
|
89780
91043
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
89781
91044
|
*
|
|
89782
|
-
* Determine the order of
|
|
91045
|
+
* Determine the order of CreatorFlags to fetch.
|
|
89783
91046
|
*/
|
|
89784
|
-
orderBy?:
|
|
91047
|
+
orderBy?: CreatorFlagOrderByWithRelationAndSearchRelevanceInput | CreatorFlagOrderByWithRelationAndSearchRelevanceInput[]
|
|
89785
91048
|
/**
|
|
89786
91049
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
89787
91050
|
*
|
|
89788
|
-
* Sets the position for listing
|
|
91051
|
+
* Sets the position for listing CreatorFlags.
|
|
89789
91052
|
*/
|
|
89790
|
-
cursor?:
|
|
91053
|
+
cursor?: CreatorFlagWhereUniqueInput
|
|
89791
91054
|
/**
|
|
89792
91055
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
89793
91056
|
*
|
|
89794
|
-
* Take `±n`
|
|
91057
|
+
* Take `±n` CreatorFlags from the position of the cursor.
|
|
89795
91058
|
*/
|
|
89796
91059
|
take?: number
|
|
89797
91060
|
/**
|
|
89798
91061
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
89799
91062
|
*
|
|
89800
|
-
* Skip the first `n`
|
|
91063
|
+
* Skip the first `n` CreatorFlags.
|
|
89801
91064
|
*/
|
|
89802
91065
|
skip?: number
|
|
89803
|
-
distinct?:
|
|
91066
|
+
distinct?: CreatorFlagScalarFieldEnum | CreatorFlagScalarFieldEnum[]
|
|
89804
91067
|
}
|
|
89805
91068
|
|
|
89806
91069
|
/**
|
|
89807
|
-
*
|
|
91070
|
+
* CreatorFlag create
|
|
89808
91071
|
*/
|
|
89809
|
-
export type
|
|
91072
|
+
export type CreatorFlagCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89810
91073
|
/**
|
|
89811
|
-
* Select specific fields to fetch from the
|
|
91074
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
89812
91075
|
*/
|
|
89813
|
-
select?:
|
|
91076
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
89814
91077
|
/**
|
|
89815
91078
|
* Choose, which related nodes to fetch as well
|
|
89816
91079
|
*/
|
|
89817
|
-
include?:
|
|
91080
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
89818
91081
|
/**
|
|
89819
|
-
* The data needed to create a
|
|
91082
|
+
* The data needed to create a CreatorFlag.
|
|
89820
91083
|
*/
|
|
89821
|
-
data: XOR<
|
|
91084
|
+
data: XOR<CreatorFlagCreateInput, CreatorFlagUncheckedCreateInput>
|
|
89822
91085
|
}
|
|
89823
91086
|
|
|
89824
91087
|
/**
|
|
89825
|
-
*
|
|
91088
|
+
* CreatorFlag createMany
|
|
89826
91089
|
*/
|
|
89827
|
-
export type
|
|
91090
|
+
export type CreatorFlagCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89828
91091
|
/**
|
|
89829
|
-
* The data used to create many
|
|
91092
|
+
* The data used to create many CreatorFlags.
|
|
89830
91093
|
*/
|
|
89831
|
-
data:
|
|
91094
|
+
data: CreatorFlagCreateManyInput | CreatorFlagCreateManyInput[]
|
|
89832
91095
|
skipDuplicates?: boolean
|
|
89833
91096
|
}
|
|
89834
91097
|
|
|
89835
91098
|
/**
|
|
89836
|
-
*
|
|
91099
|
+
* CreatorFlag createManyAndReturn
|
|
89837
91100
|
*/
|
|
89838
|
-
export type
|
|
91101
|
+
export type CreatorFlagCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89839
91102
|
/**
|
|
89840
|
-
* Select specific fields to fetch from the
|
|
91103
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
89841
91104
|
*/
|
|
89842
|
-
select?:
|
|
91105
|
+
select?: CreatorFlagSelectCreateManyAndReturn<ExtArgs> | null
|
|
89843
91106
|
/**
|
|
89844
|
-
* The data used to create many
|
|
91107
|
+
* The data used to create many CreatorFlags.
|
|
89845
91108
|
*/
|
|
89846
|
-
data:
|
|
91109
|
+
data: CreatorFlagCreateManyInput | CreatorFlagCreateManyInput[]
|
|
89847
91110
|
skipDuplicates?: boolean
|
|
89848
91111
|
/**
|
|
89849
91112
|
* Choose, which related nodes to fetch as well
|
|
89850
91113
|
*/
|
|
89851
|
-
include?:
|
|
91114
|
+
include?: CreatorFlagIncludeCreateManyAndReturn<ExtArgs> | null
|
|
89852
91115
|
}
|
|
89853
91116
|
|
|
89854
91117
|
/**
|
|
89855
|
-
*
|
|
91118
|
+
* CreatorFlag update
|
|
89856
91119
|
*/
|
|
89857
|
-
export type
|
|
91120
|
+
export type CreatorFlagUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89858
91121
|
/**
|
|
89859
|
-
* Select specific fields to fetch from the
|
|
91122
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
89860
91123
|
*/
|
|
89861
|
-
select?:
|
|
91124
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
89862
91125
|
/**
|
|
89863
91126
|
* Choose, which related nodes to fetch as well
|
|
89864
91127
|
*/
|
|
89865
|
-
include?:
|
|
91128
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
89866
91129
|
/**
|
|
89867
|
-
* The data needed to update a
|
|
91130
|
+
* The data needed to update a CreatorFlag.
|
|
89868
91131
|
*/
|
|
89869
|
-
data: XOR<
|
|
91132
|
+
data: XOR<CreatorFlagUpdateInput, CreatorFlagUncheckedUpdateInput>
|
|
89870
91133
|
/**
|
|
89871
|
-
* Choose, which
|
|
91134
|
+
* Choose, which CreatorFlag to update.
|
|
89872
91135
|
*/
|
|
89873
|
-
where:
|
|
91136
|
+
where: CreatorFlagWhereUniqueInput
|
|
89874
91137
|
}
|
|
89875
91138
|
|
|
89876
91139
|
/**
|
|
89877
|
-
*
|
|
91140
|
+
* CreatorFlag updateMany
|
|
89878
91141
|
*/
|
|
89879
|
-
export type
|
|
91142
|
+
export type CreatorFlagUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89880
91143
|
/**
|
|
89881
|
-
* The data used to update
|
|
91144
|
+
* The data used to update CreatorFlags.
|
|
89882
91145
|
*/
|
|
89883
|
-
data: XOR<
|
|
91146
|
+
data: XOR<CreatorFlagUpdateManyMutationInput, CreatorFlagUncheckedUpdateManyInput>
|
|
89884
91147
|
/**
|
|
89885
|
-
* Filter which
|
|
91148
|
+
* Filter which CreatorFlags to update
|
|
89886
91149
|
*/
|
|
89887
|
-
where?:
|
|
91150
|
+
where?: CreatorFlagWhereInput
|
|
89888
91151
|
}
|
|
89889
91152
|
|
|
89890
91153
|
/**
|
|
89891
|
-
*
|
|
91154
|
+
* CreatorFlag upsert
|
|
89892
91155
|
*/
|
|
89893
|
-
export type
|
|
91156
|
+
export type CreatorFlagUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89894
91157
|
/**
|
|
89895
|
-
* Select specific fields to fetch from the
|
|
91158
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
89896
91159
|
*/
|
|
89897
|
-
select?:
|
|
91160
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
89898
91161
|
/**
|
|
89899
91162
|
* Choose, which related nodes to fetch as well
|
|
89900
91163
|
*/
|
|
89901
|
-
include?:
|
|
91164
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
89902
91165
|
/**
|
|
89903
|
-
* The filter to search for the
|
|
91166
|
+
* The filter to search for the CreatorFlag to update in case it exists.
|
|
89904
91167
|
*/
|
|
89905
|
-
where:
|
|
91168
|
+
where: CreatorFlagWhereUniqueInput
|
|
89906
91169
|
/**
|
|
89907
|
-
* In case the
|
|
91170
|
+
* In case the CreatorFlag found by the `where` argument doesn't exist, create a new CreatorFlag with this data.
|
|
89908
91171
|
*/
|
|
89909
|
-
create: XOR<
|
|
91172
|
+
create: XOR<CreatorFlagCreateInput, CreatorFlagUncheckedCreateInput>
|
|
89910
91173
|
/**
|
|
89911
|
-
* In case the
|
|
91174
|
+
* In case the CreatorFlag was found with the provided `where` argument, update it with this data.
|
|
89912
91175
|
*/
|
|
89913
|
-
update: XOR<
|
|
91176
|
+
update: XOR<CreatorFlagUpdateInput, CreatorFlagUncheckedUpdateInput>
|
|
89914
91177
|
}
|
|
89915
91178
|
|
|
89916
91179
|
/**
|
|
89917
|
-
*
|
|
91180
|
+
* CreatorFlag delete
|
|
89918
91181
|
*/
|
|
89919
|
-
export type
|
|
91182
|
+
export type CreatorFlagDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89920
91183
|
/**
|
|
89921
|
-
* Select specific fields to fetch from the
|
|
91184
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
89922
91185
|
*/
|
|
89923
|
-
select?:
|
|
91186
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
89924
91187
|
/**
|
|
89925
91188
|
* Choose, which related nodes to fetch as well
|
|
89926
91189
|
*/
|
|
89927
|
-
include?:
|
|
91190
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
89928
91191
|
/**
|
|
89929
|
-
* Filter which
|
|
91192
|
+
* Filter which CreatorFlag to delete.
|
|
89930
91193
|
*/
|
|
89931
|
-
where:
|
|
91194
|
+
where: CreatorFlagWhereUniqueInput
|
|
89932
91195
|
}
|
|
89933
91196
|
|
|
89934
91197
|
/**
|
|
89935
|
-
*
|
|
91198
|
+
* CreatorFlag deleteMany
|
|
89936
91199
|
*/
|
|
89937
|
-
export type
|
|
91200
|
+
export type CreatorFlagDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89938
91201
|
/**
|
|
89939
|
-
* Filter which
|
|
91202
|
+
* Filter which CreatorFlags to delete
|
|
89940
91203
|
*/
|
|
89941
|
-
where?:
|
|
91204
|
+
where?: CreatorFlagWhereInput
|
|
89942
91205
|
}
|
|
89943
91206
|
|
|
89944
91207
|
/**
|
|
89945
|
-
*
|
|
91208
|
+
* CreatorFlag.editedByUser
|
|
89946
91209
|
*/
|
|
89947
|
-
export type
|
|
91210
|
+
export type CreatorFlag$editedByUserArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89948
91211
|
/**
|
|
89949
|
-
* Select specific fields to fetch from the
|
|
91212
|
+
* Select specific fields to fetch from the User
|
|
89950
91213
|
*/
|
|
89951
|
-
select?:
|
|
91214
|
+
select?: UserSelect<ExtArgs> | null
|
|
89952
91215
|
/**
|
|
89953
91216
|
* Choose, which related nodes to fetch as well
|
|
89954
91217
|
*/
|
|
89955
|
-
include?:
|
|
91218
|
+
include?: UserInclude<ExtArgs> | null
|
|
91219
|
+
where?: UserWhereInput
|
|
91220
|
+
}
|
|
91221
|
+
|
|
91222
|
+
/**
|
|
91223
|
+
* CreatorFlag without action
|
|
91224
|
+
*/
|
|
91225
|
+
export type CreatorFlagDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
91226
|
+
/**
|
|
91227
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
91228
|
+
*/
|
|
91229
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
91230
|
+
/**
|
|
91231
|
+
* Choose, which related nodes to fetch as well
|
|
91232
|
+
*/
|
|
91233
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
89956
91234
|
}
|
|
89957
91235
|
|
|
89958
91236
|
|
|
@@ -90514,6 +91792,7 @@ export namespace Prisma {
|
|
|
90514
91792
|
paymentStatus: 'paymentStatus',
|
|
90515
91793
|
extraData: 'extraData',
|
|
90516
91794
|
favoritedDate: 'favoritedDate',
|
|
91795
|
+
rating: 'rating',
|
|
90517
91796
|
userId: 'userId',
|
|
90518
91797
|
campaignId: 'campaignId',
|
|
90519
91798
|
currentStepId: 'currentStepId'
|
|
@@ -91070,6 +92349,21 @@ export namespace Prisma {
|
|
|
91070
92349
|
export type ShopifySaleScalarFieldEnum = (typeof ShopifySaleScalarFieldEnum)[keyof typeof ShopifySaleScalarFieldEnum]
|
|
91071
92350
|
|
|
91072
92351
|
|
|
92352
|
+
export const CreatorFlagScalarFieldEnum: {
|
|
92353
|
+
id: 'id',
|
|
92354
|
+
label: 'label',
|
|
92355
|
+
comment: 'comment',
|
|
92356
|
+
color: 'color',
|
|
92357
|
+
createdAt: 'createdAt',
|
|
92358
|
+
updatedAt: 'updatedAt',
|
|
92359
|
+
userId: 'userId',
|
|
92360
|
+
flaggedByUserId: 'flaggedByUserId',
|
|
92361
|
+
editedByUserId: 'editedByUserId'
|
|
92362
|
+
};
|
|
92363
|
+
|
|
92364
|
+
export type CreatorFlagScalarFieldEnum = (typeof CreatorFlagScalarFieldEnum)[keyof typeof CreatorFlagScalarFieldEnum]
|
|
92365
|
+
|
|
92366
|
+
|
|
91073
92367
|
export const SortOrder: {
|
|
91074
92368
|
asc: 'asc',
|
|
91075
92369
|
desc: 'desc'
|
|
@@ -91640,6 +92934,15 @@ export namespace Prisma {
|
|
|
91640
92934
|
export type ShopifyDiscountCodeOrderByRelevanceFieldEnum = (typeof ShopifyDiscountCodeOrderByRelevanceFieldEnum)[keyof typeof ShopifyDiscountCodeOrderByRelevanceFieldEnum]
|
|
91641
92935
|
|
|
91642
92936
|
|
|
92937
|
+
export const CreatorFlagOrderByRelevanceFieldEnum: {
|
|
92938
|
+
label: 'label',
|
|
92939
|
+
comment: 'comment',
|
|
92940
|
+
color: 'color'
|
|
92941
|
+
};
|
|
92942
|
+
|
|
92943
|
+
export type CreatorFlagOrderByRelevanceFieldEnum = (typeof CreatorFlagOrderByRelevanceFieldEnum)[keyof typeof CreatorFlagOrderByRelevanceFieldEnum]
|
|
92944
|
+
|
|
92945
|
+
|
|
91643
92946
|
/**
|
|
91644
92947
|
* Field references
|
|
91645
92948
|
*/
|
|
@@ -91834,6 +93137,9 @@ export namespace Prisma {
|
|
|
91834
93137
|
socialProfiles?: SocialProfileListRelationFilter
|
|
91835
93138
|
rakutenActivity?: RakutenActivityListRelationFilter
|
|
91836
93139
|
impactRadiusEvents?: ImpactRadiusEventListRelationFilter
|
|
93140
|
+
flagsAssigned?: CreatorFlagListRelationFilter
|
|
93141
|
+
flagsCreated?: CreatorFlagListRelationFilter
|
|
93142
|
+
flagsEdited?: CreatorFlagListRelationFilter
|
|
91837
93143
|
}
|
|
91838
93144
|
|
|
91839
93145
|
export type UserOrderByWithRelationAndSearchRelevanceInput = {
|
|
@@ -91879,6 +93185,9 @@ export namespace Prisma {
|
|
|
91879
93185
|
socialProfiles?: SocialProfileOrderByRelationAggregateInput
|
|
91880
93186
|
rakutenActivity?: RakutenActivityOrderByRelationAggregateInput
|
|
91881
93187
|
impactRadiusEvents?: ImpactRadiusEventOrderByRelationAggregateInput
|
|
93188
|
+
flagsAssigned?: CreatorFlagOrderByRelationAggregateInput
|
|
93189
|
+
flagsCreated?: CreatorFlagOrderByRelationAggregateInput
|
|
93190
|
+
flagsEdited?: CreatorFlagOrderByRelationAggregateInput
|
|
91882
93191
|
_relevance?: UserOrderByRelevanceInput
|
|
91883
93192
|
}
|
|
91884
93193
|
|
|
@@ -91928,6 +93237,9 @@ export namespace Prisma {
|
|
|
91928
93237
|
socialProfiles?: SocialProfileListRelationFilter
|
|
91929
93238
|
rakutenActivity?: RakutenActivityListRelationFilter
|
|
91930
93239
|
impactRadiusEvents?: ImpactRadiusEventListRelationFilter
|
|
93240
|
+
flagsAssigned?: CreatorFlagListRelationFilter
|
|
93241
|
+
flagsCreated?: CreatorFlagListRelationFilter
|
|
93242
|
+
flagsEdited?: CreatorFlagListRelationFilter
|
|
91931
93243
|
}, "id" | "email" | "forgotPasswordKey" | "affiliateSlug">
|
|
91932
93244
|
|
|
91933
93245
|
export type UserOrderByWithAggregationInput = {
|
|
@@ -94824,6 +96136,7 @@ export namespace Prisma {
|
|
|
94824
96136
|
paymentStatus?: StringFilter<"OptIn"> | string
|
|
94825
96137
|
extraData?: JsonFilter<"OptIn">
|
|
94826
96138
|
favoritedDate?: DateTimeNullableFilter<"OptIn"> | Date | string | null
|
|
96139
|
+
rating?: JsonNullableFilter<"OptIn">
|
|
94827
96140
|
userId?: IntFilter<"OptIn"> | number
|
|
94828
96141
|
campaignId?: IntFilter<"OptIn"> | number
|
|
94829
96142
|
currentStepId?: IntNullableFilter<"OptIn"> | number | null
|
|
@@ -94859,6 +96172,7 @@ export namespace Prisma {
|
|
|
94859
96172
|
paymentStatus?: SortOrder
|
|
94860
96173
|
extraData?: SortOrder
|
|
94861
96174
|
favoritedDate?: SortOrderInput | SortOrder
|
|
96175
|
+
rating?: SortOrderInput | SortOrder
|
|
94862
96176
|
userId?: SortOrder
|
|
94863
96177
|
campaignId?: SortOrder
|
|
94864
96178
|
currentStepId?: SortOrderInput | SortOrder
|
|
@@ -94898,6 +96212,7 @@ export namespace Prisma {
|
|
|
94898
96212
|
paymentStatus?: StringFilter<"OptIn"> | string
|
|
94899
96213
|
extraData?: JsonFilter<"OptIn">
|
|
94900
96214
|
favoritedDate?: DateTimeNullableFilter<"OptIn"> | Date | string | null
|
|
96215
|
+
rating?: JsonNullableFilter<"OptIn">
|
|
94901
96216
|
userId?: IntFilter<"OptIn"> | number
|
|
94902
96217
|
campaignId?: IntFilter<"OptIn"> | number
|
|
94903
96218
|
currentStepId?: IntNullableFilter<"OptIn"> | number | null
|
|
@@ -94933,6 +96248,7 @@ export namespace Prisma {
|
|
|
94933
96248
|
paymentStatus?: SortOrder
|
|
94934
96249
|
extraData?: SortOrder
|
|
94935
96250
|
favoritedDate?: SortOrderInput | SortOrder
|
|
96251
|
+
rating?: SortOrderInput | SortOrder
|
|
94936
96252
|
userId?: SortOrder
|
|
94937
96253
|
campaignId?: SortOrder
|
|
94938
96254
|
currentStepId?: SortOrderInput | SortOrder
|
|
@@ -94962,6 +96278,7 @@ export namespace Prisma {
|
|
|
94962
96278
|
paymentStatus?: StringWithAggregatesFilter<"OptIn"> | string
|
|
94963
96279
|
extraData?: JsonWithAggregatesFilter<"OptIn">
|
|
94964
96280
|
favoritedDate?: DateTimeNullableWithAggregatesFilter<"OptIn"> | Date | string | null
|
|
96281
|
+
rating?: JsonNullableWithAggregatesFilter<"OptIn">
|
|
94965
96282
|
userId?: IntWithAggregatesFilter<"OptIn"> | number
|
|
94966
96283
|
campaignId?: IntWithAggregatesFilter<"OptIn"> | number
|
|
94967
96284
|
currentStepId?: IntNullableWithAggregatesFilter<"OptIn"> | number | null
|
|
@@ -97963,6 +99280,90 @@ export namespace Prisma {
|
|
|
97963
99280
|
created?: DateTimeWithAggregatesFilter<"ShopifySale"> | Date | string
|
|
97964
99281
|
}
|
|
97965
99282
|
|
|
99283
|
+
export type CreatorFlagWhereInput = {
|
|
99284
|
+
AND?: CreatorFlagWhereInput | CreatorFlagWhereInput[]
|
|
99285
|
+
OR?: CreatorFlagWhereInput[]
|
|
99286
|
+
NOT?: CreatorFlagWhereInput | CreatorFlagWhereInput[]
|
|
99287
|
+
id?: IntFilter<"CreatorFlag"> | number
|
|
99288
|
+
label?: StringFilter<"CreatorFlag"> | string
|
|
99289
|
+
comment?: StringNullableFilter<"CreatorFlag"> | string | null
|
|
99290
|
+
color?: StringFilter<"CreatorFlag"> | string
|
|
99291
|
+
createdAt?: DateTimeFilter<"CreatorFlag"> | Date | string
|
|
99292
|
+
updatedAt?: DateTimeFilter<"CreatorFlag"> | Date | string
|
|
99293
|
+
userId?: IntFilter<"CreatorFlag"> | number
|
|
99294
|
+
flaggedByUserId?: IntFilter<"CreatorFlag"> | number
|
|
99295
|
+
editedByUserId?: IntNullableFilter<"CreatorFlag"> | number | null
|
|
99296
|
+
user?: XOR<UserRelationFilter, UserWhereInput>
|
|
99297
|
+
flaggedByUser?: XOR<UserRelationFilter, UserWhereInput>
|
|
99298
|
+
editedByUser?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
99299
|
+
}
|
|
99300
|
+
|
|
99301
|
+
export type CreatorFlagOrderByWithRelationAndSearchRelevanceInput = {
|
|
99302
|
+
id?: SortOrder
|
|
99303
|
+
label?: SortOrder
|
|
99304
|
+
comment?: SortOrderInput | SortOrder
|
|
99305
|
+
color?: SortOrder
|
|
99306
|
+
createdAt?: SortOrder
|
|
99307
|
+
updatedAt?: SortOrder
|
|
99308
|
+
userId?: SortOrder
|
|
99309
|
+
flaggedByUserId?: SortOrder
|
|
99310
|
+
editedByUserId?: SortOrderInput | SortOrder
|
|
99311
|
+
user?: UserOrderByWithRelationAndSearchRelevanceInput
|
|
99312
|
+
flaggedByUser?: UserOrderByWithRelationAndSearchRelevanceInput
|
|
99313
|
+
editedByUser?: UserOrderByWithRelationAndSearchRelevanceInput
|
|
99314
|
+
_relevance?: CreatorFlagOrderByRelevanceInput
|
|
99315
|
+
}
|
|
99316
|
+
|
|
99317
|
+
export type CreatorFlagWhereUniqueInput = Prisma.AtLeast<{
|
|
99318
|
+
id?: number
|
|
99319
|
+
AND?: CreatorFlagWhereInput | CreatorFlagWhereInput[]
|
|
99320
|
+
OR?: CreatorFlagWhereInput[]
|
|
99321
|
+
NOT?: CreatorFlagWhereInput | CreatorFlagWhereInput[]
|
|
99322
|
+
label?: StringFilter<"CreatorFlag"> | string
|
|
99323
|
+
comment?: StringNullableFilter<"CreatorFlag"> | string | null
|
|
99324
|
+
color?: StringFilter<"CreatorFlag"> | string
|
|
99325
|
+
createdAt?: DateTimeFilter<"CreatorFlag"> | Date | string
|
|
99326
|
+
updatedAt?: DateTimeFilter<"CreatorFlag"> | Date | string
|
|
99327
|
+
userId?: IntFilter<"CreatorFlag"> | number
|
|
99328
|
+
flaggedByUserId?: IntFilter<"CreatorFlag"> | number
|
|
99329
|
+
editedByUserId?: IntNullableFilter<"CreatorFlag"> | number | null
|
|
99330
|
+
user?: XOR<UserRelationFilter, UserWhereInput>
|
|
99331
|
+
flaggedByUser?: XOR<UserRelationFilter, UserWhereInput>
|
|
99332
|
+
editedByUser?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
99333
|
+
}, "id">
|
|
99334
|
+
|
|
99335
|
+
export type CreatorFlagOrderByWithAggregationInput = {
|
|
99336
|
+
id?: SortOrder
|
|
99337
|
+
label?: SortOrder
|
|
99338
|
+
comment?: SortOrderInput | SortOrder
|
|
99339
|
+
color?: SortOrder
|
|
99340
|
+
createdAt?: SortOrder
|
|
99341
|
+
updatedAt?: SortOrder
|
|
99342
|
+
userId?: SortOrder
|
|
99343
|
+
flaggedByUserId?: SortOrder
|
|
99344
|
+
editedByUserId?: SortOrderInput | SortOrder
|
|
99345
|
+
_count?: CreatorFlagCountOrderByAggregateInput
|
|
99346
|
+
_avg?: CreatorFlagAvgOrderByAggregateInput
|
|
99347
|
+
_max?: CreatorFlagMaxOrderByAggregateInput
|
|
99348
|
+
_min?: CreatorFlagMinOrderByAggregateInput
|
|
99349
|
+
_sum?: CreatorFlagSumOrderByAggregateInput
|
|
99350
|
+
}
|
|
99351
|
+
|
|
99352
|
+
export type CreatorFlagScalarWhereWithAggregatesInput = {
|
|
99353
|
+
AND?: CreatorFlagScalarWhereWithAggregatesInput | CreatorFlagScalarWhereWithAggregatesInput[]
|
|
99354
|
+
OR?: CreatorFlagScalarWhereWithAggregatesInput[]
|
|
99355
|
+
NOT?: CreatorFlagScalarWhereWithAggregatesInput | CreatorFlagScalarWhereWithAggregatesInput[]
|
|
99356
|
+
id?: IntWithAggregatesFilter<"CreatorFlag"> | number
|
|
99357
|
+
label?: StringWithAggregatesFilter<"CreatorFlag"> | string
|
|
99358
|
+
comment?: StringNullableWithAggregatesFilter<"CreatorFlag"> | string | null
|
|
99359
|
+
color?: StringWithAggregatesFilter<"CreatorFlag"> | string
|
|
99360
|
+
createdAt?: DateTimeWithAggregatesFilter<"CreatorFlag"> | Date | string
|
|
99361
|
+
updatedAt?: DateTimeWithAggregatesFilter<"CreatorFlag"> | Date | string
|
|
99362
|
+
userId?: IntWithAggregatesFilter<"CreatorFlag"> | number
|
|
99363
|
+
flaggedByUserId?: IntWithAggregatesFilter<"CreatorFlag"> | number
|
|
99364
|
+
editedByUserId?: IntNullableWithAggregatesFilter<"CreatorFlag"> | number | null
|
|
99365
|
+
}
|
|
99366
|
+
|
|
97966
99367
|
export type UserCreateInput = {
|
|
97967
99368
|
role: string
|
|
97968
99369
|
email?: string | null
|
|
@@ -98004,6 +99405,9 @@ export namespace Prisma {
|
|
|
98004
99405
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
98005
99406
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
98006
99407
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
99408
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
99409
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
99410
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
98007
99411
|
}
|
|
98008
99412
|
|
|
98009
99413
|
export type UserUncheckedCreateInput = {
|
|
@@ -98048,6 +99452,9 @@ export namespace Prisma {
|
|
|
98048
99452
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
98049
99453
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
98050
99454
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
99455
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
99456
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
99457
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
98051
99458
|
}
|
|
98052
99459
|
|
|
98053
99460
|
export type UserUpdateInput = {
|
|
@@ -98091,6 +99498,9 @@ export namespace Prisma {
|
|
|
98091
99498
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
98092
99499
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
98093
99500
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
99501
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
99502
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
99503
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
98094
99504
|
}
|
|
98095
99505
|
|
|
98096
99506
|
export type UserUncheckedUpdateInput = {
|
|
@@ -98135,6 +99545,9 @@ export namespace Prisma {
|
|
|
98135
99545
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
98136
99546
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
98137
99547
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
99548
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
99549
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
99550
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
98138
99551
|
}
|
|
98139
99552
|
|
|
98140
99553
|
export type UserCreateManyInput = {
|
|
@@ -101144,6 +102557,7 @@ export namespace Prisma {
|
|
|
101144
102557
|
paymentStatus?: string
|
|
101145
102558
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
101146
102559
|
favoritedDate?: Date | string | null
|
|
102560
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
101147
102561
|
user: UserCreateNestedOneWithoutOptInsInput
|
|
101148
102562
|
campaign: CampaignCreateNestedOneWithoutOptInsInput
|
|
101149
102563
|
currentStep?: CampaignStepCreateNestedOneWithoutCurrentOptInsInput
|
|
@@ -101176,6 +102590,7 @@ export namespace Prisma {
|
|
|
101176
102590
|
paymentStatus?: string
|
|
101177
102591
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
101178
102592
|
favoritedDate?: Date | string | null
|
|
102593
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
101179
102594
|
userId: number
|
|
101180
102595
|
campaignId: number
|
|
101181
102596
|
currentStepId?: number | null
|
|
@@ -101207,6 +102622,7 @@ export namespace Prisma {
|
|
|
101207
102622
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
101208
102623
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
101209
102624
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
102625
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
101210
102626
|
user?: UserUpdateOneRequiredWithoutOptInsNestedInput
|
|
101211
102627
|
campaign?: CampaignUpdateOneRequiredWithoutOptInsNestedInput
|
|
101212
102628
|
currentStep?: CampaignStepUpdateOneWithoutCurrentOptInsNestedInput
|
|
@@ -101239,6 +102655,7 @@ export namespace Prisma {
|
|
|
101239
102655
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
101240
102656
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
101241
102657
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
102658
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
101242
102659
|
userId?: IntFieldUpdateOperationsInput | number
|
|
101243
102660
|
campaignId?: IntFieldUpdateOperationsInput | number
|
|
101244
102661
|
currentStepId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -101271,6 +102688,7 @@ export namespace Prisma {
|
|
|
101271
102688
|
paymentStatus?: string
|
|
101272
102689
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
101273
102690
|
favoritedDate?: Date | string | null
|
|
102691
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
101274
102692
|
userId: number
|
|
101275
102693
|
campaignId: number
|
|
101276
102694
|
currentStepId?: number | null
|
|
@@ -101291,6 +102709,7 @@ export namespace Prisma {
|
|
|
101291
102709
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
101292
102710
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
101293
102711
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
102712
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
101294
102713
|
}
|
|
101295
102714
|
|
|
101296
102715
|
export type OptInUncheckedUpdateManyInput = {
|
|
@@ -101309,6 +102728,7 @@ export namespace Prisma {
|
|
|
101309
102728
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
101310
102729
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
101311
102730
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
102731
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
101312
102732
|
userId?: IntFieldUpdateOperationsInput | number
|
|
101313
102733
|
campaignId?: IntFieldUpdateOperationsInput | number
|
|
101314
102734
|
currentStepId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -104266,6 +105686,84 @@ export namespace Prisma {
|
|
|
104266
105686
|
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
104267
105687
|
}
|
|
104268
105688
|
|
|
105689
|
+
export type CreatorFlagCreateInput = {
|
|
105690
|
+
label: string
|
|
105691
|
+
comment?: string | null
|
|
105692
|
+
color: string
|
|
105693
|
+
createdAt?: Date | string
|
|
105694
|
+
updatedAt?: Date | string
|
|
105695
|
+
user: UserCreateNestedOneWithoutFlagsAssignedInput
|
|
105696
|
+
flaggedByUser: UserCreateNestedOneWithoutFlagsCreatedInput
|
|
105697
|
+
editedByUser?: UserCreateNestedOneWithoutFlagsEditedInput
|
|
105698
|
+
}
|
|
105699
|
+
|
|
105700
|
+
export type CreatorFlagUncheckedCreateInput = {
|
|
105701
|
+
id?: number
|
|
105702
|
+
label: string
|
|
105703
|
+
comment?: string | null
|
|
105704
|
+
color: string
|
|
105705
|
+
createdAt?: Date | string
|
|
105706
|
+
updatedAt?: Date | string
|
|
105707
|
+
userId: number
|
|
105708
|
+
flaggedByUserId: number
|
|
105709
|
+
editedByUserId?: number | null
|
|
105710
|
+
}
|
|
105711
|
+
|
|
105712
|
+
export type CreatorFlagUpdateInput = {
|
|
105713
|
+
label?: StringFieldUpdateOperationsInput | string
|
|
105714
|
+
comment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
105715
|
+
color?: StringFieldUpdateOperationsInput | string
|
|
105716
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105717
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105718
|
+
user?: UserUpdateOneRequiredWithoutFlagsAssignedNestedInput
|
|
105719
|
+
flaggedByUser?: UserUpdateOneRequiredWithoutFlagsCreatedNestedInput
|
|
105720
|
+
editedByUser?: UserUpdateOneWithoutFlagsEditedNestedInput
|
|
105721
|
+
}
|
|
105722
|
+
|
|
105723
|
+
export type CreatorFlagUncheckedUpdateInput = {
|
|
105724
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
105725
|
+
label?: StringFieldUpdateOperationsInput | string
|
|
105726
|
+
comment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
105727
|
+
color?: StringFieldUpdateOperationsInput | string
|
|
105728
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105729
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105730
|
+
userId?: IntFieldUpdateOperationsInput | number
|
|
105731
|
+
flaggedByUserId?: IntFieldUpdateOperationsInput | number
|
|
105732
|
+
editedByUserId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
105733
|
+
}
|
|
105734
|
+
|
|
105735
|
+
export type CreatorFlagCreateManyInput = {
|
|
105736
|
+
id?: number
|
|
105737
|
+
label: string
|
|
105738
|
+
comment?: string | null
|
|
105739
|
+
color: string
|
|
105740
|
+
createdAt?: Date | string
|
|
105741
|
+
updatedAt?: Date | string
|
|
105742
|
+
userId: number
|
|
105743
|
+
flaggedByUserId: number
|
|
105744
|
+
editedByUserId?: number | null
|
|
105745
|
+
}
|
|
105746
|
+
|
|
105747
|
+
export type CreatorFlagUpdateManyMutationInput = {
|
|
105748
|
+
label?: StringFieldUpdateOperationsInput | string
|
|
105749
|
+
comment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
105750
|
+
color?: StringFieldUpdateOperationsInput | string
|
|
105751
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105752
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105753
|
+
}
|
|
105754
|
+
|
|
105755
|
+
export type CreatorFlagUncheckedUpdateManyInput = {
|
|
105756
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
105757
|
+
label?: StringFieldUpdateOperationsInput | string
|
|
105758
|
+
comment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
105759
|
+
color?: StringFieldUpdateOperationsInput | string
|
|
105760
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105761
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105762
|
+
userId?: IntFieldUpdateOperationsInput | number
|
|
105763
|
+
flaggedByUserId?: IntFieldUpdateOperationsInput | number
|
|
105764
|
+
editedByUserId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
105765
|
+
}
|
|
105766
|
+
|
|
104269
105767
|
export type IntFilter<$PrismaModel = never> = {
|
|
104270
105768
|
equals?: number | IntFieldRefInput<$PrismaModel>
|
|
104271
105769
|
in?: number[] | ListIntFieldRefInput<$PrismaModel>
|
|
@@ -104482,6 +105980,12 @@ export namespace Prisma {
|
|
|
104482
105980
|
none?: ImpactRadiusEventWhereInput
|
|
104483
105981
|
}
|
|
104484
105982
|
|
|
105983
|
+
export type CreatorFlagListRelationFilter = {
|
|
105984
|
+
every?: CreatorFlagWhereInput
|
|
105985
|
+
some?: CreatorFlagWhereInput
|
|
105986
|
+
none?: CreatorFlagWhereInput
|
|
105987
|
+
}
|
|
105988
|
+
|
|
104485
105989
|
export type SortOrderInput = {
|
|
104486
105990
|
sort: SortOrder
|
|
104487
105991
|
nulls?: NullsOrder
|
|
@@ -104539,6 +106043,10 @@ export namespace Prisma {
|
|
|
104539
106043
|
_count?: SortOrder
|
|
104540
106044
|
}
|
|
104541
106045
|
|
|
106046
|
+
export type CreatorFlagOrderByRelationAggregateInput = {
|
|
106047
|
+
_count?: SortOrder
|
|
106048
|
+
}
|
|
106049
|
+
|
|
104542
106050
|
export type UserOrderByRelevanceInput = {
|
|
104543
106051
|
fields: UserOrderByRelevanceFieldEnum | UserOrderByRelevanceFieldEnum[]
|
|
104544
106052
|
sort: SortOrder
|
|
@@ -107150,6 +108658,7 @@ export namespace Prisma {
|
|
|
107150
108658
|
paymentStatus?: SortOrder
|
|
107151
108659
|
extraData?: SortOrder
|
|
107152
108660
|
favoritedDate?: SortOrder
|
|
108661
|
+
rating?: SortOrder
|
|
107153
108662
|
userId?: SortOrder
|
|
107154
108663
|
campaignId?: SortOrder
|
|
107155
108664
|
currentStepId?: SortOrder
|
|
@@ -109492,6 +111001,62 @@ export namespace Prisma {
|
|
|
109492
111001
|
discountCodeId?: SortOrder
|
|
109493
111002
|
}
|
|
109494
111003
|
|
|
111004
|
+
export type CreatorFlagOrderByRelevanceInput = {
|
|
111005
|
+
fields: CreatorFlagOrderByRelevanceFieldEnum | CreatorFlagOrderByRelevanceFieldEnum[]
|
|
111006
|
+
sort: SortOrder
|
|
111007
|
+
search: string
|
|
111008
|
+
}
|
|
111009
|
+
|
|
111010
|
+
export type CreatorFlagCountOrderByAggregateInput = {
|
|
111011
|
+
id?: SortOrder
|
|
111012
|
+
label?: SortOrder
|
|
111013
|
+
comment?: SortOrder
|
|
111014
|
+
color?: SortOrder
|
|
111015
|
+
createdAt?: SortOrder
|
|
111016
|
+
updatedAt?: SortOrder
|
|
111017
|
+
userId?: SortOrder
|
|
111018
|
+
flaggedByUserId?: SortOrder
|
|
111019
|
+
editedByUserId?: SortOrder
|
|
111020
|
+
}
|
|
111021
|
+
|
|
111022
|
+
export type CreatorFlagAvgOrderByAggregateInput = {
|
|
111023
|
+
id?: SortOrder
|
|
111024
|
+
userId?: SortOrder
|
|
111025
|
+
flaggedByUserId?: SortOrder
|
|
111026
|
+
editedByUserId?: SortOrder
|
|
111027
|
+
}
|
|
111028
|
+
|
|
111029
|
+
export type CreatorFlagMaxOrderByAggregateInput = {
|
|
111030
|
+
id?: SortOrder
|
|
111031
|
+
label?: SortOrder
|
|
111032
|
+
comment?: SortOrder
|
|
111033
|
+
color?: SortOrder
|
|
111034
|
+
createdAt?: SortOrder
|
|
111035
|
+
updatedAt?: SortOrder
|
|
111036
|
+
userId?: SortOrder
|
|
111037
|
+
flaggedByUserId?: SortOrder
|
|
111038
|
+
editedByUserId?: SortOrder
|
|
111039
|
+
}
|
|
111040
|
+
|
|
111041
|
+
export type CreatorFlagMinOrderByAggregateInput = {
|
|
111042
|
+
id?: SortOrder
|
|
111043
|
+
label?: SortOrder
|
|
111044
|
+
comment?: SortOrder
|
|
111045
|
+
color?: SortOrder
|
|
111046
|
+
createdAt?: SortOrder
|
|
111047
|
+
updatedAt?: SortOrder
|
|
111048
|
+
userId?: SortOrder
|
|
111049
|
+
flaggedByUserId?: SortOrder
|
|
111050
|
+
editedByUserId?: SortOrder
|
|
111051
|
+
}
|
|
111052
|
+
|
|
111053
|
+
export type CreatorFlagSumOrderByAggregateInput = {
|
|
111054
|
+
id?: SortOrder
|
|
111055
|
+
userId?: SortOrder
|
|
111056
|
+
flaggedByUserId?: SortOrder
|
|
111057
|
+
editedByUserId?: SortOrder
|
|
111058
|
+
}
|
|
111059
|
+
|
|
109495
111060
|
export type UserCreateNestedOneWithoutReferredUsersInput = {
|
|
109496
111061
|
create?: XOR<UserCreateWithoutReferredUsersInput, UserUncheckedCreateWithoutReferredUsersInput>
|
|
109497
111062
|
connectOrCreate?: UserCreateOrConnectWithoutReferredUsersInput
|
|
@@ -109631,6 +111196,27 @@ export namespace Prisma {
|
|
|
109631
111196
|
connect?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
109632
111197
|
}
|
|
109633
111198
|
|
|
111199
|
+
export type CreatorFlagCreateNestedManyWithoutUserInput = {
|
|
111200
|
+
create?: XOR<CreatorFlagCreateWithoutUserInput, CreatorFlagUncheckedCreateWithoutUserInput> | CreatorFlagCreateWithoutUserInput[] | CreatorFlagUncheckedCreateWithoutUserInput[]
|
|
111201
|
+
connectOrCreate?: CreatorFlagCreateOrConnectWithoutUserInput | CreatorFlagCreateOrConnectWithoutUserInput[]
|
|
111202
|
+
createMany?: CreatorFlagCreateManyUserInputEnvelope
|
|
111203
|
+
connect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111204
|
+
}
|
|
111205
|
+
|
|
111206
|
+
export type CreatorFlagCreateNestedManyWithoutFlaggedByUserInput = {
|
|
111207
|
+
create?: XOR<CreatorFlagCreateWithoutFlaggedByUserInput, CreatorFlagUncheckedCreateWithoutFlaggedByUserInput> | CreatorFlagCreateWithoutFlaggedByUserInput[] | CreatorFlagUncheckedCreateWithoutFlaggedByUserInput[]
|
|
111208
|
+
connectOrCreate?: CreatorFlagCreateOrConnectWithoutFlaggedByUserInput | CreatorFlagCreateOrConnectWithoutFlaggedByUserInput[]
|
|
111209
|
+
createMany?: CreatorFlagCreateManyFlaggedByUserInputEnvelope
|
|
111210
|
+
connect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111211
|
+
}
|
|
111212
|
+
|
|
111213
|
+
export type CreatorFlagCreateNestedManyWithoutEditedByUserInput = {
|
|
111214
|
+
create?: XOR<CreatorFlagCreateWithoutEditedByUserInput, CreatorFlagUncheckedCreateWithoutEditedByUserInput> | CreatorFlagCreateWithoutEditedByUserInput[] | CreatorFlagUncheckedCreateWithoutEditedByUserInput[]
|
|
111215
|
+
connectOrCreate?: CreatorFlagCreateOrConnectWithoutEditedByUserInput | CreatorFlagCreateOrConnectWithoutEditedByUserInput[]
|
|
111216
|
+
createMany?: CreatorFlagCreateManyEditedByUserInputEnvelope
|
|
111217
|
+
connect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111218
|
+
}
|
|
111219
|
+
|
|
109634
111220
|
export type UserUncheckedCreateNestedManyWithoutReferrerInput = {
|
|
109635
111221
|
create?: XOR<UserCreateWithoutReferrerInput, UserUncheckedCreateWithoutReferrerInput> | UserCreateWithoutReferrerInput[] | UserUncheckedCreateWithoutReferrerInput[]
|
|
109636
111222
|
connectOrCreate?: UserCreateOrConnectWithoutReferrerInput | UserCreateOrConnectWithoutReferrerInput[]
|
|
@@ -109764,6 +111350,27 @@ export namespace Prisma {
|
|
|
109764
111350
|
connect?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
109765
111351
|
}
|
|
109766
111352
|
|
|
111353
|
+
export type CreatorFlagUncheckedCreateNestedManyWithoutUserInput = {
|
|
111354
|
+
create?: XOR<CreatorFlagCreateWithoutUserInput, CreatorFlagUncheckedCreateWithoutUserInput> | CreatorFlagCreateWithoutUserInput[] | CreatorFlagUncheckedCreateWithoutUserInput[]
|
|
111355
|
+
connectOrCreate?: CreatorFlagCreateOrConnectWithoutUserInput | CreatorFlagCreateOrConnectWithoutUserInput[]
|
|
111356
|
+
createMany?: CreatorFlagCreateManyUserInputEnvelope
|
|
111357
|
+
connect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111358
|
+
}
|
|
111359
|
+
|
|
111360
|
+
export type CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput = {
|
|
111361
|
+
create?: XOR<CreatorFlagCreateWithoutFlaggedByUserInput, CreatorFlagUncheckedCreateWithoutFlaggedByUserInput> | CreatorFlagCreateWithoutFlaggedByUserInput[] | CreatorFlagUncheckedCreateWithoutFlaggedByUserInput[]
|
|
111362
|
+
connectOrCreate?: CreatorFlagCreateOrConnectWithoutFlaggedByUserInput | CreatorFlagCreateOrConnectWithoutFlaggedByUserInput[]
|
|
111363
|
+
createMany?: CreatorFlagCreateManyFlaggedByUserInputEnvelope
|
|
111364
|
+
connect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111365
|
+
}
|
|
111366
|
+
|
|
111367
|
+
export type CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput = {
|
|
111368
|
+
create?: XOR<CreatorFlagCreateWithoutEditedByUserInput, CreatorFlagUncheckedCreateWithoutEditedByUserInput> | CreatorFlagCreateWithoutEditedByUserInput[] | CreatorFlagUncheckedCreateWithoutEditedByUserInput[]
|
|
111369
|
+
connectOrCreate?: CreatorFlagCreateOrConnectWithoutEditedByUserInput | CreatorFlagCreateOrConnectWithoutEditedByUserInput[]
|
|
111370
|
+
createMany?: CreatorFlagCreateManyEditedByUserInputEnvelope
|
|
111371
|
+
connect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111372
|
+
}
|
|
111373
|
+
|
|
109767
111374
|
export type StringFieldUpdateOperationsInput = {
|
|
109768
111375
|
set?: string
|
|
109769
111376
|
}
|
|
@@ -110050,6 +111657,48 @@ export namespace Prisma {
|
|
|
110050
111657
|
deleteMany?: ImpactRadiusEventScalarWhereInput | ImpactRadiusEventScalarWhereInput[]
|
|
110051
111658
|
}
|
|
110052
111659
|
|
|
111660
|
+
export type CreatorFlagUpdateManyWithoutUserNestedInput = {
|
|
111661
|
+
create?: XOR<CreatorFlagCreateWithoutUserInput, CreatorFlagUncheckedCreateWithoutUserInput> | CreatorFlagCreateWithoutUserInput[] | CreatorFlagUncheckedCreateWithoutUserInput[]
|
|
111662
|
+
connectOrCreate?: CreatorFlagCreateOrConnectWithoutUserInput | CreatorFlagCreateOrConnectWithoutUserInput[]
|
|
111663
|
+
upsert?: CreatorFlagUpsertWithWhereUniqueWithoutUserInput | CreatorFlagUpsertWithWhereUniqueWithoutUserInput[]
|
|
111664
|
+
createMany?: CreatorFlagCreateManyUserInputEnvelope
|
|
111665
|
+
set?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111666
|
+
disconnect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111667
|
+
delete?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111668
|
+
connect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111669
|
+
update?: CreatorFlagUpdateWithWhereUniqueWithoutUserInput | CreatorFlagUpdateWithWhereUniqueWithoutUserInput[]
|
|
111670
|
+
updateMany?: CreatorFlagUpdateManyWithWhereWithoutUserInput | CreatorFlagUpdateManyWithWhereWithoutUserInput[]
|
|
111671
|
+
deleteMany?: CreatorFlagScalarWhereInput | CreatorFlagScalarWhereInput[]
|
|
111672
|
+
}
|
|
111673
|
+
|
|
111674
|
+
export type CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput = {
|
|
111675
|
+
create?: XOR<CreatorFlagCreateWithoutFlaggedByUserInput, CreatorFlagUncheckedCreateWithoutFlaggedByUserInput> | CreatorFlagCreateWithoutFlaggedByUserInput[] | CreatorFlagUncheckedCreateWithoutFlaggedByUserInput[]
|
|
111676
|
+
connectOrCreate?: CreatorFlagCreateOrConnectWithoutFlaggedByUserInput | CreatorFlagCreateOrConnectWithoutFlaggedByUserInput[]
|
|
111677
|
+
upsert?: CreatorFlagUpsertWithWhereUniqueWithoutFlaggedByUserInput | CreatorFlagUpsertWithWhereUniqueWithoutFlaggedByUserInput[]
|
|
111678
|
+
createMany?: CreatorFlagCreateManyFlaggedByUserInputEnvelope
|
|
111679
|
+
set?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111680
|
+
disconnect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111681
|
+
delete?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111682
|
+
connect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111683
|
+
update?: CreatorFlagUpdateWithWhereUniqueWithoutFlaggedByUserInput | CreatorFlagUpdateWithWhereUniqueWithoutFlaggedByUserInput[]
|
|
111684
|
+
updateMany?: CreatorFlagUpdateManyWithWhereWithoutFlaggedByUserInput | CreatorFlagUpdateManyWithWhereWithoutFlaggedByUserInput[]
|
|
111685
|
+
deleteMany?: CreatorFlagScalarWhereInput | CreatorFlagScalarWhereInput[]
|
|
111686
|
+
}
|
|
111687
|
+
|
|
111688
|
+
export type CreatorFlagUpdateManyWithoutEditedByUserNestedInput = {
|
|
111689
|
+
create?: XOR<CreatorFlagCreateWithoutEditedByUserInput, CreatorFlagUncheckedCreateWithoutEditedByUserInput> | CreatorFlagCreateWithoutEditedByUserInput[] | CreatorFlagUncheckedCreateWithoutEditedByUserInput[]
|
|
111690
|
+
connectOrCreate?: CreatorFlagCreateOrConnectWithoutEditedByUserInput | CreatorFlagCreateOrConnectWithoutEditedByUserInput[]
|
|
111691
|
+
upsert?: CreatorFlagUpsertWithWhereUniqueWithoutEditedByUserInput | CreatorFlagUpsertWithWhereUniqueWithoutEditedByUserInput[]
|
|
111692
|
+
createMany?: CreatorFlagCreateManyEditedByUserInputEnvelope
|
|
111693
|
+
set?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111694
|
+
disconnect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111695
|
+
delete?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111696
|
+
connect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111697
|
+
update?: CreatorFlagUpdateWithWhereUniqueWithoutEditedByUserInput | CreatorFlagUpdateWithWhereUniqueWithoutEditedByUserInput[]
|
|
111698
|
+
updateMany?: CreatorFlagUpdateManyWithWhereWithoutEditedByUserInput | CreatorFlagUpdateManyWithWhereWithoutEditedByUserInput[]
|
|
111699
|
+
deleteMany?: CreatorFlagScalarWhereInput | CreatorFlagScalarWhereInput[]
|
|
111700
|
+
}
|
|
111701
|
+
|
|
110053
111702
|
export type IntFieldUpdateOperationsInput = {
|
|
110054
111703
|
set?: number
|
|
110055
111704
|
increment?: number
|
|
@@ -110310,6 +111959,48 @@ export namespace Prisma {
|
|
|
110310
111959
|
deleteMany?: ImpactRadiusEventScalarWhereInput | ImpactRadiusEventScalarWhereInput[]
|
|
110311
111960
|
}
|
|
110312
111961
|
|
|
111962
|
+
export type CreatorFlagUncheckedUpdateManyWithoutUserNestedInput = {
|
|
111963
|
+
create?: XOR<CreatorFlagCreateWithoutUserInput, CreatorFlagUncheckedCreateWithoutUserInput> | CreatorFlagCreateWithoutUserInput[] | CreatorFlagUncheckedCreateWithoutUserInput[]
|
|
111964
|
+
connectOrCreate?: CreatorFlagCreateOrConnectWithoutUserInput | CreatorFlagCreateOrConnectWithoutUserInput[]
|
|
111965
|
+
upsert?: CreatorFlagUpsertWithWhereUniqueWithoutUserInput | CreatorFlagUpsertWithWhereUniqueWithoutUserInput[]
|
|
111966
|
+
createMany?: CreatorFlagCreateManyUserInputEnvelope
|
|
111967
|
+
set?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111968
|
+
disconnect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111969
|
+
delete?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111970
|
+
connect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111971
|
+
update?: CreatorFlagUpdateWithWhereUniqueWithoutUserInput | CreatorFlagUpdateWithWhereUniqueWithoutUserInput[]
|
|
111972
|
+
updateMany?: CreatorFlagUpdateManyWithWhereWithoutUserInput | CreatorFlagUpdateManyWithWhereWithoutUserInput[]
|
|
111973
|
+
deleteMany?: CreatorFlagScalarWhereInput | CreatorFlagScalarWhereInput[]
|
|
111974
|
+
}
|
|
111975
|
+
|
|
111976
|
+
export type CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput = {
|
|
111977
|
+
create?: XOR<CreatorFlagCreateWithoutFlaggedByUserInput, CreatorFlagUncheckedCreateWithoutFlaggedByUserInput> | CreatorFlagCreateWithoutFlaggedByUserInput[] | CreatorFlagUncheckedCreateWithoutFlaggedByUserInput[]
|
|
111978
|
+
connectOrCreate?: CreatorFlagCreateOrConnectWithoutFlaggedByUserInput | CreatorFlagCreateOrConnectWithoutFlaggedByUserInput[]
|
|
111979
|
+
upsert?: CreatorFlagUpsertWithWhereUniqueWithoutFlaggedByUserInput | CreatorFlagUpsertWithWhereUniqueWithoutFlaggedByUserInput[]
|
|
111980
|
+
createMany?: CreatorFlagCreateManyFlaggedByUserInputEnvelope
|
|
111981
|
+
set?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111982
|
+
disconnect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111983
|
+
delete?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111984
|
+
connect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111985
|
+
update?: CreatorFlagUpdateWithWhereUniqueWithoutFlaggedByUserInput | CreatorFlagUpdateWithWhereUniqueWithoutFlaggedByUserInput[]
|
|
111986
|
+
updateMany?: CreatorFlagUpdateManyWithWhereWithoutFlaggedByUserInput | CreatorFlagUpdateManyWithWhereWithoutFlaggedByUserInput[]
|
|
111987
|
+
deleteMany?: CreatorFlagScalarWhereInput | CreatorFlagScalarWhereInput[]
|
|
111988
|
+
}
|
|
111989
|
+
|
|
111990
|
+
export type CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput = {
|
|
111991
|
+
create?: XOR<CreatorFlagCreateWithoutEditedByUserInput, CreatorFlagUncheckedCreateWithoutEditedByUserInput> | CreatorFlagCreateWithoutEditedByUserInput[] | CreatorFlagUncheckedCreateWithoutEditedByUserInput[]
|
|
111992
|
+
connectOrCreate?: CreatorFlagCreateOrConnectWithoutEditedByUserInput | CreatorFlagCreateOrConnectWithoutEditedByUserInput[]
|
|
111993
|
+
upsert?: CreatorFlagUpsertWithWhereUniqueWithoutEditedByUserInput | CreatorFlagUpsertWithWhereUniqueWithoutEditedByUserInput[]
|
|
111994
|
+
createMany?: CreatorFlagCreateManyEditedByUserInputEnvelope
|
|
111995
|
+
set?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111996
|
+
disconnect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111997
|
+
delete?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111998
|
+
connect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111999
|
+
update?: CreatorFlagUpdateWithWhereUniqueWithoutEditedByUserInput | CreatorFlagUpdateWithWhereUniqueWithoutEditedByUserInput[]
|
|
112000
|
+
updateMany?: CreatorFlagUpdateManyWithWhereWithoutEditedByUserInput | CreatorFlagUpdateManyWithWhereWithoutEditedByUserInput[]
|
|
112001
|
+
deleteMany?: CreatorFlagScalarWhereInput | CreatorFlagScalarWhereInput[]
|
|
112002
|
+
}
|
|
112003
|
+
|
|
110313
112004
|
export type UserCreateNestedOneWithoutLogsInput = {
|
|
110314
112005
|
create?: XOR<UserCreateWithoutLogsInput, UserUncheckedCreateWithoutLogsInput>
|
|
110315
112006
|
connectOrCreate?: UserCreateOrConnectWithoutLogsInput
|
|
@@ -115900,6 +117591,50 @@ export namespace Prisma {
|
|
|
115900
117591
|
update?: XOR<XOR<ShopifyDiscountCodeUpdateToOneWithWhereWithoutShopifySalesInput, ShopifyDiscountCodeUpdateWithoutShopifySalesInput>, ShopifyDiscountCodeUncheckedUpdateWithoutShopifySalesInput>
|
|
115901
117592
|
}
|
|
115902
117593
|
|
|
117594
|
+
export type UserCreateNestedOneWithoutFlagsAssignedInput = {
|
|
117595
|
+
create?: XOR<UserCreateWithoutFlagsAssignedInput, UserUncheckedCreateWithoutFlagsAssignedInput>
|
|
117596
|
+
connectOrCreate?: UserCreateOrConnectWithoutFlagsAssignedInput
|
|
117597
|
+
connect?: UserWhereUniqueInput
|
|
117598
|
+
}
|
|
117599
|
+
|
|
117600
|
+
export type UserCreateNestedOneWithoutFlagsCreatedInput = {
|
|
117601
|
+
create?: XOR<UserCreateWithoutFlagsCreatedInput, UserUncheckedCreateWithoutFlagsCreatedInput>
|
|
117602
|
+
connectOrCreate?: UserCreateOrConnectWithoutFlagsCreatedInput
|
|
117603
|
+
connect?: UserWhereUniqueInput
|
|
117604
|
+
}
|
|
117605
|
+
|
|
117606
|
+
export type UserCreateNestedOneWithoutFlagsEditedInput = {
|
|
117607
|
+
create?: XOR<UserCreateWithoutFlagsEditedInput, UserUncheckedCreateWithoutFlagsEditedInput>
|
|
117608
|
+
connectOrCreate?: UserCreateOrConnectWithoutFlagsEditedInput
|
|
117609
|
+
connect?: UserWhereUniqueInput
|
|
117610
|
+
}
|
|
117611
|
+
|
|
117612
|
+
export type UserUpdateOneRequiredWithoutFlagsAssignedNestedInput = {
|
|
117613
|
+
create?: XOR<UserCreateWithoutFlagsAssignedInput, UserUncheckedCreateWithoutFlagsAssignedInput>
|
|
117614
|
+
connectOrCreate?: UserCreateOrConnectWithoutFlagsAssignedInput
|
|
117615
|
+
upsert?: UserUpsertWithoutFlagsAssignedInput
|
|
117616
|
+
connect?: UserWhereUniqueInput
|
|
117617
|
+
update?: XOR<XOR<UserUpdateToOneWithWhereWithoutFlagsAssignedInput, UserUpdateWithoutFlagsAssignedInput>, UserUncheckedUpdateWithoutFlagsAssignedInput>
|
|
117618
|
+
}
|
|
117619
|
+
|
|
117620
|
+
export type UserUpdateOneRequiredWithoutFlagsCreatedNestedInput = {
|
|
117621
|
+
create?: XOR<UserCreateWithoutFlagsCreatedInput, UserUncheckedCreateWithoutFlagsCreatedInput>
|
|
117622
|
+
connectOrCreate?: UserCreateOrConnectWithoutFlagsCreatedInput
|
|
117623
|
+
upsert?: UserUpsertWithoutFlagsCreatedInput
|
|
117624
|
+
connect?: UserWhereUniqueInput
|
|
117625
|
+
update?: XOR<XOR<UserUpdateToOneWithWhereWithoutFlagsCreatedInput, UserUpdateWithoutFlagsCreatedInput>, UserUncheckedUpdateWithoutFlagsCreatedInput>
|
|
117626
|
+
}
|
|
117627
|
+
|
|
117628
|
+
export type UserUpdateOneWithoutFlagsEditedNestedInput = {
|
|
117629
|
+
create?: XOR<UserCreateWithoutFlagsEditedInput, UserUncheckedCreateWithoutFlagsEditedInput>
|
|
117630
|
+
connectOrCreate?: UserCreateOrConnectWithoutFlagsEditedInput
|
|
117631
|
+
upsert?: UserUpsertWithoutFlagsEditedInput
|
|
117632
|
+
disconnect?: UserWhereInput | boolean
|
|
117633
|
+
delete?: UserWhereInput | boolean
|
|
117634
|
+
connect?: UserWhereUniqueInput
|
|
117635
|
+
update?: XOR<XOR<UserUpdateToOneWithWhereWithoutFlagsEditedInput, UserUpdateWithoutFlagsEditedInput>, UserUncheckedUpdateWithoutFlagsEditedInput>
|
|
117636
|
+
}
|
|
117637
|
+
|
|
115903
117638
|
export type NestedIntFilter<$PrismaModel = never> = {
|
|
115904
117639
|
equals?: number | IntFieldRefInput<$PrismaModel>
|
|
115905
117640
|
in?: number[] | ListIntFieldRefInput<$PrismaModel>
|
|
@@ -116339,6 +118074,9 @@ export namespace Prisma {
|
|
|
116339
118074
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
116340
118075
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
116341
118076
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
118077
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
118078
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
118079
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
116342
118080
|
}
|
|
116343
118081
|
|
|
116344
118082
|
export type UserUncheckedCreateWithoutReferredUsersInput = {
|
|
@@ -116382,6 +118120,9 @@ export namespace Prisma {
|
|
|
116382
118120
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
116383
118121
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
116384
118122
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
118123
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
118124
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
118125
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
116385
118126
|
}
|
|
116386
118127
|
|
|
116387
118128
|
export type UserCreateOrConnectWithoutReferredUsersInput = {
|
|
@@ -116429,6 +118170,9 @@ export namespace Prisma {
|
|
|
116429
118170
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
116430
118171
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
116431
118172
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
118173
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
118174
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
118175
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
116432
118176
|
}
|
|
116433
118177
|
|
|
116434
118178
|
export type UserUncheckedCreateWithoutReferrerInput = {
|
|
@@ -116472,6 +118216,9 @@ export namespace Prisma {
|
|
|
116472
118216
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
116473
118217
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
116474
118218
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
118219
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
118220
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
118221
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
116475
118222
|
}
|
|
116476
118223
|
|
|
116477
118224
|
export type UserCreateOrConnectWithoutReferrerInput = {
|
|
@@ -116853,6 +118600,7 @@ export namespace Prisma {
|
|
|
116853
118600
|
paymentStatus?: string
|
|
116854
118601
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
116855
118602
|
favoritedDate?: Date | string | null
|
|
118603
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
116856
118604
|
campaign: CampaignCreateNestedOneWithoutOptInsInput
|
|
116857
118605
|
currentStep?: CampaignStepCreateNestedOneWithoutCurrentOptInsInput
|
|
116858
118606
|
variables?: OptInVariableCreateNestedManyWithoutOptInInput
|
|
@@ -116884,6 +118632,7 @@ export namespace Prisma {
|
|
|
116884
118632
|
paymentStatus?: string
|
|
116885
118633
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
116886
118634
|
favoritedDate?: Date | string | null
|
|
118635
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
116887
118636
|
campaignId: number
|
|
116888
118637
|
currentStepId?: number | null
|
|
116889
118638
|
variables?: OptInVariableUncheckedCreateNestedManyWithoutOptInInput
|
|
@@ -117310,6 +119059,99 @@ export namespace Prisma {
|
|
|
117310
119059
|
skipDuplicates?: boolean
|
|
117311
119060
|
}
|
|
117312
119061
|
|
|
119062
|
+
export type CreatorFlagCreateWithoutUserInput = {
|
|
119063
|
+
label: string
|
|
119064
|
+
comment?: string | null
|
|
119065
|
+
color: string
|
|
119066
|
+
createdAt?: Date | string
|
|
119067
|
+
updatedAt?: Date | string
|
|
119068
|
+
flaggedByUser: UserCreateNestedOneWithoutFlagsCreatedInput
|
|
119069
|
+
editedByUser?: UserCreateNestedOneWithoutFlagsEditedInput
|
|
119070
|
+
}
|
|
119071
|
+
|
|
119072
|
+
export type CreatorFlagUncheckedCreateWithoutUserInput = {
|
|
119073
|
+
id?: number
|
|
119074
|
+
label: string
|
|
119075
|
+
comment?: string | null
|
|
119076
|
+
color: string
|
|
119077
|
+
createdAt?: Date | string
|
|
119078
|
+
updatedAt?: Date | string
|
|
119079
|
+
flaggedByUserId: number
|
|
119080
|
+
editedByUserId?: number | null
|
|
119081
|
+
}
|
|
119082
|
+
|
|
119083
|
+
export type CreatorFlagCreateOrConnectWithoutUserInput = {
|
|
119084
|
+
where: CreatorFlagWhereUniqueInput
|
|
119085
|
+
create: XOR<CreatorFlagCreateWithoutUserInput, CreatorFlagUncheckedCreateWithoutUserInput>
|
|
119086
|
+
}
|
|
119087
|
+
|
|
119088
|
+
export type CreatorFlagCreateManyUserInputEnvelope = {
|
|
119089
|
+
data: CreatorFlagCreateManyUserInput | CreatorFlagCreateManyUserInput[]
|
|
119090
|
+
skipDuplicates?: boolean
|
|
119091
|
+
}
|
|
119092
|
+
|
|
119093
|
+
export type CreatorFlagCreateWithoutFlaggedByUserInput = {
|
|
119094
|
+
label: string
|
|
119095
|
+
comment?: string | null
|
|
119096
|
+
color: string
|
|
119097
|
+
createdAt?: Date | string
|
|
119098
|
+
updatedAt?: Date | string
|
|
119099
|
+
user: UserCreateNestedOneWithoutFlagsAssignedInput
|
|
119100
|
+
editedByUser?: UserCreateNestedOneWithoutFlagsEditedInput
|
|
119101
|
+
}
|
|
119102
|
+
|
|
119103
|
+
export type CreatorFlagUncheckedCreateWithoutFlaggedByUserInput = {
|
|
119104
|
+
id?: number
|
|
119105
|
+
label: string
|
|
119106
|
+
comment?: string | null
|
|
119107
|
+
color: string
|
|
119108
|
+
createdAt?: Date | string
|
|
119109
|
+
updatedAt?: Date | string
|
|
119110
|
+
userId: number
|
|
119111
|
+
editedByUserId?: number | null
|
|
119112
|
+
}
|
|
119113
|
+
|
|
119114
|
+
export type CreatorFlagCreateOrConnectWithoutFlaggedByUserInput = {
|
|
119115
|
+
where: CreatorFlagWhereUniqueInput
|
|
119116
|
+
create: XOR<CreatorFlagCreateWithoutFlaggedByUserInput, CreatorFlagUncheckedCreateWithoutFlaggedByUserInput>
|
|
119117
|
+
}
|
|
119118
|
+
|
|
119119
|
+
export type CreatorFlagCreateManyFlaggedByUserInputEnvelope = {
|
|
119120
|
+
data: CreatorFlagCreateManyFlaggedByUserInput | CreatorFlagCreateManyFlaggedByUserInput[]
|
|
119121
|
+
skipDuplicates?: boolean
|
|
119122
|
+
}
|
|
119123
|
+
|
|
119124
|
+
export type CreatorFlagCreateWithoutEditedByUserInput = {
|
|
119125
|
+
label: string
|
|
119126
|
+
comment?: string | null
|
|
119127
|
+
color: string
|
|
119128
|
+
createdAt?: Date | string
|
|
119129
|
+
updatedAt?: Date | string
|
|
119130
|
+
user: UserCreateNestedOneWithoutFlagsAssignedInput
|
|
119131
|
+
flaggedByUser: UserCreateNestedOneWithoutFlagsCreatedInput
|
|
119132
|
+
}
|
|
119133
|
+
|
|
119134
|
+
export type CreatorFlagUncheckedCreateWithoutEditedByUserInput = {
|
|
119135
|
+
id?: number
|
|
119136
|
+
label: string
|
|
119137
|
+
comment?: string | null
|
|
119138
|
+
color: string
|
|
119139
|
+
createdAt?: Date | string
|
|
119140
|
+
updatedAt?: Date | string
|
|
119141
|
+
userId: number
|
|
119142
|
+
flaggedByUserId: number
|
|
119143
|
+
}
|
|
119144
|
+
|
|
119145
|
+
export type CreatorFlagCreateOrConnectWithoutEditedByUserInput = {
|
|
119146
|
+
where: CreatorFlagWhereUniqueInput
|
|
119147
|
+
create: XOR<CreatorFlagCreateWithoutEditedByUserInput, CreatorFlagUncheckedCreateWithoutEditedByUserInput>
|
|
119148
|
+
}
|
|
119149
|
+
|
|
119150
|
+
export type CreatorFlagCreateManyEditedByUserInputEnvelope = {
|
|
119151
|
+
data: CreatorFlagCreateManyEditedByUserInput | CreatorFlagCreateManyEditedByUserInput[]
|
|
119152
|
+
skipDuplicates?: boolean
|
|
119153
|
+
}
|
|
119154
|
+
|
|
117313
119155
|
export type UserUpsertWithoutReferredUsersInput = {
|
|
117314
119156
|
update: XOR<UserUpdateWithoutReferredUsersInput, UserUncheckedUpdateWithoutReferredUsersInput>
|
|
117315
119157
|
create: XOR<UserCreateWithoutReferredUsersInput, UserUncheckedCreateWithoutReferredUsersInput>
|
|
@@ -117361,6 +119203,9 @@ export namespace Prisma {
|
|
|
117361
119203
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
117362
119204
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
117363
119205
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
119206
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
119207
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
119208
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
117364
119209
|
}
|
|
117365
119210
|
|
|
117366
119211
|
export type UserUncheckedUpdateWithoutReferredUsersInput = {
|
|
@@ -117404,6 +119249,9 @@ export namespace Prisma {
|
|
|
117404
119249
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
117405
119250
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
117406
119251
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
119252
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
119253
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
119254
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
117407
119255
|
}
|
|
117408
119256
|
|
|
117409
119257
|
export type UserUpsertWithWhereUniqueWithoutReferrerInput = {
|
|
@@ -117891,6 +119739,7 @@ export namespace Prisma {
|
|
|
117891
119739
|
paymentStatus?: StringFilter<"OptIn"> | string
|
|
117892
119740
|
extraData?: JsonFilter<"OptIn">
|
|
117893
119741
|
favoritedDate?: DateTimeNullableFilter<"OptIn"> | Date | string | null
|
|
119742
|
+
rating?: JsonNullableFilter<"OptIn">
|
|
117894
119743
|
userId?: IntFilter<"OptIn"> | number
|
|
117895
119744
|
campaignId?: IntFilter<"OptIn"> | number
|
|
117896
119745
|
currentStepId?: IntNullableFilter<"OptIn"> | number | null
|
|
@@ -118208,6 +120057,69 @@ export namespace Prisma {
|
|
|
118208
120057
|
optInId?: IntNullableFilter<"ImpactRadiusEvent"> | number | null
|
|
118209
120058
|
}
|
|
118210
120059
|
|
|
120060
|
+
export type CreatorFlagUpsertWithWhereUniqueWithoutUserInput = {
|
|
120061
|
+
where: CreatorFlagWhereUniqueInput
|
|
120062
|
+
update: XOR<CreatorFlagUpdateWithoutUserInput, CreatorFlagUncheckedUpdateWithoutUserInput>
|
|
120063
|
+
create: XOR<CreatorFlagCreateWithoutUserInput, CreatorFlagUncheckedCreateWithoutUserInput>
|
|
120064
|
+
}
|
|
120065
|
+
|
|
120066
|
+
export type CreatorFlagUpdateWithWhereUniqueWithoutUserInput = {
|
|
120067
|
+
where: CreatorFlagWhereUniqueInput
|
|
120068
|
+
data: XOR<CreatorFlagUpdateWithoutUserInput, CreatorFlagUncheckedUpdateWithoutUserInput>
|
|
120069
|
+
}
|
|
120070
|
+
|
|
120071
|
+
export type CreatorFlagUpdateManyWithWhereWithoutUserInput = {
|
|
120072
|
+
where: CreatorFlagScalarWhereInput
|
|
120073
|
+
data: XOR<CreatorFlagUpdateManyMutationInput, CreatorFlagUncheckedUpdateManyWithoutUserInput>
|
|
120074
|
+
}
|
|
120075
|
+
|
|
120076
|
+
export type CreatorFlagScalarWhereInput = {
|
|
120077
|
+
AND?: CreatorFlagScalarWhereInput | CreatorFlagScalarWhereInput[]
|
|
120078
|
+
OR?: CreatorFlagScalarWhereInput[]
|
|
120079
|
+
NOT?: CreatorFlagScalarWhereInput | CreatorFlagScalarWhereInput[]
|
|
120080
|
+
id?: IntFilter<"CreatorFlag"> | number
|
|
120081
|
+
label?: StringFilter<"CreatorFlag"> | string
|
|
120082
|
+
comment?: StringNullableFilter<"CreatorFlag"> | string | null
|
|
120083
|
+
color?: StringFilter<"CreatorFlag"> | string
|
|
120084
|
+
createdAt?: DateTimeFilter<"CreatorFlag"> | Date | string
|
|
120085
|
+
updatedAt?: DateTimeFilter<"CreatorFlag"> | Date | string
|
|
120086
|
+
userId?: IntFilter<"CreatorFlag"> | number
|
|
120087
|
+
flaggedByUserId?: IntFilter<"CreatorFlag"> | number
|
|
120088
|
+
editedByUserId?: IntNullableFilter<"CreatorFlag"> | number | null
|
|
120089
|
+
}
|
|
120090
|
+
|
|
120091
|
+
export type CreatorFlagUpsertWithWhereUniqueWithoutFlaggedByUserInput = {
|
|
120092
|
+
where: CreatorFlagWhereUniqueInput
|
|
120093
|
+
update: XOR<CreatorFlagUpdateWithoutFlaggedByUserInput, CreatorFlagUncheckedUpdateWithoutFlaggedByUserInput>
|
|
120094
|
+
create: XOR<CreatorFlagCreateWithoutFlaggedByUserInput, CreatorFlagUncheckedCreateWithoutFlaggedByUserInput>
|
|
120095
|
+
}
|
|
120096
|
+
|
|
120097
|
+
export type CreatorFlagUpdateWithWhereUniqueWithoutFlaggedByUserInput = {
|
|
120098
|
+
where: CreatorFlagWhereUniqueInput
|
|
120099
|
+
data: XOR<CreatorFlagUpdateWithoutFlaggedByUserInput, CreatorFlagUncheckedUpdateWithoutFlaggedByUserInput>
|
|
120100
|
+
}
|
|
120101
|
+
|
|
120102
|
+
export type CreatorFlagUpdateManyWithWhereWithoutFlaggedByUserInput = {
|
|
120103
|
+
where: CreatorFlagScalarWhereInput
|
|
120104
|
+
data: XOR<CreatorFlagUpdateManyMutationInput, CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserInput>
|
|
120105
|
+
}
|
|
120106
|
+
|
|
120107
|
+
export type CreatorFlagUpsertWithWhereUniqueWithoutEditedByUserInput = {
|
|
120108
|
+
where: CreatorFlagWhereUniqueInput
|
|
120109
|
+
update: XOR<CreatorFlagUpdateWithoutEditedByUserInput, CreatorFlagUncheckedUpdateWithoutEditedByUserInput>
|
|
120110
|
+
create: XOR<CreatorFlagCreateWithoutEditedByUserInput, CreatorFlagUncheckedCreateWithoutEditedByUserInput>
|
|
120111
|
+
}
|
|
120112
|
+
|
|
120113
|
+
export type CreatorFlagUpdateWithWhereUniqueWithoutEditedByUserInput = {
|
|
120114
|
+
where: CreatorFlagWhereUniqueInput
|
|
120115
|
+
data: XOR<CreatorFlagUpdateWithoutEditedByUserInput, CreatorFlagUncheckedUpdateWithoutEditedByUserInput>
|
|
120116
|
+
}
|
|
120117
|
+
|
|
120118
|
+
export type CreatorFlagUpdateManyWithWhereWithoutEditedByUserInput = {
|
|
120119
|
+
where: CreatorFlagScalarWhereInput
|
|
120120
|
+
data: XOR<CreatorFlagUpdateManyMutationInput, CreatorFlagUncheckedUpdateManyWithoutEditedByUserInput>
|
|
120121
|
+
}
|
|
120122
|
+
|
|
118211
120123
|
export type UserCreateWithoutLogsInput = {
|
|
118212
120124
|
role: string
|
|
118213
120125
|
email?: string | null
|
|
@@ -118248,6 +120160,9 @@ export namespace Prisma {
|
|
|
118248
120160
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
118249
120161
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
118250
120162
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
120163
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
120164
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
120165
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
118251
120166
|
}
|
|
118252
120167
|
|
|
118253
120168
|
export type UserUncheckedCreateWithoutLogsInput = {
|
|
@@ -118291,6 +120206,9 @@ export namespace Prisma {
|
|
|
118291
120206
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
118292
120207
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
118293
120208
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
120209
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
120210
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
120211
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
118294
120212
|
}
|
|
118295
120213
|
|
|
118296
120214
|
export type UserCreateOrConnectWithoutLogsInput = {
|
|
@@ -118349,6 +120267,9 @@ export namespace Prisma {
|
|
|
118349
120267
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
118350
120268
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
118351
120269
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
120270
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
120271
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
120272
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
118352
120273
|
}
|
|
118353
120274
|
|
|
118354
120275
|
export type UserUncheckedUpdateWithoutLogsInput = {
|
|
@@ -118392,6 +120313,9 @@ export namespace Prisma {
|
|
|
118392
120313
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
118393
120314
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
118394
120315
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
120316
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
120317
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
120318
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
118395
120319
|
}
|
|
118396
120320
|
|
|
118397
120321
|
export type CreatorToCategoryCreateWithoutCreatorProfileInput = {
|
|
@@ -118452,6 +120376,9 @@ export namespace Prisma {
|
|
|
118452
120376
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
118453
120377
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
118454
120378
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
120379
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
120380
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
120381
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
118455
120382
|
}
|
|
118456
120383
|
|
|
118457
120384
|
export type UserUncheckedCreateWithoutCreatorProfileInput = {
|
|
@@ -118495,6 +120422,9 @@ export namespace Prisma {
|
|
|
118495
120422
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
118496
120423
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
118497
120424
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
120425
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
120426
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
120427
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
118498
120428
|
}
|
|
118499
120429
|
|
|
118500
120430
|
export type UserCreateOrConnectWithoutCreatorProfileInput = {
|
|
@@ -118577,6 +120507,9 @@ export namespace Prisma {
|
|
|
118577
120507
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
118578
120508
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
118579
120509
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
120510
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
120511
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
120512
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
118580
120513
|
}
|
|
118581
120514
|
|
|
118582
120515
|
export type UserUncheckedUpdateWithoutCreatorProfileInput = {
|
|
@@ -118620,6 +120553,9 @@ export namespace Prisma {
|
|
|
118620
120553
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
118621
120554
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
118622
120555
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
120556
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
120557
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
120558
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
118623
120559
|
}
|
|
118624
120560
|
|
|
118625
120561
|
export type UserCreateWithoutInstagramProfileInput = {
|
|
@@ -118662,6 +120598,9 @@ export namespace Prisma {
|
|
|
118662
120598
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
118663
120599
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
118664
120600
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
120601
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
120602
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
120603
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
118665
120604
|
}
|
|
118666
120605
|
|
|
118667
120606
|
export type UserUncheckedCreateWithoutInstagramProfileInput = {
|
|
@@ -118705,6 +120644,9 @@ export namespace Prisma {
|
|
|
118705
120644
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
118706
120645
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
118707
120646
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
120647
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
120648
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
120649
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
118708
120650
|
}
|
|
118709
120651
|
|
|
118710
120652
|
export type UserCreateOrConnectWithoutInstagramProfileInput = {
|
|
@@ -118845,6 +120787,9 @@ export namespace Prisma {
|
|
|
118845
120787
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
118846
120788
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
118847
120789
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
120790
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
120791
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
120792
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
118848
120793
|
}
|
|
118849
120794
|
|
|
118850
120795
|
export type UserUncheckedUpdateWithoutInstagramProfileInput = {
|
|
@@ -118888,6 +120833,9 @@ export namespace Prisma {
|
|
|
118888
120833
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
118889
120834
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
118890
120835
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
120836
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
120837
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
120838
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
118891
120839
|
}
|
|
118892
120840
|
|
|
118893
120841
|
export type BrandUpsertWithoutInstagramProfileInput = {
|
|
@@ -119018,6 +120966,9 @@ export namespace Prisma {
|
|
|
119018
120966
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
119019
120967
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
119020
120968
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
120969
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
120970
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
120971
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
119021
120972
|
}
|
|
119022
120973
|
|
|
119023
120974
|
export type UserUncheckedCreateWithoutTiktokProfileInput = {
|
|
@@ -119061,6 +121012,9 @@ export namespace Prisma {
|
|
|
119061
121012
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
119062
121013
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
119063
121014
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
121015
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
121016
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
121017
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
119064
121018
|
}
|
|
119065
121019
|
|
|
119066
121020
|
export type UserCreateOrConnectWithoutTiktokProfileInput = {
|
|
@@ -119201,6 +121155,9 @@ export namespace Prisma {
|
|
|
119201
121155
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
119202
121156
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
119203
121157
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
121158
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
121159
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
121160
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
119204
121161
|
}
|
|
119205
121162
|
|
|
119206
121163
|
export type UserUncheckedUpdateWithoutTiktokProfileInput = {
|
|
@@ -119244,6 +121201,9 @@ export namespace Prisma {
|
|
|
119244
121201
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
119245
121202
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
119246
121203
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
121204
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
121205
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
121206
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
119247
121207
|
}
|
|
119248
121208
|
|
|
119249
121209
|
export type BrandUpsertWithoutTiktokProfileInput = {
|
|
@@ -119374,6 +121334,9 @@ export namespace Prisma {
|
|
|
119374
121334
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
119375
121335
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
119376
121336
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
121337
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
121338
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
121339
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
119377
121340
|
}
|
|
119378
121341
|
|
|
119379
121342
|
export type UserUncheckedCreateWithoutYoutubeProfileInput = {
|
|
@@ -119417,6 +121380,9 @@ export namespace Prisma {
|
|
|
119417
121380
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
119418
121381
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
119419
121382
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
121383
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
121384
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
121385
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
119420
121386
|
}
|
|
119421
121387
|
|
|
119422
121388
|
export type UserCreateOrConnectWithoutYoutubeProfileInput = {
|
|
@@ -119557,6 +121523,9 @@ export namespace Prisma {
|
|
|
119557
121523
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
119558
121524
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
119559
121525
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
121526
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
121527
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
121528
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
119560
121529
|
}
|
|
119561
121530
|
|
|
119562
121531
|
export type UserUncheckedUpdateWithoutYoutubeProfileInput = {
|
|
@@ -119600,6 +121569,9 @@ export namespace Prisma {
|
|
|
119600
121569
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
119601
121570
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
119602
121571
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
121572
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
121573
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
121574
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
119603
121575
|
}
|
|
119604
121576
|
|
|
119605
121577
|
export type BrandUpsertWithoutYoutubeProfileInput = {
|
|
@@ -119730,6 +121702,9 @@ export namespace Prisma {
|
|
|
119730
121702
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
119731
121703
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
119732
121704
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
121705
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
121706
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
121707
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
119733
121708
|
}
|
|
119734
121709
|
|
|
119735
121710
|
export type UserUncheckedCreateWithoutTwitchProfileInput = {
|
|
@@ -119773,6 +121748,9 @@ export namespace Prisma {
|
|
|
119773
121748
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
119774
121749
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
119775
121750
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
121751
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
121752
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
121753
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
119776
121754
|
}
|
|
119777
121755
|
|
|
119778
121756
|
export type UserCreateOrConnectWithoutTwitchProfileInput = {
|
|
@@ -119831,6 +121809,9 @@ export namespace Prisma {
|
|
|
119831
121809
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
119832
121810
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
119833
121811
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
121812
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
121813
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
121814
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
119834
121815
|
}
|
|
119835
121816
|
|
|
119836
121817
|
export type UserUncheckedUpdateWithoutTwitchProfileInput = {
|
|
@@ -119874,6 +121855,9 @@ export namespace Prisma {
|
|
|
119874
121855
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
119875
121856
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
119876
121857
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
121858
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
121859
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
121860
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
119877
121861
|
}
|
|
119878
121862
|
|
|
119879
121863
|
export type UserCreateWithoutFacebookProfileInput = {
|
|
@@ -119916,6 +121900,9 @@ export namespace Prisma {
|
|
|
119916
121900
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
119917
121901
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
119918
121902
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
121903
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
121904
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
121905
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
119919
121906
|
}
|
|
119920
121907
|
|
|
119921
121908
|
export type UserUncheckedCreateWithoutFacebookProfileInput = {
|
|
@@ -119959,6 +121946,9 @@ export namespace Prisma {
|
|
|
119959
121946
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
119960
121947
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
119961
121948
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
121949
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
121950
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
121951
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
119962
121952
|
}
|
|
119963
121953
|
|
|
119964
121954
|
export type UserCreateOrConnectWithoutFacebookProfileInput = {
|
|
@@ -120017,6 +122007,9 @@ export namespace Prisma {
|
|
|
120017
122007
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
120018
122008
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
120019
122009
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
122010
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
122011
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
122012
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
120020
122013
|
}
|
|
120021
122014
|
|
|
120022
122015
|
export type UserUncheckedUpdateWithoutFacebookProfileInput = {
|
|
@@ -120060,6 +122053,9 @@ export namespace Prisma {
|
|
|
120060
122053
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
120061
122054
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
120062
122055
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
122056
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
122057
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
122058
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
120063
122059
|
}
|
|
120064
122060
|
|
|
120065
122061
|
export type UserCreateWithoutTwitterProfileInput = {
|
|
@@ -120102,6 +122098,9 @@ export namespace Prisma {
|
|
|
120102
122098
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
120103
122099
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
120104
122100
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
122101
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
122102
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
122103
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
120105
122104
|
}
|
|
120106
122105
|
|
|
120107
122106
|
export type UserUncheckedCreateWithoutTwitterProfileInput = {
|
|
@@ -120145,6 +122144,9 @@ export namespace Prisma {
|
|
|
120145
122144
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
120146
122145
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
120147
122146
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
122147
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
122148
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
122149
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
120148
122150
|
}
|
|
120149
122151
|
|
|
120150
122152
|
export type UserCreateOrConnectWithoutTwitterProfileInput = {
|
|
@@ -120203,6 +122205,9 @@ export namespace Prisma {
|
|
|
120203
122205
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
120204
122206
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
120205
122207
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
122208
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
122209
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
122210
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
120206
122211
|
}
|
|
120207
122212
|
|
|
120208
122213
|
export type UserUncheckedUpdateWithoutTwitterProfileInput = {
|
|
@@ -120246,6 +122251,9 @@ export namespace Prisma {
|
|
|
120246
122251
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
120247
122252
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
120248
122253
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
122254
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
122255
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
122256
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
120249
122257
|
}
|
|
120250
122258
|
|
|
120251
122259
|
export type UserCreateWithoutBrandProfilesInput = {
|
|
@@ -120288,6 +122296,9 @@ export namespace Prisma {
|
|
|
120288
122296
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
120289
122297
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
120290
122298
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
122299
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
122300
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
122301
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
120291
122302
|
}
|
|
120292
122303
|
|
|
120293
122304
|
export type UserUncheckedCreateWithoutBrandProfilesInput = {
|
|
@@ -120331,6 +122342,9 @@ export namespace Prisma {
|
|
|
120331
122342
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
120332
122343
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
120333
122344
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
122345
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
122346
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
122347
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
120334
122348
|
}
|
|
120335
122349
|
|
|
120336
122350
|
export type UserCreateOrConnectWithoutBrandProfilesInput = {
|
|
@@ -120471,6 +122485,9 @@ export namespace Prisma {
|
|
|
120471
122485
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
120472
122486
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
120473
122487
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
122488
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
122489
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
122490
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
120474
122491
|
}
|
|
120475
122492
|
|
|
120476
122493
|
export type UserUncheckedUpdateWithoutBrandProfilesInput = {
|
|
@@ -120514,6 +122531,9 @@ export namespace Prisma {
|
|
|
120514
122531
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
120515
122532
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
120516
122533
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
122534
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
122535
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
122536
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
120517
122537
|
}
|
|
120518
122538
|
|
|
120519
122539
|
export type BrandUpsertWithoutBrandUsersInput = {
|
|
@@ -120644,6 +122664,9 @@ export namespace Prisma {
|
|
|
120644
122664
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
120645
122665
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
120646
122666
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
122667
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
122668
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
122669
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
120647
122670
|
}
|
|
120648
122671
|
|
|
120649
122672
|
export type UserUncheckedCreateWithoutAssignedBrandsInput = {
|
|
@@ -120687,6 +122710,9 @@ export namespace Prisma {
|
|
|
120687
122710
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
120688
122711
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
120689
122712
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
122713
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
122714
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
122715
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
120690
122716
|
}
|
|
120691
122717
|
|
|
120692
122718
|
export type UserCreateOrConnectWithoutAssignedBrandsInput = {
|
|
@@ -121756,6 +123782,9 @@ export namespace Prisma {
|
|
|
121756
123782
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
121757
123783
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
121758
123784
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
123785
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
123786
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
123787
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
121759
123788
|
}
|
|
121760
123789
|
|
|
121761
123790
|
export type UserUncheckedUpdateWithoutAssignedBrandsInput = {
|
|
@@ -121799,6 +123828,9 @@ export namespace Prisma {
|
|
|
121799
123828
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
121800
123829
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
121801
123830
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
123831
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
123832
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
123833
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
121802
123834
|
}
|
|
121803
123835
|
|
|
121804
123836
|
export type InstagramProfileUpsertWithoutBrandInput = {
|
|
@@ -123810,6 +125842,7 @@ export namespace Prisma {
|
|
|
123810
125842
|
paymentStatus?: string
|
|
123811
125843
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
123812
125844
|
favoritedDate?: Date | string | null
|
|
125845
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
123813
125846
|
user: UserCreateNestedOneWithoutOptInsInput
|
|
123814
125847
|
campaign: CampaignCreateNestedOneWithoutOptInsInput
|
|
123815
125848
|
currentStep?: CampaignStepCreateNestedOneWithoutCurrentOptInsInput
|
|
@@ -123841,6 +125874,7 @@ export namespace Prisma {
|
|
|
123841
125874
|
paymentStatus?: string
|
|
123842
125875
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
123843
125876
|
favoritedDate?: Date | string | null
|
|
125877
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
123844
125878
|
userId: number
|
|
123845
125879
|
campaignId: number
|
|
123846
125880
|
currentStepId?: number | null
|
|
@@ -123918,6 +125952,7 @@ export namespace Prisma {
|
|
|
123918
125952
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
123919
125953
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
123920
125954
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
125955
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
123921
125956
|
user?: UserUpdateOneRequiredWithoutOptInsNestedInput
|
|
123922
125957
|
campaign?: CampaignUpdateOneRequiredWithoutOptInsNestedInput
|
|
123923
125958
|
currentStep?: CampaignStepUpdateOneWithoutCurrentOptInsNestedInput
|
|
@@ -123949,6 +125984,7 @@ export namespace Prisma {
|
|
|
123949
125984
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
123950
125985
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
123951
125986
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
125987
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
123952
125988
|
userId?: IntFieldUpdateOperationsInput | number
|
|
123953
125989
|
campaignId?: IntFieldUpdateOperationsInput | number
|
|
123954
125990
|
currentStepId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -124020,6 +126056,9 @@ export namespace Prisma {
|
|
|
124020
126056
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
124021
126057
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
124022
126058
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
126059
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
126060
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
126061
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
124023
126062
|
}
|
|
124024
126063
|
|
|
124025
126064
|
export type UserUncheckedCreateWithoutMessagesInput = {
|
|
@@ -124063,6 +126102,9 @@ export namespace Prisma {
|
|
|
124063
126102
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
124064
126103
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
124065
126104
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
126105
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
126106
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
126107
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
124066
126108
|
}
|
|
124067
126109
|
|
|
124068
126110
|
export type UserCreateOrConnectWithoutMessagesInput = {
|
|
@@ -124141,6 +126183,9 @@ export namespace Prisma {
|
|
|
124141
126183
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
124142
126184
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
124143
126185
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
126186
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
126187
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
126188
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
124144
126189
|
}
|
|
124145
126190
|
|
|
124146
126191
|
export type UserUncheckedUpdateWithoutMessagesInput = {
|
|
@@ -124184,6 +126229,9 @@ export namespace Prisma {
|
|
|
124184
126229
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
124185
126230
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
124186
126231
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
126232
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
126233
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
126234
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
124187
126235
|
}
|
|
124188
126236
|
|
|
124189
126237
|
export type ChatUpsertWithoutMessagesInput = {
|
|
@@ -124282,6 +126330,7 @@ export namespace Prisma {
|
|
|
124282
126330
|
paymentStatus?: string
|
|
124283
126331
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
124284
126332
|
favoritedDate?: Date | string | null
|
|
126333
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
124285
126334
|
user: UserCreateNestedOneWithoutOptInsInput
|
|
124286
126335
|
currentStep?: CampaignStepCreateNestedOneWithoutCurrentOptInsInput
|
|
124287
126336
|
variables?: OptInVariableCreateNestedManyWithoutOptInInput
|
|
@@ -124313,6 +126362,7 @@ export namespace Prisma {
|
|
|
124313
126362
|
paymentStatus?: string
|
|
124314
126363
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
124315
126364
|
favoritedDate?: Date | string | null
|
|
126365
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
124316
126366
|
userId: number
|
|
124317
126367
|
currentStepId?: number | null
|
|
124318
126368
|
variables?: OptInVariableUncheckedCreateNestedManyWithoutOptInInput
|
|
@@ -125282,6 +127332,9 @@ export namespace Prisma {
|
|
|
125282
127332
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
125283
127333
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
125284
127334
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
127335
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
127336
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
127337
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
125285
127338
|
}
|
|
125286
127339
|
|
|
125287
127340
|
export type UserUncheckedCreateWithoutCampaignPinsInput = {
|
|
@@ -125325,6 +127378,9 @@ export namespace Prisma {
|
|
|
125325
127378
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
125326
127379
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
125327
127380
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
127381
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
127382
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
127383
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
125328
127384
|
}
|
|
125329
127385
|
|
|
125330
127386
|
export type UserCreateOrConnectWithoutCampaignPinsInput = {
|
|
@@ -125529,6 +127585,9 @@ export namespace Prisma {
|
|
|
125529
127585
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
125530
127586
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
125531
127587
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
127588
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
127589
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
127590
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
125532
127591
|
}
|
|
125533
127592
|
|
|
125534
127593
|
export type UserUncheckedUpdateWithoutCampaignPinsInput = {
|
|
@@ -125572,6 +127631,9 @@ export namespace Prisma {
|
|
|
125572
127631
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
125573
127632
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
125574
127633
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
127634
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
127635
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
127636
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
125575
127637
|
}
|
|
125576
127638
|
|
|
125577
127639
|
export type CampaignUpsertWithoutCampaignPinsInput = {
|
|
@@ -127837,6 +129899,7 @@ export namespace Prisma {
|
|
|
127837
129899
|
paymentStatus?: string
|
|
127838
129900
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
127839
129901
|
favoritedDate?: Date | string | null
|
|
129902
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
127840
129903
|
user: UserCreateNestedOneWithoutOptInsInput
|
|
127841
129904
|
campaign: CampaignCreateNestedOneWithoutOptInsInput
|
|
127842
129905
|
currentStep?: CampaignStepCreateNestedOneWithoutCurrentOptInsInput
|
|
@@ -127868,6 +129931,7 @@ export namespace Prisma {
|
|
|
127868
129931
|
paymentStatus?: string
|
|
127869
129932
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
127870
129933
|
favoritedDate?: Date | string | null
|
|
129934
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
127871
129935
|
userId: number
|
|
127872
129936
|
campaignId: number
|
|
127873
129937
|
currentStepId?: number | null
|
|
@@ -127936,6 +130000,7 @@ export namespace Prisma {
|
|
|
127936
130000
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
127937
130001
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
127938
130002
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
130003
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
127939
130004
|
user?: UserUpdateOneRequiredWithoutOptInsNestedInput
|
|
127940
130005
|
campaign?: CampaignUpdateOneRequiredWithoutOptInsNestedInput
|
|
127941
130006
|
currentStep?: CampaignStepUpdateOneWithoutCurrentOptInsNestedInput
|
|
@@ -127967,6 +130032,7 @@ export namespace Prisma {
|
|
|
127967
130032
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
127968
130033
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
127969
130034
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
130035
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
127970
130036
|
userId?: IntFieldUpdateOperationsInput | number
|
|
127971
130037
|
campaignId?: IntFieldUpdateOperationsInput | number
|
|
127972
130038
|
currentStepId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -128728,6 +130794,7 @@ export namespace Prisma {
|
|
|
128728
130794
|
paymentStatus?: string
|
|
128729
130795
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
128730
130796
|
favoritedDate?: Date | string | null
|
|
130797
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
128731
130798
|
user: UserCreateNestedOneWithoutOptInsInput
|
|
128732
130799
|
campaign: CampaignCreateNestedOneWithoutOptInsInput
|
|
128733
130800
|
variables?: OptInVariableCreateNestedManyWithoutOptInInput
|
|
@@ -128759,6 +130826,7 @@ export namespace Prisma {
|
|
|
128759
130826
|
paymentStatus?: string
|
|
128760
130827
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
128761
130828
|
favoritedDate?: Date | string | null
|
|
130829
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
128762
130830
|
userId: number
|
|
128763
130831
|
campaignId: number
|
|
128764
130832
|
variables?: OptInVariableUncheckedCreateNestedManyWithoutOptInInput
|
|
@@ -129046,6 +131114,7 @@ export namespace Prisma {
|
|
|
129046
131114
|
paymentStatus?: string
|
|
129047
131115
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
129048
131116
|
favoritedDate?: Date | string | null
|
|
131117
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
129049
131118
|
user: UserCreateNestedOneWithoutOptInsInput
|
|
129050
131119
|
campaign: CampaignCreateNestedOneWithoutOptInsInput
|
|
129051
131120
|
currentStep?: CampaignStepCreateNestedOneWithoutCurrentOptInsInput
|
|
@@ -129077,6 +131146,7 @@ export namespace Prisma {
|
|
|
129077
131146
|
paymentStatus?: string
|
|
129078
131147
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
129079
131148
|
favoritedDate?: Date | string | null
|
|
131149
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
129080
131150
|
userId: number
|
|
129081
131151
|
campaignId: number
|
|
129082
131152
|
currentStepId?: number | null
|
|
@@ -129155,6 +131225,7 @@ export namespace Prisma {
|
|
|
129155
131225
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
129156
131226
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
129157
131227
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
131228
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
129158
131229
|
user?: UserUpdateOneRequiredWithoutOptInsNestedInput
|
|
129159
131230
|
campaign?: CampaignUpdateOneRequiredWithoutOptInsNestedInput
|
|
129160
131231
|
currentStep?: CampaignStepUpdateOneWithoutCurrentOptInsNestedInput
|
|
@@ -129186,6 +131257,7 @@ export namespace Prisma {
|
|
|
129186
131257
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
129187
131258
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
129188
131259
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
131260
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
129189
131261
|
userId?: IntFieldUpdateOperationsInput | number
|
|
129190
131262
|
campaignId?: IntFieldUpdateOperationsInput | number
|
|
129191
131263
|
currentStepId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -129381,6 +131453,9 @@ export namespace Prisma {
|
|
|
129381
131453
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
129382
131454
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
129383
131455
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
131456
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
131457
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
131458
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
129384
131459
|
}
|
|
129385
131460
|
|
|
129386
131461
|
export type UserUncheckedCreateWithoutOptInsInput = {
|
|
@@ -129424,6 +131499,9 @@ export namespace Prisma {
|
|
|
129424
131499
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
129425
131500
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
129426
131501
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
131502
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
131503
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
131504
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
129427
131505
|
}
|
|
129428
131506
|
|
|
129429
131507
|
export type UserCreateOrConnectWithoutOptInsInput = {
|
|
@@ -129947,6 +132025,9 @@ export namespace Prisma {
|
|
|
129947
132025
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
129948
132026
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
129949
132027
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
132028
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
132029
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
132030
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
129950
132031
|
}
|
|
129951
132032
|
|
|
129952
132033
|
export type UserUncheckedUpdateWithoutOptInsInput = {
|
|
@@ -129990,6 +132071,9 @@ export namespace Prisma {
|
|
|
129990
132071
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
129991
132072
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
129992
132073
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
132074
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
132075
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
132076
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
129993
132077
|
}
|
|
129994
132078
|
|
|
129995
132079
|
export type CampaignUpsertWithoutOptInsInput = {
|
|
@@ -130433,6 +132517,7 @@ export namespace Prisma {
|
|
|
130433
132517
|
paymentStatus?: string
|
|
130434
132518
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
130435
132519
|
favoritedDate?: Date | string | null
|
|
132520
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
130436
132521
|
user: UserCreateNestedOneWithoutOptInsInput
|
|
130437
132522
|
campaign: CampaignCreateNestedOneWithoutOptInsInput
|
|
130438
132523
|
currentStep?: CampaignStepCreateNestedOneWithoutCurrentOptInsInput
|
|
@@ -130464,6 +132549,7 @@ export namespace Prisma {
|
|
|
130464
132549
|
paymentStatus?: string
|
|
130465
132550
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
130466
132551
|
favoritedDate?: Date | string | null
|
|
132552
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
130467
132553
|
userId: number
|
|
130468
132554
|
campaignId: number
|
|
130469
132555
|
currentStepId?: number | null
|
|
@@ -130510,6 +132596,7 @@ export namespace Prisma {
|
|
|
130510
132596
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
130511
132597
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
130512
132598
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
132599
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
130513
132600
|
user?: UserUpdateOneRequiredWithoutOptInsNestedInput
|
|
130514
132601
|
campaign?: CampaignUpdateOneRequiredWithoutOptInsNestedInput
|
|
130515
132602
|
currentStep?: CampaignStepUpdateOneWithoutCurrentOptInsNestedInput
|
|
@@ -130541,6 +132628,7 @@ export namespace Prisma {
|
|
|
130541
132628
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
130542
132629
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
130543
132630
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
132631
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
130544
132632
|
userId?: IntFieldUpdateOperationsInput | number
|
|
130545
132633
|
campaignId?: IntFieldUpdateOperationsInput | number
|
|
130546
132634
|
currentStepId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -130571,6 +132659,7 @@ export namespace Prisma {
|
|
|
130571
132659
|
paymentStatus?: string
|
|
130572
132660
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
130573
132661
|
favoritedDate?: Date | string | null
|
|
132662
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
130574
132663
|
user: UserCreateNestedOneWithoutOptInsInput
|
|
130575
132664
|
campaign: CampaignCreateNestedOneWithoutOptInsInput
|
|
130576
132665
|
currentStep?: CampaignStepCreateNestedOneWithoutCurrentOptInsInput
|
|
@@ -130602,6 +132691,7 @@ export namespace Prisma {
|
|
|
130602
132691
|
paymentStatus?: string
|
|
130603
132692
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
130604
132693
|
favoritedDate?: Date | string | null
|
|
132694
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
130605
132695
|
userId: number
|
|
130606
132696
|
campaignId: number
|
|
130607
132697
|
currentStepId?: number | null
|
|
@@ -130690,6 +132780,7 @@ export namespace Prisma {
|
|
|
130690
132780
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
130691
132781
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
130692
132782
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
132783
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
130693
132784
|
user?: UserUpdateOneRequiredWithoutOptInsNestedInput
|
|
130694
132785
|
campaign?: CampaignUpdateOneRequiredWithoutOptInsNestedInput
|
|
130695
132786
|
currentStep?: CampaignStepUpdateOneWithoutCurrentOptInsNestedInput
|
|
@@ -130721,6 +132812,7 @@ export namespace Prisma {
|
|
|
130721
132812
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
130722
132813
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
130723
132814
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
132815
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
130724
132816
|
userId?: IntFieldUpdateOperationsInput | number
|
|
130725
132817
|
campaignId?: IntFieldUpdateOperationsInput | number
|
|
130726
132818
|
currentStepId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -130830,6 +132922,9 @@ export namespace Prisma {
|
|
|
130830
132922
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
130831
132923
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
130832
132924
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
132925
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
132926
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
132927
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
130833
132928
|
}
|
|
130834
132929
|
|
|
130835
132930
|
export type UserUncheckedCreateWithoutSocialPostsInput = {
|
|
@@ -130873,6 +132968,9 @@ export namespace Prisma {
|
|
|
130873
132968
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
130874
132969
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
130875
132970
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
132971
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
132972
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
132973
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
130876
132974
|
}
|
|
130877
132975
|
|
|
130878
132976
|
export type UserCreateOrConnectWithoutSocialPostsInput = {
|
|
@@ -131096,6 +133194,9 @@ export namespace Prisma {
|
|
|
131096
133194
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
131097
133195
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
131098
133196
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
133197
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
133198
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
133199
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
131099
133200
|
}
|
|
131100
133201
|
|
|
131101
133202
|
export type UserUncheckedUpdateWithoutSocialPostsInput = {
|
|
@@ -131139,6 +133240,9 @@ export namespace Prisma {
|
|
|
131139
133240
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
131140
133241
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
131141
133242
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
133243
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
133244
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
133245
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
131142
133246
|
}
|
|
131143
133247
|
|
|
131144
133248
|
export type CampaignUpsertWithoutSocialPostsInput = {
|
|
@@ -131643,6 +133747,9 @@ export namespace Prisma {
|
|
|
131643
133747
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
131644
133748
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
131645
133749
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
133750
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
133751
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
133752
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
131646
133753
|
}
|
|
131647
133754
|
|
|
131648
133755
|
export type UserUncheckedCreateWithoutPaymentTransactionsInput = {
|
|
@@ -131686,6 +133793,9 @@ export namespace Prisma {
|
|
|
131686
133793
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
131687
133794
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
131688
133795
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
133796
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
133797
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
133798
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
131689
133799
|
}
|
|
131690
133800
|
|
|
131691
133801
|
export type UserCreateOrConnectWithoutPaymentTransactionsInput = {
|
|
@@ -131896,6 +134006,9 @@ export namespace Prisma {
|
|
|
131896
134006
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
131897
134007
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
131898
134008
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
134009
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
134010
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
134011
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
131899
134012
|
}
|
|
131900
134013
|
|
|
131901
134014
|
export type UserUncheckedUpdateWithoutPaymentTransactionsInput = {
|
|
@@ -131939,6 +134052,9 @@ export namespace Prisma {
|
|
|
131939
134052
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
131940
134053
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
131941
134054
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
134055
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
134056
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
134057
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
131942
134058
|
}
|
|
131943
134059
|
|
|
131944
134060
|
export type PaymentTransactionUpsertWithoutNextTransactionInput = {
|
|
@@ -132032,6 +134148,7 @@ export namespace Prisma {
|
|
|
132032
134148
|
paymentStatus?: string
|
|
132033
134149
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
132034
134150
|
favoritedDate?: Date | string | null
|
|
134151
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
132035
134152
|
user: UserCreateNestedOneWithoutOptInsInput
|
|
132036
134153
|
campaign: CampaignCreateNestedOneWithoutOptInsInput
|
|
132037
134154
|
currentStep?: CampaignStepCreateNestedOneWithoutCurrentOptInsInput
|
|
@@ -132063,6 +134180,7 @@ export namespace Prisma {
|
|
|
132063
134180
|
paymentStatus?: string
|
|
132064
134181
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
132065
134182
|
favoritedDate?: Date | string | null
|
|
134183
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
132066
134184
|
userId: number
|
|
132067
134185
|
campaignId: number
|
|
132068
134186
|
currentStepId?: number | null
|
|
@@ -132255,6 +134373,7 @@ export namespace Prisma {
|
|
|
132255
134373
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
132256
134374
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
132257
134375
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
134376
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
132258
134377
|
user?: UserUpdateOneRequiredWithoutOptInsNestedInput
|
|
132259
134378
|
campaign?: CampaignUpdateOneRequiredWithoutOptInsNestedInput
|
|
132260
134379
|
currentStep?: CampaignStepUpdateOneWithoutCurrentOptInsNestedInput
|
|
@@ -132286,6 +134405,7 @@ export namespace Prisma {
|
|
|
132286
134405
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
132287
134406
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
132288
134407
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
134408
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
132289
134409
|
userId?: IntFieldUpdateOperationsInput | number
|
|
132290
134410
|
campaignId?: IntFieldUpdateOperationsInput | number
|
|
132291
134411
|
currentStepId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -132767,6 +134887,9 @@ export namespace Prisma {
|
|
|
132767
134887
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
132768
134888
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
132769
134889
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
134890
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
134891
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
134892
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
132770
134893
|
}
|
|
132771
134894
|
|
|
132772
134895
|
export type UserUncheckedCreateWithoutAffiliateLinksInput = {
|
|
@@ -132810,6 +134933,9 @@ export namespace Prisma {
|
|
|
132810
134933
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
132811
134934
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
132812
134935
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
134936
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
134937
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
134938
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
132813
134939
|
}
|
|
132814
134940
|
|
|
132815
134941
|
export type UserCreateOrConnectWithoutAffiliateLinksInput = {
|
|
@@ -132910,6 +135036,9 @@ export namespace Prisma {
|
|
|
132910
135036
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
132911
135037
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
132912
135038
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
135039
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
135040
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
135041
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
132913
135042
|
}
|
|
132914
135043
|
|
|
132915
135044
|
export type UserUncheckedUpdateWithoutAffiliateLinksInput = {
|
|
@@ -132953,6 +135082,9 @@ export namespace Prisma {
|
|
|
132953
135082
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
132954
135083
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
132955
135084
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
135085
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
135086
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
135087
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
132956
135088
|
}
|
|
132957
135089
|
|
|
132958
135090
|
export type BrandAffiliateLinkUpsertWithoutAffiliateLinksInput = {
|
|
@@ -133002,6 +135134,7 @@ export namespace Prisma {
|
|
|
133002
135134
|
paymentStatus?: string
|
|
133003
135135
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
133004
135136
|
favoritedDate?: Date | string | null
|
|
135137
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
133005
135138
|
user: UserCreateNestedOneWithoutOptInsInput
|
|
133006
135139
|
campaign: CampaignCreateNestedOneWithoutOptInsInput
|
|
133007
135140
|
currentStep?: CampaignStepCreateNestedOneWithoutCurrentOptInsInput
|
|
@@ -133033,6 +135166,7 @@ export namespace Prisma {
|
|
|
133033
135166
|
paymentStatus?: string
|
|
133034
135167
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
133035
135168
|
favoritedDate?: Date | string | null
|
|
135169
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
133036
135170
|
userId: number
|
|
133037
135171
|
campaignId: number
|
|
133038
135172
|
currentStepId?: number | null
|
|
@@ -133132,6 +135266,7 @@ export namespace Prisma {
|
|
|
133132
135266
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
133133
135267
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
133134
135268
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
135269
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
133135
135270
|
user?: UserUpdateOneRequiredWithoutOptInsNestedInput
|
|
133136
135271
|
campaign?: CampaignUpdateOneRequiredWithoutOptInsNestedInput
|
|
133137
135272
|
currentStep?: CampaignStepUpdateOneWithoutCurrentOptInsNestedInput
|
|
@@ -133163,6 +135298,7 @@ export namespace Prisma {
|
|
|
133163
135298
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
133164
135299
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
133165
135300
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
135301
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
133166
135302
|
userId?: IntFieldUpdateOperationsInput | number
|
|
133167
135303
|
campaignId?: IntFieldUpdateOperationsInput | number
|
|
133168
135304
|
currentStepId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -133751,6 +135887,7 @@ export namespace Prisma {
|
|
|
133751
135887
|
paymentStatus?: string
|
|
133752
135888
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
133753
135889
|
favoritedDate?: Date | string | null
|
|
135890
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
133754
135891
|
user: UserCreateNestedOneWithoutOptInsInput
|
|
133755
135892
|
campaign: CampaignCreateNestedOneWithoutOptInsInput
|
|
133756
135893
|
currentStep?: CampaignStepCreateNestedOneWithoutCurrentOptInsInput
|
|
@@ -133782,6 +135919,7 @@ export namespace Prisma {
|
|
|
133782
135919
|
paymentStatus?: string
|
|
133783
135920
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
133784
135921
|
favoritedDate?: Date | string | null
|
|
135922
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
133785
135923
|
userId: number
|
|
133786
135924
|
campaignId: number
|
|
133787
135925
|
currentStepId?: number | null
|
|
@@ -134122,6 +136260,7 @@ export namespace Prisma {
|
|
|
134122
136260
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
134123
136261
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
134124
136262
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
136263
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
134125
136264
|
user?: UserUpdateOneRequiredWithoutOptInsNestedInput
|
|
134126
136265
|
campaign?: CampaignUpdateOneRequiredWithoutOptInsNestedInput
|
|
134127
136266
|
currentStep?: CampaignStepUpdateOneWithoutCurrentOptInsNestedInput
|
|
@@ -134153,6 +136292,7 @@ export namespace Prisma {
|
|
|
134153
136292
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
134154
136293
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
134155
136294
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
136295
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
134156
136296
|
userId?: IntFieldUpdateOperationsInput | number
|
|
134157
136297
|
campaignId?: IntFieldUpdateOperationsInput | number
|
|
134158
136298
|
currentStepId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -135178,6 +137318,9 @@ export namespace Prisma {
|
|
|
135178
137318
|
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
135179
137319
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
135180
137320
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
137321
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
137322
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
137323
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
135181
137324
|
}
|
|
135182
137325
|
|
|
135183
137326
|
export type UserUncheckedCreateWithoutSocialProfilesInput = {
|
|
@@ -135221,6 +137364,9 @@ export namespace Prisma {
|
|
|
135221
137364
|
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
135222
137365
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
135223
137366
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
137367
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
137368
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
137369
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
135224
137370
|
}
|
|
135225
137371
|
|
|
135226
137372
|
export type UserCreateOrConnectWithoutSocialProfilesInput = {
|
|
@@ -135311,6 +137457,9 @@ export namespace Prisma {
|
|
|
135311
137457
|
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
135312
137458
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
135313
137459
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
137460
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
137461
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
137462
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
135314
137463
|
}
|
|
135315
137464
|
|
|
135316
137465
|
export type UserUncheckedUpdateWithoutSocialProfilesInput = {
|
|
@@ -135354,6 +137503,9 @@ export namespace Prisma {
|
|
|
135354
137503
|
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
135355
137504
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
135356
137505
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
137506
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
137507
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
137508
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
135357
137509
|
}
|
|
135358
137510
|
|
|
135359
137511
|
export type BrandCreateWithoutMessageTemplateInput = {
|
|
@@ -136517,6 +138669,9 @@ export namespace Prisma {
|
|
|
136517
138669
|
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
136518
138670
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
136519
138671
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
138672
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
138673
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
138674
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
136520
138675
|
}
|
|
136521
138676
|
|
|
136522
138677
|
export type UserUncheckedCreateWithoutRakutenActivityInput = {
|
|
@@ -136560,6 +138715,9 @@ export namespace Prisma {
|
|
|
136560
138715
|
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
136561
138716
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
136562
138717
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
138718
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
138719
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
138720
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
136563
138721
|
}
|
|
136564
138722
|
|
|
136565
138723
|
export type UserCreateOrConnectWithoutRakutenActivityInput = {
|
|
@@ -136618,6 +138776,9 @@ export namespace Prisma {
|
|
|
136618
138776
|
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
136619
138777
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
136620
138778
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
138779
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
138780
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
138781
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
136621
138782
|
}
|
|
136622
138783
|
|
|
136623
138784
|
export type UserUncheckedUpdateWithoutRakutenActivityInput = {
|
|
@@ -136661,6 +138822,9 @@ export namespace Prisma {
|
|
|
136661
138822
|
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
136662
138823
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
136663
138824
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
138825
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
138826
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
138827
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
136664
138828
|
}
|
|
136665
138829
|
|
|
136666
138830
|
export type UserCreateWithoutImpactRadiusEventsInput = {
|
|
@@ -136703,6 +138867,9 @@ export namespace Prisma {
|
|
|
136703
138867
|
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
136704
138868
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
136705
138869
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
138870
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
138871
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
138872
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
136706
138873
|
}
|
|
136707
138874
|
|
|
136708
138875
|
export type UserUncheckedCreateWithoutImpactRadiusEventsInput = {
|
|
@@ -136746,6 +138913,9 @@ export namespace Prisma {
|
|
|
136746
138913
|
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
136747
138914
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
136748
138915
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
138916
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
138917
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
138918
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
136749
138919
|
}
|
|
136750
138920
|
|
|
136751
138921
|
export type UserCreateOrConnectWithoutImpactRadiusEventsInput = {
|
|
@@ -136850,6 +139020,7 @@ export namespace Prisma {
|
|
|
136850
139020
|
paymentStatus?: string
|
|
136851
139021
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
136852
139022
|
favoritedDate?: Date | string | null
|
|
139023
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
136853
139024
|
user: UserCreateNestedOneWithoutOptInsInput
|
|
136854
139025
|
campaign: CampaignCreateNestedOneWithoutOptInsInput
|
|
136855
139026
|
currentStep?: CampaignStepCreateNestedOneWithoutCurrentOptInsInput
|
|
@@ -136881,6 +139052,7 @@ export namespace Prisma {
|
|
|
136881
139052
|
paymentStatus?: string
|
|
136882
139053
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
136883
139054
|
favoritedDate?: Date | string | null
|
|
139055
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
136884
139056
|
userId: number
|
|
136885
139057
|
campaignId: number
|
|
136886
139058
|
currentStepId?: number | null
|
|
@@ -136952,6 +139124,9 @@ export namespace Prisma {
|
|
|
136952
139124
|
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
136953
139125
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
136954
139126
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
139127
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
139128
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
139129
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
136955
139130
|
}
|
|
136956
139131
|
|
|
136957
139132
|
export type UserUncheckedUpdateWithoutImpactRadiusEventsInput = {
|
|
@@ -136995,6 +139170,9 @@ export namespace Prisma {
|
|
|
136995
139170
|
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
136996
139171
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
136997
139172
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
139173
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
139174
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
139175
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
136998
139176
|
}
|
|
136999
139177
|
|
|
137000
139178
|
export type BrandUpsertWithoutImpactRadiusEventsInput = {
|
|
@@ -137111,6 +139289,7 @@ export namespace Prisma {
|
|
|
137111
139289
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
137112
139290
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
137113
139291
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
139292
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
137114
139293
|
user?: UserUpdateOneRequiredWithoutOptInsNestedInput
|
|
137115
139294
|
campaign?: CampaignUpdateOneRequiredWithoutOptInsNestedInput
|
|
137116
139295
|
currentStep?: CampaignStepUpdateOneWithoutCurrentOptInsNestedInput
|
|
@@ -137142,6 +139321,7 @@ export namespace Prisma {
|
|
|
137142
139321
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
137143
139322
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
137144
139323
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
139324
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
137145
139325
|
userId?: IntFieldUpdateOperationsInput | number
|
|
137146
139326
|
campaignId?: IntFieldUpdateOperationsInput | number
|
|
137147
139327
|
currentStepId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -137172,6 +139352,7 @@ export namespace Prisma {
|
|
|
137172
139352
|
paymentStatus?: string
|
|
137173
139353
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
137174
139354
|
favoritedDate?: Date | string | null
|
|
139355
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
137175
139356
|
user: UserCreateNestedOneWithoutOptInsInput
|
|
137176
139357
|
campaign: CampaignCreateNestedOneWithoutOptInsInput
|
|
137177
139358
|
currentStep?: CampaignStepCreateNestedOneWithoutCurrentOptInsInput
|
|
@@ -137203,6 +139384,7 @@ export namespace Prisma {
|
|
|
137203
139384
|
paymentStatus?: string
|
|
137204
139385
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
137205
139386
|
favoritedDate?: Date | string | null
|
|
139387
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
137206
139388
|
userId: number
|
|
137207
139389
|
campaignId: number
|
|
137208
139390
|
currentStepId?: number | null
|
|
@@ -137249,6 +139431,7 @@ export namespace Prisma {
|
|
|
137249
139431
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
137250
139432
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
137251
139433
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
139434
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
137252
139435
|
user?: UserUpdateOneRequiredWithoutOptInsNestedInput
|
|
137253
139436
|
campaign?: CampaignUpdateOneRequiredWithoutOptInsNestedInput
|
|
137254
139437
|
currentStep?: CampaignStepUpdateOneWithoutCurrentOptInsNestedInput
|
|
@@ -137280,6 +139463,7 @@ export namespace Prisma {
|
|
|
137280
139463
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
137281
139464
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
137282
139465
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
139466
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
137283
139467
|
userId?: IntFieldUpdateOperationsInput | number
|
|
137284
139468
|
campaignId?: IntFieldUpdateOperationsInput | number
|
|
137285
139469
|
currentStepId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -139591,6 +141775,7 @@ export namespace Prisma {
|
|
|
139591
141775
|
paymentStatus?: string
|
|
139592
141776
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
139593
141777
|
favoritedDate?: Date | string | null
|
|
141778
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
139594
141779
|
user: UserCreateNestedOneWithoutOptInsInput
|
|
139595
141780
|
campaign: CampaignCreateNestedOneWithoutOptInsInput
|
|
139596
141781
|
currentStep?: CampaignStepCreateNestedOneWithoutCurrentOptInsInput
|
|
@@ -139622,6 +141807,7 @@ export namespace Prisma {
|
|
|
139622
141807
|
paymentStatus?: string
|
|
139623
141808
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
139624
141809
|
favoritedDate?: Date | string | null
|
|
141810
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
139625
141811
|
userId: number
|
|
139626
141812
|
campaignId: number
|
|
139627
141813
|
currentStepId?: number | null
|
|
@@ -139691,6 +141877,7 @@ export namespace Prisma {
|
|
|
139691
141877
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
139692
141878
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
139693
141879
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
141880
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
139694
141881
|
user?: UserUpdateOneRequiredWithoutOptInsNestedInput
|
|
139695
141882
|
campaign?: CampaignUpdateOneRequiredWithoutOptInsNestedInput
|
|
139696
141883
|
currentStep?: CampaignStepUpdateOneWithoutCurrentOptInsNestedInput
|
|
@@ -139722,6 +141909,7 @@ export namespace Prisma {
|
|
|
139722
141909
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
139723
141910
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
139724
141911
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
141912
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
139725
141913
|
userId?: IntFieldUpdateOperationsInput | number
|
|
139726
141914
|
campaignId?: IntFieldUpdateOperationsInput | number
|
|
139727
141915
|
currentStepId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -139810,6 +141998,600 @@ export namespace Prisma {
|
|
|
139810
141998
|
optInId?: IntFieldUpdateOperationsInput | number
|
|
139811
141999
|
}
|
|
139812
142000
|
|
|
142001
|
+
export type UserCreateWithoutFlagsAssignedInput = {
|
|
142002
|
+
role: string
|
|
142003
|
+
email?: string | null
|
|
142004
|
+
password?: string | null
|
|
142005
|
+
registered?: Date | string
|
|
142006
|
+
lastLoginDate?: Date | string | null
|
|
142007
|
+
firstName?: string | null
|
|
142008
|
+
lastName?: string | null
|
|
142009
|
+
phone?: string | null
|
|
142010
|
+
phoneCode?: number | null
|
|
142011
|
+
phoneShort?: string | null
|
|
142012
|
+
profilePicUrl?: string | null
|
|
142013
|
+
forgotPasswordKey?: string | null
|
|
142014
|
+
affiliateSlug?: string | null
|
|
142015
|
+
closed?: Date | string | null
|
|
142016
|
+
closedReason?: string | null
|
|
142017
|
+
usercomLastSynced?: Date | string | null
|
|
142018
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
142019
|
+
fullName?: string | null
|
|
142020
|
+
phoneNormalised?: string | null
|
|
142021
|
+
referrer?: UserCreateNestedOneWithoutReferredUsersInput
|
|
142022
|
+
referredUsers?: UserCreateNestedManyWithoutReferrerInput
|
|
142023
|
+
logs?: LogCreateNestedManyWithoutUserInput
|
|
142024
|
+
creatorProfile?: CreatorProfileCreateNestedOneWithoutUserInput
|
|
142025
|
+
instagramProfile?: InstagramProfileCreateNestedOneWithoutUserInput
|
|
142026
|
+
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutUserInput
|
|
142027
|
+
tiktokProfile?: TiktokProfileCreateNestedOneWithoutUserInput
|
|
142028
|
+
facebookProfile?: FacebookProfileCreateNestedOneWithoutUserInput
|
|
142029
|
+
twitterProfile?: TwitterProfileCreateNestedOneWithoutUserInput
|
|
142030
|
+
twitchProfile?: TwitchProfileCreateNestedOneWithoutUserInput
|
|
142031
|
+
brandProfiles?: BrandUserProfileCreateNestedManyWithoutUserInput
|
|
142032
|
+
optIns?: OptInCreateNestedManyWithoutUserInput
|
|
142033
|
+
assignedBrands?: BrandCreateNestedManyWithoutDedicatedSpecialistInput
|
|
142034
|
+
messages?: MessageCreateNestedManyWithoutUserInput
|
|
142035
|
+
socialPosts?: SocialPostCreateNestedManyWithoutUserInput
|
|
142036
|
+
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutCreatorInput
|
|
142037
|
+
affiliateLinks?: AffiliateLinkCreateNestedManyWithoutAffiliateInput
|
|
142038
|
+
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
142039
|
+
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
142040
|
+
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
142041
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
142042
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
142043
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
142044
|
+
}
|
|
142045
|
+
|
|
142046
|
+
export type UserUncheckedCreateWithoutFlagsAssignedInput = {
|
|
142047
|
+
id?: number
|
|
142048
|
+
role: string
|
|
142049
|
+
email?: string | null
|
|
142050
|
+
password?: string | null
|
|
142051
|
+
registered?: Date | string
|
|
142052
|
+
lastLoginDate?: Date | string | null
|
|
142053
|
+
firstName?: string | null
|
|
142054
|
+
lastName?: string | null
|
|
142055
|
+
phone?: string | null
|
|
142056
|
+
phoneCode?: number | null
|
|
142057
|
+
phoneShort?: string | null
|
|
142058
|
+
profilePicUrl?: string | null
|
|
142059
|
+
forgotPasswordKey?: string | null
|
|
142060
|
+
affiliateSlug?: string | null
|
|
142061
|
+
closed?: Date | string | null
|
|
142062
|
+
closedReason?: string | null
|
|
142063
|
+
usercomLastSynced?: Date | string | null
|
|
142064
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
142065
|
+
referrerId?: number | null
|
|
142066
|
+
fullName?: string | null
|
|
142067
|
+
phoneNormalised?: string | null
|
|
142068
|
+
referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
|
|
142069
|
+
logs?: LogUncheckedCreateNestedManyWithoutUserInput
|
|
142070
|
+
creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142071
|
+
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142072
|
+
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142073
|
+
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142074
|
+
facebookProfile?: FacebookProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142075
|
+
twitterProfile?: TwitterProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142076
|
+
twitchProfile?: TwitchProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142077
|
+
brandProfiles?: BrandUserProfileUncheckedCreateNestedManyWithoutUserInput
|
|
142078
|
+
optIns?: OptInUncheckedCreateNestedManyWithoutUserInput
|
|
142079
|
+
assignedBrands?: BrandUncheckedCreateNestedManyWithoutDedicatedSpecialistInput
|
|
142080
|
+
messages?: MessageUncheckedCreateNestedManyWithoutUserInput
|
|
142081
|
+
socialPosts?: SocialPostUncheckedCreateNestedManyWithoutUserInput
|
|
142082
|
+
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutCreatorInput
|
|
142083
|
+
affiliateLinks?: AffiliateLinkUncheckedCreateNestedManyWithoutAffiliateInput
|
|
142084
|
+
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
142085
|
+
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
142086
|
+
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
142087
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
142088
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
142089
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
142090
|
+
}
|
|
142091
|
+
|
|
142092
|
+
export type UserCreateOrConnectWithoutFlagsAssignedInput = {
|
|
142093
|
+
where: UserWhereUniqueInput
|
|
142094
|
+
create: XOR<UserCreateWithoutFlagsAssignedInput, UserUncheckedCreateWithoutFlagsAssignedInput>
|
|
142095
|
+
}
|
|
142096
|
+
|
|
142097
|
+
export type UserCreateWithoutFlagsCreatedInput = {
|
|
142098
|
+
role: string
|
|
142099
|
+
email?: string | null
|
|
142100
|
+
password?: string | null
|
|
142101
|
+
registered?: Date | string
|
|
142102
|
+
lastLoginDate?: Date | string | null
|
|
142103
|
+
firstName?: string | null
|
|
142104
|
+
lastName?: string | null
|
|
142105
|
+
phone?: string | null
|
|
142106
|
+
phoneCode?: number | null
|
|
142107
|
+
phoneShort?: string | null
|
|
142108
|
+
profilePicUrl?: string | null
|
|
142109
|
+
forgotPasswordKey?: string | null
|
|
142110
|
+
affiliateSlug?: string | null
|
|
142111
|
+
closed?: Date | string | null
|
|
142112
|
+
closedReason?: string | null
|
|
142113
|
+
usercomLastSynced?: Date | string | null
|
|
142114
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
142115
|
+
fullName?: string | null
|
|
142116
|
+
phoneNormalised?: string | null
|
|
142117
|
+
referrer?: UserCreateNestedOneWithoutReferredUsersInput
|
|
142118
|
+
referredUsers?: UserCreateNestedManyWithoutReferrerInput
|
|
142119
|
+
logs?: LogCreateNestedManyWithoutUserInput
|
|
142120
|
+
creatorProfile?: CreatorProfileCreateNestedOneWithoutUserInput
|
|
142121
|
+
instagramProfile?: InstagramProfileCreateNestedOneWithoutUserInput
|
|
142122
|
+
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutUserInput
|
|
142123
|
+
tiktokProfile?: TiktokProfileCreateNestedOneWithoutUserInput
|
|
142124
|
+
facebookProfile?: FacebookProfileCreateNestedOneWithoutUserInput
|
|
142125
|
+
twitterProfile?: TwitterProfileCreateNestedOneWithoutUserInput
|
|
142126
|
+
twitchProfile?: TwitchProfileCreateNestedOneWithoutUserInput
|
|
142127
|
+
brandProfiles?: BrandUserProfileCreateNestedManyWithoutUserInput
|
|
142128
|
+
optIns?: OptInCreateNestedManyWithoutUserInput
|
|
142129
|
+
assignedBrands?: BrandCreateNestedManyWithoutDedicatedSpecialistInput
|
|
142130
|
+
messages?: MessageCreateNestedManyWithoutUserInput
|
|
142131
|
+
socialPosts?: SocialPostCreateNestedManyWithoutUserInput
|
|
142132
|
+
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutCreatorInput
|
|
142133
|
+
affiliateLinks?: AffiliateLinkCreateNestedManyWithoutAffiliateInput
|
|
142134
|
+
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
142135
|
+
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
142136
|
+
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
142137
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
142138
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
142139
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
142140
|
+
}
|
|
142141
|
+
|
|
142142
|
+
export type UserUncheckedCreateWithoutFlagsCreatedInput = {
|
|
142143
|
+
id?: number
|
|
142144
|
+
role: string
|
|
142145
|
+
email?: string | null
|
|
142146
|
+
password?: string | null
|
|
142147
|
+
registered?: Date | string
|
|
142148
|
+
lastLoginDate?: Date | string | null
|
|
142149
|
+
firstName?: string | null
|
|
142150
|
+
lastName?: string | null
|
|
142151
|
+
phone?: string | null
|
|
142152
|
+
phoneCode?: number | null
|
|
142153
|
+
phoneShort?: string | null
|
|
142154
|
+
profilePicUrl?: string | null
|
|
142155
|
+
forgotPasswordKey?: string | null
|
|
142156
|
+
affiliateSlug?: string | null
|
|
142157
|
+
closed?: Date | string | null
|
|
142158
|
+
closedReason?: string | null
|
|
142159
|
+
usercomLastSynced?: Date | string | null
|
|
142160
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
142161
|
+
referrerId?: number | null
|
|
142162
|
+
fullName?: string | null
|
|
142163
|
+
phoneNormalised?: string | null
|
|
142164
|
+
referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
|
|
142165
|
+
logs?: LogUncheckedCreateNestedManyWithoutUserInput
|
|
142166
|
+
creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142167
|
+
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142168
|
+
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142169
|
+
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142170
|
+
facebookProfile?: FacebookProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142171
|
+
twitterProfile?: TwitterProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142172
|
+
twitchProfile?: TwitchProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142173
|
+
brandProfiles?: BrandUserProfileUncheckedCreateNestedManyWithoutUserInput
|
|
142174
|
+
optIns?: OptInUncheckedCreateNestedManyWithoutUserInput
|
|
142175
|
+
assignedBrands?: BrandUncheckedCreateNestedManyWithoutDedicatedSpecialistInput
|
|
142176
|
+
messages?: MessageUncheckedCreateNestedManyWithoutUserInput
|
|
142177
|
+
socialPosts?: SocialPostUncheckedCreateNestedManyWithoutUserInput
|
|
142178
|
+
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutCreatorInput
|
|
142179
|
+
affiliateLinks?: AffiliateLinkUncheckedCreateNestedManyWithoutAffiliateInput
|
|
142180
|
+
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
142181
|
+
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
142182
|
+
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
142183
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
142184
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
142185
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
142186
|
+
}
|
|
142187
|
+
|
|
142188
|
+
export type UserCreateOrConnectWithoutFlagsCreatedInput = {
|
|
142189
|
+
where: UserWhereUniqueInput
|
|
142190
|
+
create: XOR<UserCreateWithoutFlagsCreatedInput, UserUncheckedCreateWithoutFlagsCreatedInput>
|
|
142191
|
+
}
|
|
142192
|
+
|
|
142193
|
+
export type UserCreateWithoutFlagsEditedInput = {
|
|
142194
|
+
role: string
|
|
142195
|
+
email?: string | null
|
|
142196
|
+
password?: string | null
|
|
142197
|
+
registered?: Date | string
|
|
142198
|
+
lastLoginDate?: Date | string | null
|
|
142199
|
+
firstName?: string | null
|
|
142200
|
+
lastName?: string | null
|
|
142201
|
+
phone?: string | null
|
|
142202
|
+
phoneCode?: number | null
|
|
142203
|
+
phoneShort?: string | null
|
|
142204
|
+
profilePicUrl?: string | null
|
|
142205
|
+
forgotPasswordKey?: string | null
|
|
142206
|
+
affiliateSlug?: string | null
|
|
142207
|
+
closed?: Date | string | null
|
|
142208
|
+
closedReason?: string | null
|
|
142209
|
+
usercomLastSynced?: Date | string | null
|
|
142210
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
142211
|
+
fullName?: string | null
|
|
142212
|
+
phoneNormalised?: string | null
|
|
142213
|
+
referrer?: UserCreateNestedOneWithoutReferredUsersInput
|
|
142214
|
+
referredUsers?: UserCreateNestedManyWithoutReferrerInput
|
|
142215
|
+
logs?: LogCreateNestedManyWithoutUserInput
|
|
142216
|
+
creatorProfile?: CreatorProfileCreateNestedOneWithoutUserInput
|
|
142217
|
+
instagramProfile?: InstagramProfileCreateNestedOneWithoutUserInput
|
|
142218
|
+
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutUserInput
|
|
142219
|
+
tiktokProfile?: TiktokProfileCreateNestedOneWithoutUserInput
|
|
142220
|
+
facebookProfile?: FacebookProfileCreateNestedOneWithoutUserInput
|
|
142221
|
+
twitterProfile?: TwitterProfileCreateNestedOneWithoutUserInput
|
|
142222
|
+
twitchProfile?: TwitchProfileCreateNestedOneWithoutUserInput
|
|
142223
|
+
brandProfiles?: BrandUserProfileCreateNestedManyWithoutUserInput
|
|
142224
|
+
optIns?: OptInCreateNestedManyWithoutUserInput
|
|
142225
|
+
assignedBrands?: BrandCreateNestedManyWithoutDedicatedSpecialistInput
|
|
142226
|
+
messages?: MessageCreateNestedManyWithoutUserInput
|
|
142227
|
+
socialPosts?: SocialPostCreateNestedManyWithoutUserInput
|
|
142228
|
+
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutCreatorInput
|
|
142229
|
+
affiliateLinks?: AffiliateLinkCreateNestedManyWithoutAffiliateInput
|
|
142230
|
+
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
142231
|
+
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
142232
|
+
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
142233
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
142234
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
142235
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
142236
|
+
}
|
|
142237
|
+
|
|
142238
|
+
export type UserUncheckedCreateWithoutFlagsEditedInput = {
|
|
142239
|
+
id?: number
|
|
142240
|
+
role: string
|
|
142241
|
+
email?: string | null
|
|
142242
|
+
password?: string | null
|
|
142243
|
+
registered?: Date | string
|
|
142244
|
+
lastLoginDate?: Date | string | null
|
|
142245
|
+
firstName?: string | null
|
|
142246
|
+
lastName?: string | null
|
|
142247
|
+
phone?: string | null
|
|
142248
|
+
phoneCode?: number | null
|
|
142249
|
+
phoneShort?: string | null
|
|
142250
|
+
profilePicUrl?: string | null
|
|
142251
|
+
forgotPasswordKey?: string | null
|
|
142252
|
+
affiliateSlug?: string | null
|
|
142253
|
+
closed?: Date | string | null
|
|
142254
|
+
closedReason?: string | null
|
|
142255
|
+
usercomLastSynced?: Date | string | null
|
|
142256
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
142257
|
+
referrerId?: number | null
|
|
142258
|
+
fullName?: string | null
|
|
142259
|
+
phoneNormalised?: string | null
|
|
142260
|
+
referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
|
|
142261
|
+
logs?: LogUncheckedCreateNestedManyWithoutUserInput
|
|
142262
|
+
creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142263
|
+
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142264
|
+
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142265
|
+
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142266
|
+
facebookProfile?: FacebookProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142267
|
+
twitterProfile?: TwitterProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142268
|
+
twitchProfile?: TwitchProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142269
|
+
brandProfiles?: BrandUserProfileUncheckedCreateNestedManyWithoutUserInput
|
|
142270
|
+
optIns?: OptInUncheckedCreateNestedManyWithoutUserInput
|
|
142271
|
+
assignedBrands?: BrandUncheckedCreateNestedManyWithoutDedicatedSpecialistInput
|
|
142272
|
+
messages?: MessageUncheckedCreateNestedManyWithoutUserInput
|
|
142273
|
+
socialPosts?: SocialPostUncheckedCreateNestedManyWithoutUserInput
|
|
142274
|
+
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutCreatorInput
|
|
142275
|
+
affiliateLinks?: AffiliateLinkUncheckedCreateNestedManyWithoutAffiliateInput
|
|
142276
|
+
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
142277
|
+
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
142278
|
+
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
142279
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
142280
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
142281
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
142282
|
+
}
|
|
142283
|
+
|
|
142284
|
+
export type UserCreateOrConnectWithoutFlagsEditedInput = {
|
|
142285
|
+
where: UserWhereUniqueInput
|
|
142286
|
+
create: XOR<UserCreateWithoutFlagsEditedInput, UserUncheckedCreateWithoutFlagsEditedInput>
|
|
142287
|
+
}
|
|
142288
|
+
|
|
142289
|
+
export type UserUpsertWithoutFlagsAssignedInput = {
|
|
142290
|
+
update: XOR<UserUpdateWithoutFlagsAssignedInput, UserUncheckedUpdateWithoutFlagsAssignedInput>
|
|
142291
|
+
create: XOR<UserCreateWithoutFlagsAssignedInput, UserUncheckedCreateWithoutFlagsAssignedInput>
|
|
142292
|
+
where?: UserWhereInput
|
|
142293
|
+
}
|
|
142294
|
+
|
|
142295
|
+
export type UserUpdateToOneWithWhereWithoutFlagsAssignedInput = {
|
|
142296
|
+
where?: UserWhereInput
|
|
142297
|
+
data: XOR<UserUpdateWithoutFlagsAssignedInput, UserUncheckedUpdateWithoutFlagsAssignedInput>
|
|
142298
|
+
}
|
|
142299
|
+
|
|
142300
|
+
export type UserUpdateWithoutFlagsAssignedInput = {
|
|
142301
|
+
role?: StringFieldUpdateOperationsInput | string
|
|
142302
|
+
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142303
|
+
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142304
|
+
registered?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
142305
|
+
lastLoginDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142306
|
+
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142307
|
+
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142308
|
+
phone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142309
|
+
phoneCode?: NullableIntFieldUpdateOperationsInput | number | null
|
|
142310
|
+
phoneShort?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142311
|
+
profilePicUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142312
|
+
forgotPasswordKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142313
|
+
affiliateSlug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142314
|
+
closed?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142315
|
+
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142316
|
+
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142317
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
142318
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142319
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142320
|
+
referrer?: UserUpdateOneWithoutReferredUsersNestedInput
|
|
142321
|
+
referredUsers?: UserUpdateManyWithoutReferrerNestedInput
|
|
142322
|
+
logs?: LogUpdateManyWithoutUserNestedInput
|
|
142323
|
+
creatorProfile?: CreatorProfileUpdateOneWithoutUserNestedInput
|
|
142324
|
+
instagramProfile?: InstagramProfileUpdateOneWithoutUserNestedInput
|
|
142325
|
+
youtubeProfile?: YoutubeProfileUpdateOneWithoutUserNestedInput
|
|
142326
|
+
tiktokProfile?: TiktokProfileUpdateOneWithoutUserNestedInput
|
|
142327
|
+
facebookProfile?: FacebookProfileUpdateOneWithoutUserNestedInput
|
|
142328
|
+
twitterProfile?: TwitterProfileUpdateOneWithoutUserNestedInput
|
|
142329
|
+
twitchProfile?: TwitchProfileUpdateOneWithoutUserNestedInput
|
|
142330
|
+
brandProfiles?: BrandUserProfileUpdateManyWithoutUserNestedInput
|
|
142331
|
+
optIns?: OptInUpdateManyWithoutUserNestedInput
|
|
142332
|
+
assignedBrands?: BrandUpdateManyWithoutDedicatedSpecialistNestedInput
|
|
142333
|
+
messages?: MessageUpdateManyWithoutUserNestedInput
|
|
142334
|
+
socialPosts?: SocialPostUpdateManyWithoutUserNestedInput
|
|
142335
|
+
paymentTransactions?: PaymentTransactionUpdateManyWithoutCreatorNestedInput
|
|
142336
|
+
affiliateLinks?: AffiliateLinkUpdateManyWithoutAffiliateNestedInput
|
|
142337
|
+
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
142338
|
+
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
142339
|
+
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
142340
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
142341
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
142342
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
142343
|
+
}
|
|
142344
|
+
|
|
142345
|
+
export type UserUncheckedUpdateWithoutFlagsAssignedInput = {
|
|
142346
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
142347
|
+
role?: StringFieldUpdateOperationsInput | string
|
|
142348
|
+
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142349
|
+
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142350
|
+
registered?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
142351
|
+
lastLoginDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142352
|
+
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142353
|
+
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142354
|
+
phone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142355
|
+
phoneCode?: NullableIntFieldUpdateOperationsInput | number | null
|
|
142356
|
+
phoneShort?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142357
|
+
profilePicUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142358
|
+
forgotPasswordKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142359
|
+
affiliateSlug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142360
|
+
closed?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142361
|
+
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142362
|
+
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142363
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
142364
|
+
referrerId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
142365
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142366
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142367
|
+
referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
|
|
142368
|
+
logs?: LogUncheckedUpdateManyWithoutUserNestedInput
|
|
142369
|
+
creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142370
|
+
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142371
|
+
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142372
|
+
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142373
|
+
facebookProfile?: FacebookProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142374
|
+
twitterProfile?: TwitterProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142375
|
+
twitchProfile?: TwitchProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142376
|
+
brandProfiles?: BrandUserProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
142377
|
+
optIns?: OptInUncheckedUpdateManyWithoutUserNestedInput
|
|
142378
|
+
assignedBrands?: BrandUncheckedUpdateManyWithoutDedicatedSpecialistNestedInput
|
|
142379
|
+
messages?: MessageUncheckedUpdateManyWithoutUserNestedInput
|
|
142380
|
+
socialPosts?: SocialPostUncheckedUpdateManyWithoutUserNestedInput
|
|
142381
|
+
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutCreatorNestedInput
|
|
142382
|
+
affiliateLinks?: AffiliateLinkUncheckedUpdateManyWithoutAffiliateNestedInput
|
|
142383
|
+
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
142384
|
+
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
142385
|
+
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
142386
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
142387
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
142388
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
142389
|
+
}
|
|
142390
|
+
|
|
142391
|
+
export type UserUpsertWithoutFlagsCreatedInput = {
|
|
142392
|
+
update: XOR<UserUpdateWithoutFlagsCreatedInput, UserUncheckedUpdateWithoutFlagsCreatedInput>
|
|
142393
|
+
create: XOR<UserCreateWithoutFlagsCreatedInput, UserUncheckedCreateWithoutFlagsCreatedInput>
|
|
142394
|
+
where?: UserWhereInput
|
|
142395
|
+
}
|
|
142396
|
+
|
|
142397
|
+
export type UserUpdateToOneWithWhereWithoutFlagsCreatedInput = {
|
|
142398
|
+
where?: UserWhereInput
|
|
142399
|
+
data: XOR<UserUpdateWithoutFlagsCreatedInput, UserUncheckedUpdateWithoutFlagsCreatedInput>
|
|
142400
|
+
}
|
|
142401
|
+
|
|
142402
|
+
export type UserUpdateWithoutFlagsCreatedInput = {
|
|
142403
|
+
role?: StringFieldUpdateOperationsInput | string
|
|
142404
|
+
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142405
|
+
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142406
|
+
registered?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
142407
|
+
lastLoginDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142408
|
+
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142409
|
+
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142410
|
+
phone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142411
|
+
phoneCode?: NullableIntFieldUpdateOperationsInput | number | null
|
|
142412
|
+
phoneShort?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142413
|
+
profilePicUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142414
|
+
forgotPasswordKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142415
|
+
affiliateSlug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142416
|
+
closed?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142417
|
+
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142418
|
+
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142419
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
142420
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142421
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142422
|
+
referrer?: UserUpdateOneWithoutReferredUsersNestedInput
|
|
142423
|
+
referredUsers?: UserUpdateManyWithoutReferrerNestedInput
|
|
142424
|
+
logs?: LogUpdateManyWithoutUserNestedInput
|
|
142425
|
+
creatorProfile?: CreatorProfileUpdateOneWithoutUserNestedInput
|
|
142426
|
+
instagramProfile?: InstagramProfileUpdateOneWithoutUserNestedInput
|
|
142427
|
+
youtubeProfile?: YoutubeProfileUpdateOneWithoutUserNestedInput
|
|
142428
|
+
tiktokProfile?: TiktokProfileUpdateOneWithoutUserNestedInput
|
|
142429
|
+
facebookProfile?: FacebookProfileUpdateOneWithoutUserNestedInput
|
|
142430
|
+
twitterProfile?: TwitterProfileUpdateOneWithoutUserNestedInput
|
|
142431
|
+
twitchProfile?: TwitchProfileUpdateOneWithoutUserNestedInput
|
|
142432
|
+
brandProfiles?: BrandUserProfileUpdateManyWithoutUserNestedInput
|
|
142433
|
+
optIns?: OptInUpdateManyWithoutUserNestedInput
|
|
142434
|
+
assignedBrands?: BrandUpdateManyWithoutDedicatedSpecialistNestedInput
|
|
142435
|
+
messages?: MessageUpdateManyWithoutUserNestedInput
|
|
142436
|
+
socialPosts?: SocialPostUpdateManyWithoutUserNestedInput
|
|
142437
|
+
paymentTransactions?: PaymentTransactionUpdateManyWithoutCreatorNestedInput
|
|
142438
|
+
affiliateLinks?: AffiliateLinkUpdateManyWithoutAffiliateNestedInput
|
|
142439
|
+
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
142440
|
+
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
142441
|
+
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
142442
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
142443
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
142444
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
142445
|
+
}
|
|
142446
|
+
|
|
142447
|
+
export type UserUncheckedUpdateWithoutFlagsCreatedInput = {
|
|
142448
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
142449
|
+
role?: StringFieldUpdateOperationsInput | string
|
|
142450
|
+
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142451
|
+
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142452
|
+
registered?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
142453
|
+
lastLoginDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142454
|
+
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142455
|
+
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142456
|
+
phone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142457
|
+
phoneCode?: NullableIntFieldUpdateOperationsInput | number | null
|
|
142458
|
+
phoneShort?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142459
|
+
profilePicUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142460
|
+
forgotPasswordKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142461
|
+
affiliateSlug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142462
|
+
closed?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142463
|
+
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142464
|
+
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142465
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
142466
|
+
referrerId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
142467
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142468
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142469
|
+
referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
|
|
142470
|
+
logs?: LogUncheckedUpdateManyWithoutUserNestedInput
|
|
142471
|
+
creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142472
|
+
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142473
|
+
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142474
|
+
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142475
|
+
facebookProfile?: FacebookProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142476
|
+
twitterProfile?: TwitterProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142477
|
+
twitchProfile?: TwitchProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142478
|
+
brandProfiles?: BrandUserProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
142479
|
+
optIns?: OptInUncheckedUpdateManyWithoutUserNestedInput
|
|
142480
|
+
assignedBrands?: BrandUncheckedUpdateManyWithoutDedicatedSpecialistNestedInput
|
|
142481
|
+
messages?: MessageUncheckedUpdateManyWithoutUserNestedInput
|
|
142482
|
+
socialPosts?: SocialPostUncheckedUpdateManyWithoutUserNestedInput
|
|
142483
|
+
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutCreatorNestedInput
|
|
142484
|
+
affiliateLinks?: AffiliateLinkUncheckedUpdateManyWithoutAffiliateNestedInput
|
|
142485
|
+
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
142486
|
+
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
142487
|
+
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
142488
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
142489
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
142490
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
142491
|
+
}
|
|
142492
|
+
|
|
142493
|
+
export type UserUpsertWithoutFlagsEditedInput = {
|
|
142494
|
+
update: XOR<UserUpdateWithoutFlagsEditedInput, UserUncheckedUpdateWithoutFlagsEditedInput>
|
|
142495
|
+
create: XOR<UserCreateWithoutFlagsEditedInput, UserUncheckedCreateWithoutFlagsEditedInput>
|
|
142496
|
+
where?: UserWhereInput
|
|
142497
|
+
}
|
|
142498
|
+
|
|
142499
|
+
export type UserUpdateToOneWithWhereWithoutFlagsEditedInput = {
|
|
142500
|
+
where?: UserWhereInput
|
|
142501
|
+
data: XOR<UserUpdateWithoutFlagsEditedInput, UserUncheckedUpdateWithoutFlagsEditedInput>
|
|
142502
|
+
}
|
|
142503
|
+
|
|
142504
|
+
export type UserUpdateWithoutFlagsEditedInput = {
|
|
142505
|
+
role?: StringFieldUpdateOperationsInput | string
|
|
142506
|
+
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142507
|
+
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142508
|
+
registered?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
142509
|
+
lastLoginDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142510
|
+
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142511
|
+
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142512
|
+
phone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142513
|
+
phoneCode?: NullableIntFieldUpdateOperationsInput | number | null
|
|
142514
|
+
phoneShort?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142515
|
+
profilePicUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142516
|
+
forgotPasswordKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142517
|
+
affiliateSlug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142518
|
+
closed?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142519
|
+
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142520
|
+
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142521
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
142522
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142523
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142524
|
+
referrer?: UserUpdateOneWithoutReferredUsersNestedInput
|
|
142525
|
+
referredUsers?: UserUpdateManyWithoutReferrerNestedInput
|
|
142526
|
+
logs?: LogUpdateManyWithoutUserNestedInput
|
|
142527
|
+
creatorProfile?: CreatorProfileUpdateOneWithoutUserNestedInput
|
|
142528
|
+
instagramProfile?: InstagramProfileUpdateOneWithoutUserNestedInput
|
|
142529
|
+
youtubeProfile?: YoutubeProfileUpdateOneWithoutUserNestedInput
|
|
142530
|
+
tiktokProfile?: TiktokProfileUpdateOneWithoutUserNestedInput
|
|
142531
|
+
facebookProfile?: FacebookProfileUpdateOneWithoutUserNestedInput
|
|
142532
|
+
twitterProfile?: TwitterProfileUpdateOneWithoutUserNestedInput
|
|
142533
|
+
twitchProfile?: TwitchProfileUpdateOneWithoutUserNestedInput
|
|
142534
|
+
brandProfiles?: BrandUserProfileUpdateManyWithoutUserNestedInput
|
|
142535
|
+
optIns?: OptInUpdateManyWithoutUserNestedInput
|
|
142536
|
+
assignedBrands?: BrandUpdateManyWithoutDedicatedSpecialistNestedInput
|
|
142537
|
+
messages?: MessageUpdateManyWithoutUserNestedInput
|
|
142538
|
+
socialPosts?: SocialPostUpdateManyWithoutUserNestedInput
|
|
142539
|
+
paymentTransactions?: PaymentTransactionUpdateManyWithoutCreatorNestedInput
|
|
142540
|
+
affiliateLinks?: AffiliateLinkUpdateManyWithoutAffiliateNestedInput
|
|
142541
|
+
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
142542
|
+
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
142543
|
+
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
142544
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
142545
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
142546
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
142547
|
+
}
|
|
142548
|
+
|
|
142549
|
+
export type UserUncheckedUpdateWithoutFlagsEditedInput = {
|
|
142550
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
142551
|
+
role?: StringFieldUpdateOperationsInput | string
|
|
142552
|
+
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142553
|
+
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142554
|
+
registered?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
142555
|
+
lastLoginDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142556
|
+
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142557
|
+
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142558
|
+
phone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142559
|
+
phoneCode?: NullableIntFieldUpdateOperationsInput | number | null
|
|
142560
|
+
phoneShort?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142561
|
+
profilePicUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142562
|
+
forgotPasswordKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142563
|
+
affiliateSlug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142564
|
+
closed?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142565
|
+
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142566
|
+
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142567
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
142568
|
+
referrerId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
142569
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142570
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142571
|
+
referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
|
|
142572
|
+
logs?: LogUncheckedUpdateManyWithoutUserNestedInput
|
|
142573
|
+
creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142574
|
+
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142575
|
+
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142576
|
+
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142577
|
+
facebookProfile?: FacebookProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142578
|
+
twitterProfile?: TwitterProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142579
|
+
twitchProfile?: TwitchProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142580
|
+
brandProfiles?: BrandUserProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
142581
|
+
optIns?: OptInUncheckedUpdateManyWithoutUserNestedInput
|
|
142582
|
+
assignedBrands?: BrandUncheckedUpdateManyWithoutDedicatedSpecialistNestedInput
|
|
142583
|
+
messages?: MessageUncheckedUpdateManyWithoutUserNestedInput
|
|
142584
|
+
socialPosts?: SocialPostUncheckedUpdateManyWithoutUserNestedInput
|
|
142585
|
+
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutCreatorNestedInput
|
|
142586
|
+
affiliateLinks?: AffiliateLinkUncheckedUpdateManyWithoutAffiliateNestedInput
|
|
142587
|
+
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
142588
|
+
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
142589
|
+
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
142590
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
142591
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
142592
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
142593
|
+
}
|
|
142594
|
+
|
|
139813
142595
|
export type UserCreateManyReferrerInput = {
|
|
139814
142596
|
id?: number
|
|
139815
142597
|
role: string
|
|
@@ -139860,6 +142642,7 @@ export namespace Prisma {
|
|
|
139860
142642
|
paymentStatus?: string
|
|
139861
142643
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
139862
142644
|
favoritedDate?: Date | string | null
|
|
142645
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
139863
142646
|
campaignId: number
|
|
139864
142647
|
currentStepId?: number | null
|
|
139865
142648
|
}
|
|
@@ -139996,6 +142779,39 @@ export namespace Prisma {
|
|
|
139996
142779
|
optInId?: number | null
|
|
139997
142780
|
}
|
|
139998
142781
|
|
|
142782
|
+
export type CreatorFlagCreateManyUserInput = {
|
|
142783
|
+
id?: number
|
|
142784
|
+
label: string
|
|
142785
|
+
comment?: string | null
|
|
142786
|
+
color: string
|
|
142787
|
+
createdAt?: Date | string
|
|
142788
|
+
updatedAt?: Date | string
|
|
142789
|
+
flaggedByUserId: number
|
|
142790
|
+
editedByUserId?: number | null
|
|
142791
|
+
}
|
|
142792
|
+
|
|
142793
|
+
export type CreatorFlagCreateManyFlaggedByUserInput = {
|
|
142794
|
+
id?: number
|
|
142795
|
+
label: string
|
|
142796
|
+
comment?: string | null
|
|
142797
|
+
color: string
|
|
142798
|
+
createdAt?: Date | string
|
|
142799
|
+
updatedAt?: Date | string
|
|
142800
|
+
userId: number
|
|
142801
|
+
editedByUserId?: number | null
|
|
142802
|
+
}
|
|
142803
|
+
|
|
142804
|
+
export type CreatorFlagCreateManyEditedByUserInput = {
|
|
142805
|
+
id?: number
|
|
142806
|
+
label: string
|
|
142807
|
+
comment?: string | null
|
|
142808
|
+
color: string
|
|
142809
|
+
createdAt?: Date | string
|
|
142810
|
+
updatedAt?: Date | string
|
|
142811
|
+
userId: number
|
|
142812
|
+
flaggedByUserId: number
|
|
142813
|
+
}
|
|
142814
|
+
|
|
139999
142815
|
export type UserUpdateWithoutReferrerInput = {
|
|
140000
142816
|
role?: StringFieldUpdateOperationsInput | string
|
|
140001
142817
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -140036,6 +142852,9 @@ export namespace Prisma {
|
|
|
140036
142852
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
140037
142853
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
140038
142854
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
142855
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
142856
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
142857
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
140039
142858
|
}
|
|
140040
142859
|
|
|
140041
142860
|
export type UserUncheckedUpdateWithoutReferrerInput = {
|
|
@@ -140079,6 +142898,9 @@ export namespace Prisma {
|
|
|
140079
142898
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
140080
142899
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
140081
142900
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
142901
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
142902
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
142903
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
140082
142904
|
}
|
|
140083
142905
|
|
|
140084
142906
|
export type UserUncheckedUpdateManyWithoutReferrerInput = {
|
|
@@ -140150,6 +142972,7 @@ export namespace Prisma {
|
|
|
140150
142972
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
140151
142973
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
140152
142974
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142975
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
140153
142976
|
campaign?: CampaignUpdateOneRequiredWithoutOptInsNestedInput
|
|
140154
142977
|
currentStep?: CampaignStepUpdateOneWithoutCurrentOptInsNestedInput
|
|
140155
142978
|
variables?: OptInVariableUpdateManyWithoutOptInNestedInput
|
|
@@ -140181,6 +143004,7 @@ export namespace Prisma {
|
|
|
140181
143004
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
140182
143005
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
140183
143006
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
143007
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
140184
143008
|
campaignId?: IntFieldUpdateOperationsInput | number
|
|
140185
143009
|
currentStepId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
140186
143010
|
variables?: OptInVariableUncheckedUpdateManyWithoutOptInNestedInput
|
|
@@ -140212,6 +143036,7 @@ export namespace Prisma {
|
|
|
140212
143036
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
140213
143037
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
140214
143038
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
143039
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
140215
143040
|
campaignId?: IntFieldUpdateOperationsInput | number
|
|
140216
143041
|
currentStepId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
140217
143042
|
}
|
|
@@ -140659,6 +143484,102 @@ export namespace Prisma {
|
|
|
140659
143484
|
optInId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
140660
143485
|
}
|
|
140661
143486
|
|
|
143487
|
+
export type CreatorFlagUpdateWithoutUserInput = {
|
|
143488
|
+
label?: StringFieldUpdateOperationsInput | string
|
|
143489
|
+
comment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
143490
|
+
color?: StringFieldUpdateOperationsInput | string
|
|
143491
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143492
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143493
|
+
flaggedByUser?: UserUpdateOneRequiredWithoutFlagsCreatedNestedInput
|
|
143494
|
+
editedByUser?: UserUpdateOneWithoutFlagsEditedNestedInput
|
|
143495
|
+
}
|
|
143496
|
+
|
|
143497
|
+
export type CreatorFlagUncheckedUpdateWithoutUserInput = {
|
|
143498
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
143499
|
+
label?: StringFieldUpdateOperationsInput | string
|
|
143500
|
+
comment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
143501
|
+
color?: StringFieldUpdateOperationsInput | string
|
|
143502
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143503
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143504
|
+
flaggedByUserId?: IntFieldUpdateOperationsInput | number
|
|
143505
|
+
editedByUserId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
143506
|
+
}
|
|
143507
|
+
|
|
143508
|
+
export type CreatorFlagUncheckedUpdateManyWithoutUserInput = {
|
|
143509
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
143510
|
+
label?: StringFieldUpdateOperationsInput | string
|
|
143511
|
+
comment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
143512
|
+
color?: StringFieldUpdateOperationsInput | string
|
|
143513
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143514
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143515
|
+
flaggedByUserId?: IntFieldUpdateOperationsInput | number
|
|
143516
|
+
editedByUserId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
143517
|
+
}
|
|
143518
|
+
|
|
143519
|
+
export type CreatorFlagUpdateWithoutFlaggedByUserInput = {
|
|
143520
|
+
label?: StringFieldUpdateOperationsInput | string
|
|
143521
|
+
comment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
143522
|
+
color?: StringFieldUpdateOperationsInput | string
|
|
143523
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143524
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143525
|
+
user?: UserUpdateOneRequiredWithoutFlagsAssignedNestedInput
|
|
143526
|
+
editedByUser?: UserUpdateOneWithoutFlagsEditedNestedInput
|
|
143527
|
+
}
|
|
143528
|
+
|
|
143529
|
+
export type CreatorFlagUncheckedUpdateWithoutFlaggedByUserInput = {
|
|
143530
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
143531
|
+
label?: StringFieldUpdateOperationsInput | string
|
|
143532
|
+
comment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
143533
|
+
color?: StringFieldUpdateOperationsInput | string
|
|
143534
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143535
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143536
|
+
userId?: IntFieldUpdateOperationsInput | number
|
|
143537
|
+
editedByUserId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
143538
|
+
}
|
|
143539
|
+
|
|
143540
|
+
export type CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserInput = {
|
|
143541
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
143542
|
+
label?: StringFieldUpdateOperationsInput | string
|
|
143543
|
+
comment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
143544
|
+
color?: StringFieldUpdateOperationsInput | string
|
|
143545
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143546
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143547
|
+
userId?: IntFieldUpdateOperationsInput | number
|
|
143548
|
+
editedByUserId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
143549
|
+
}
|
|
143550
|
+
|
|
143551
|
+
export type CreatorFlagUpdateWithoutEditedByUserInput = {
|
|
143552
|
+
label?: StringFieldUpdateOperationsInput | string
|
|
143553
|
+
comment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
143554
|
+
color?: StringFieldUpdateOperationsInput | string
|
|
143555
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143556
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143557
|
+
user?: UserUpdateOneRequiredWithoutFlagsAssignedNestedInput
|
|
143558
|
+
flaggedByUser?: UserUpdateOneRequiredWithoutFlagsCreatedNestedInput
|
|
143559
|
+
}
|
|
143560
|
+
|
|
143561
|
+
export type CreatorFlagUncheckedUpdateWithoutEditedByUserInput = {
|
|
143562
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
143563
|
+
label?: StringFieldUpdateOperationsInput | string
|
|
143564
|
+
comment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
143565
|
+
color?: StringFieldUpdateOperationsInput | string
|
|
143566
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143567
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143568
|
+
userId?: IntFieldUpdateOperationsInput | number
|
|
143569
|
+
flaggedByUserId?: IntFieldUpdateOperationsInput | number
|
|
143570
|
+
}
|
|
143571
|
+
|
|
143572
|
+
export type CreatorFlagUncheckedUpdateManyWithoutEditedByUserInput = {
|
|
143573
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
143574
|
+
label?: StringFieldUpdateOperationsInput | string
|
|
143575
|
+
comment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
143576
|
+
color?: StringFieldUpdateOperationsInput | string
|
|
143577
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143578
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143579
|
+
userId?: IntFieldUpdateOperationsInput | number
|
|
143580
|
+
flaggedByUserId?: IntFieldUpdateOperationsInput | number
|
|
143581
|
+
}
|
|
143582
|
+
|
|
140662
143583
|
export type CreatorToCategoryCreateManyCreatorProfileInput = {
|
|
140663
143584
|
categoryId: number
|
|
140664
143585
|
}
|
|
@@ -141790,6 +144711,7 @@ export namespace Prisma {
|
|
|
141790
144711
|
paymentStatus?: string
|
|
141791
144712
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
141792
144713
|
favoritedDate?: Date | string | null
|
|
144714
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
141793
144715
|
userId: number
|
|
141794
144716
|
currentStepId?: number | null
|
|
141795
144717
|
}
|
|
@@ -141978,6 +144900,7 @@ export namespace Prisma {
|
|
|
141978
144900
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
141979
144901
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
141980
144902
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
144903
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
141981
144904
|
user?: UserUpdateOneRequiredWithoutOptInsNestedInput
|
|
141982
144905
|
currentStep?: CampaignStepUpdateOneWithoutCurrentOptInsNestedInput
|
|
141983
144906
|
variables?: OptInVariableUpdateManyWithoutOptInNestedInput
|
|
@@ -142009,6 +144932,7 @@ export namespace Prisma {
|
|
|
142009
144932
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
142010
144933
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
142011
144934
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
144935
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
142012
144936
|
userId?: IntFieldUpdateOperationsInput | number
|
|
142013
144937
|
currentStepId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
142014
144938
|
variables?: OptInVariableUncheckedUpdateManyWithoutOptInNestedInput
|
|
@@ -142040,6 +144964,7 @@ export namespace Prisma {
|
|
|
142040
144964
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
142041
144965
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
142042
144966
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
144967
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
142043
144968
|
userId?: IntFieldUpdateOperationsInput | number
|
|
142044
144969
|
currentStepId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
142045
144970
|
}
|
|
@@ -142639,6 +145564,7 @@ export namespace Prisma {
|
|
|
142639
145564
|
paymentStatus?: string
|
|
142640
145565
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
142641
145566
|
favoritedDate?: Date | string | null
|
|
145567
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
142642
145568
|
userId: number
|
|
142643
145569
|
campaignId: number
|
|
142644
145570
|
}
|
|
@@ -142666,6 +145592,7 @@ export namespace Prisma {
|
|
|
142666
145592
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
142667
145593
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
142668
145594
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
145595
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
142669
145596
|
user?: UserUpdateOneRequiredWithoutOptInsNestedInput
|
|
142670
145597
|
campaign?: CampaignUpdateOneRequiredWithoutOptInsNestedInput
|
|
142671
145598
|
variables?: OptInVariableUpdateManyWithoutOptInNestedInput
|
|
@@ -142697,6 +145624,7 @@ export namespace Prisma {
|
|
|
142697
145624
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
142698
145625
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
142699
145626
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
145627
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
142700
145628
|
userId?: IntFieldUpdateOperationsInput | number
|
|
142701
145629
|
campaignId?: IntFieldUpdateOperationsInput | number
|
|
142702
145630
|
variables?: OptInVariableUncheckedUpdateManyWithoutOptInNestedInput
|
|
@@ -142728,6 +145656,7 @@ export namespace Prisma {
|
|
|
142728
145656
|
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
142729
145657
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
142730
145658
|
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
145659
|
+
rating?: NullableJsonNullValueInput | InputJsonValue
|
|
142731
145660
|
userId?: IntFieldUpdateOperationsInput | number
|
|
142732
145661
|
campaignId?: IntFieldUpdateOperationsInput | number
|
|
142733
145662
|
}
|
|
@@ -144339,6 +147268,10 @@ export namespace Prisma {
|
|
|
144339
147268
|
* @deprecated Use ShopifySaleDefaultArgs instead
|
|
144340
147269
|
*/
|
|
144341
147270
|
export type ShopifySaleArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = ShopifySaleDefaultArgs<ExtArgs>
|
|
147271
|
+
/**
|
|
147272
|
+
* @deprecated Use CreatorFlagDefaultArgs instead
|
|
147273
|
+
*/
|
|
147274
|
+
export type CreatorFlagArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = CreatorFlagDefaultArgs<ExtArgs>
|
|
144342
147275
|
|
|
144343
147276
|
/**
|
|
144344
147277
|
* Batch Payload for updateMany & deleteMany & createMany
|