@creator.co/creatorco-prisma-client 1.0.49 → 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 +24 -5
- package/index-browser.js +20 -1
- package/index.d.ts +2975 -127
- package/index.js +24 -5
- package/package.json +1 -1
- package/schema.prisma +23 -0
- package/wasm.js +20 -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
|
*/
|
|
@@ -89624,343 +89812,1425 @@ export namespace Prisma {
|
|
|
89624
89812
|
|
|
89625
89813
|
|
|
89626
89814
|
/**
|
|
89627
|
-
* 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
|
|
89628
90879
|
*/
|
|
89629
|
-
interface
|
|
89630
|
-
readonly id: FieldRef<"
|
|
89631
|
-
readonly
|
|
89632
|
-
readonly
|
|
89633
|
-
readonly
|
|
89634
|
-
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'>
|
|
89635
90890
|
}
|
|
89636
90891
|
|
|
89637
90892
|
|
|
89638
90893
|
// Custom InputTypes
|
|
89639
90894
|
/**
|
|
89640
|
-
*
|
|
90895
|
+
* CreatorFlag findUnique
|
|
89641
90896
|
*/
|
|
89642
|
-
export type
|
|
90897
|
+
export type CreatorFlagFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89643
90898
|
/**
|
|
89644
|
-
* Select specific fields to fetch from the
|
|
90899
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
89645
90900
|
*/
|
|
89646
|
-
select?:
|
|
90901
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
89647
90902
|
/**
|
|
89648
90903
|
* Choose, which related nodes to fetch as well
|
|
89649
90904
|
*/
|
|
89650
|
-
include?:
|
|
90905
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
89651
90906
|
/**
|
|
89652
|
-
* Filter, which
|
|
90907
|
+
* Filter, which CreatorFlag to fetch.
|
|
89653
90908
|
*/
|
|
89654
|
-
where:
|
|
90909
|
+
where: CreatorFlagWhereUniqueInput
|
|
89655
90910
|
}
|
|
89656
90911
|
|
|
89657
90912
|
/**
|
|
89658
|
-
*
|
|
90913
|
+
* CreatorFlag findUniqueOrThrow
|
|
89659
90914
|
*/
|
|
89660
|
-
export type
|
|
90915
|
+
export type CreatorFlagFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89661
90916
|
/**
|
|
89662
|
-
* Select specific fields to fetch from the
|
|
90917
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
89663
90918
|
*/
|
|
89664
|
-
select?:
|
|
90919
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
89665
90920
|
/**
|
|
89666
90921
|
* Choose, which related nodes to fetch as well
|
|
89667
90922
|
*/
|
|
89668
|
-
include?:
|
|
90923
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
89669
90924
|
/**
|
|
89670
|
-
* Filter, which
|
|
90925
|
+
* Filter, which CreatorFlag to fetch.
|
|
89671
90926
|
*/
|
|
89672
|
-
where:
|
|
90927
|
+
where: CreatorFlagWhereUniqueInput
|
|
89673
90928
|
}
|
|
89674
90929
|
|
|
89675
90930
|
/**
|
|
89676
|
-
*
|
|
90931
|
+
* CreatorFlag findFirst
|
|
89677
90932
|
*/
|
|
89678
|
-
export type
|
|
90933
|
+
export type CreatorFlagFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89679
90934
|
/**
|
|
89680
|
-
* Select specific fields to fetch from the
|
|
90935
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
89681
90936
|
*/
|
|
89682
|
-
select?:
|
|
90937
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
89683
90938
|
/**
|
|
89684
90939
|
* Choose, which related nodes to fetch as well
|
|
89685
90940
|
*/
|
|
89686
|
-
include?:
|
|
90941
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
89687
90942
|
/**
|
|
89688
|
-
* Filter, which
|
|
90943
|
+
* Filter, which CreatorFlag to fetch.
|
|
89689
90944
|
*/
|
|
89690
|
-
where?:
|
|
90945
|
+
where?: CreatorFlagWhereInput
|
|
89691
90946
|
/**
|
|
89692
90947
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
89693
90948
|
*
|
|
89694
|
-
* Determine the order of
|
|
90949
|
+
* Determine the order of CreatorFlags to fetch.
|
|
89695
90950
|
*/
|
|
89696
|
-
orderBy?:
|
|
90951
|
+
orderBy?: CreatorFlagOrderByWithRelationAndSearchRelevanceInput | CreatorFlagOrderByWithRelationAndSearchRelevanceInput[]
|
|
89697
90952
|
/**
|
|
89698
90953
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
89699
90954
|
*
|
|
89700
|
-
* Sets the position for searching for
|
|
90955
|
+
* Sets the position for searching for CreatorFlags.
|
|
89701
90956
|
*/
|
|
89702
|
-
cursor?:
|
|
90957
|
+
cursor?: CreatorFlagWhereUniqueInput
|
|
89703
90958
|
/**
|
|
89704
90959
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
89705
90960
|
*
|
|
89706
|
-
* Take `±n`
|
|
90961
|
+
* Take `±n` CreatorFlags from the position of the cursor.
|
|
89707
90962
|
*/
|
|
89708
90963
|
take?: number
|
|
89709
90964
|
/**
|
|
89710
90965
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
89711
90966
|
*
|
|
89712
|
-
* Skip the first `n`
|
|
90967
|
+
* Skip the first `n` CreatorFlags.
|
|
89713
90968
|
*/
|
|
89714
90969
|
skip?: number
|
|
89715
90970
|
/**
|
|
89716
90971
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
89717
90972
|
*
|
|
89718
|
-
* Filter by unique combinations of
|
|
90973
|
+
* Filter by unique combinations of CreatorFlags.
|
|
89719
90974
|
*/
|
|
89720
|
-
distinct?:
|
|
90975
|
+
distinct?: CreatorFlagScalarFieldEnum | CreatorFlagScalarFieldEnum[]
|
|
89721
90976
|
}
|
|
89722
90977
|
|
|
89723
90978
|
/**
|
|
89724
|
-
*
|
|
90979
|
+
* CreatorFlag findFirstOrThrow
|
|
89725
90980
|
*/
|
|
89726
|
-
export type
|
|
90981
|
+
export type CreatorFlagFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89727
90982
|
/**
|
|
89728
|
-
* Select specific fields to fetch from the
|
|
90983
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
89729
90984
|
*/
|
|
89730
|
-
select?:
|
|
90985
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
89731
90986
|
/**
|
|
89732
90987
|
* Choose, which related nodes to fetch as well
|
|
89733
90988
|
*/
|
|
89734
|
-
include?:
|
|
90989
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
89735
90990
|
/**
|
|
89736
|
-
* Filter, which
|
|
90991
|
+
* Filter, which CreatorFlag to fetch.
|
|
89737
90992
|
*/
|
|
89738
|
-
where?:
|
|
90993
|
+
where?: CreatorFlagWhereInput
|
|
89739
90994
|
/**
|
|
89740
90995
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
89741
90996
|
*
|
|
89742
|
-
* Determine the order of
|
|
90997
|
+
* Determine the order of CreatorFlags to fetch.
|
|
89743
90998
|
*/
|
|
89744
|
-
orderBy?:
|
|
90999
|
+
orderBy?: CreatorFlagOrderByWithRelationAndSearchRelevanceInput | CreatorFlagOrderByWithRelationAndSearchRelevanceInput[]
|
|
89745
91000
|
/**
|
|
89746
91001
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
89747
91002
|
*
|
|
89748
|
-
* Sets the position for searching for
|
|
91003
|
+
* Sets the position for searching for CreatorFlags.
|
|
89749
91004
|
*/
|
|
89750
|
-
cursor?:
|
|
91005
|
+
cursor?: CreatorFlagWhereUniqueInput
|
|
89751
91006
|
/**
|
|
89752
91007
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
89753
91008
|
*
|
|
89754
|
-
* Take `±n`
|
|
91009
|
+
* Take `±n` CreatorFlags from the position of the cursor.
|
|
89755
91010
|
*/
|
|
89756
91011
|
take?: number
|
|
89757
91012
|
/**
|
|
89758
91013
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
89759
91014
|
*
|
|
89760
|
-
* Skip the first `n`
|
|
91015
|
+
* Skip the first `n` CreatorFlags.
|
|
89761
91016
|
*/
|
|
89762
91017
|
skip?: number
|
|
89763
91018
|
/**
|
|
89764
91019
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
89765
91020
|
*
|
|
89766
|
-
* Filter by unique combinations of
|
|
91021
|
+
* Filter by unique combinations of CreatorFlags.
|
|
89767
91022
|
*/
|
|
89768
|
-
distinct?:
|
|
91023
|
+
distinct?: CreatorFlagScalarFieldEnum | CreatorFlagScalarFieldEnum[]
|
|
89769
91024
|
}
|
|
89770
91025
|
|
|
89771
91026
|
/**
|
|
89772
|
-
*
|
|
91027
|
+
* CreatorFlag findMany
|
|
89773
91028
|
*/
|
|
89774
|
-
export type
|
|
91029
|
+
export type CreatorFlagFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89775
91030
|
/**
|
|
89776
|
-
* Select specific fields to fetch from the
|
|
91031
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
89777
91032
|
*/
|
|
89778
|
-
select?:
|
|
91033
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
89779
91034
|
/**
|
|
89780
91035
|
* Choose, which related nodes to fetch as well
|
|
89781
91036
|
*/
|
|
89782
|
-
include?:
|
|
91037
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
89783
91038
|
/**
|
|
89784
|
-
* Filter, which
|
|
91039
|
+
* Filter, which CreatorFlags to fetch.
|
|
89785
91040
|
*/
|
|
89786
|
-
where?:
|
|
91041
|
+
where?: CreatorFlagWhereInput
|
|
89787
91042
|
/**
|
|
89788
91043
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
89789
91044
|
*
|
|
89790
|
-
* Determine the order of
|
|
91045
|
+
* Determine the order of CreatorFlags to fetch.
|
|
89791
91046
|
*/
|
|
89792
|
-
orderBy?:
|
|
91047
|
+
orderBy?: CreatorFlagOrderByWithRelationAndSearchRelevanceInput | CreatorFlagOrderByWithRelationAndSearchRelevanceInput[]
|
|
89793
91048
|
/**
|
|
89794
91049
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
89795
91050
|
*
|
|
89796
|
-
* Sets the position for listing
|
|
91051
|
+
* Sets the position for listing CreatorFlags.
|
|
89797
91052
|
*/
|
|
89798
|
-
cursor?:
|
|
91053
|
+
cursor?: CreatorFlagWhereUniqueInput
|
|
89799
91054
|
/**
|
|
89800
91055
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
89801
91056
|
*
|
|
89802
|
-
* Take `±n`
|
|
91057
|
+
* Take `±n` CreatorFlags from the position of the cursor.
|
|
89803
91058
|
*/
|
|
89804
91059
|
take?: number
|
|
89805
91060
|
/**
|
|
89806
91061
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
89807
91062
|
*
|
|
89808
|
-
* Skip the first `n`
|
|
91063
|
+
* Skip the first `n` CreatorFlags.
|
|
89809
91064
|
*/
|
|
89810
91065
|
skip?: number
|
|
89811
|
-
distinct?:
|
|
91066
|
+
distinct?: CreatorFlagScalarFieldEnum | CreatorFlagScalarFieldEnum[]
|
|
89812
91067
|
}
|
|
89813
91068
|
|
|
89814
91069
|
/**
|
|
89815
|
-
*
|
|
91070
|
+
* CreatorFlag create
|
|
89816
91071
|
*/
|
|
89817
|
-
export type
|
|
91072
|
+
export type CreatorFlagCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89818
91073
|
/**
|
|
89819
|
-
* Select specific fields to fetch from the
|
|
91074
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
89820
91075
|
*/
|
|
89821
|
-
select?:
|
|
91076
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
89822
91077
|
/**
|
|
89823
91078
|
* Choose, which related nodes to fetch as well
|
|
89824
91079
|
*/
|
|
89825
|
-
include?:
|
|
91080
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
89826
91081
|
/**
|
|
89827
|
-
* The data needed to create a
|
|
91082
|
+
* The data needed to create a CreatorFlag.
|
|
89828
91083
|
*/
|
|
89829
|
-
data: XOR<
|
|
91084
|
+
data: XOR<CreatorFlagCreateInput, CreatorFlagUncheckedCreateInput>
|
|
89830
91085
|
}
|
|
89831
91086
|
|
|
89832
91087
|
/**
|
|
89833
|
-
*
|
|
91088
|
+
* CreatorFlag createMany
|
|
89834
91089
|
*/
|
|
89835
|
-
export type
|
|
91090
|
+
export type CreatorFlagCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89836
91091
|
/**
|
|
89837
|
-
* The data used to create many
|
|
91092
|
+
* The data used to create many CreatorFlags.
|
|
89838
91093
|
*/
|
|
89839
|
-
data:
|
|
91094
|
+
data: CreatorFlagCreateManyInput | CreatorFlagCreateManyInput[]
|
|
89840
91095
|
skipDuplicates?: boolean
|
|
89841
91096
|
}
|
|
89842
91097
|
|
|
89843
91098
|
/**
|
|
89844
|
-
*
|
|
91099
|
+
* CreatorFlag createManyAndReturn
|
|
89845
91100
|
*/
|
|
89846
|
-
export type
|
|
91101
|
+
export type CreatorFlagCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89847
91102
|
/**
|
|
89848
|
-
* Select specific fields to fetch from the
|
|
91103
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
89849
91104
|
*/
|
|
89850
|
-
select?:
|
|
91105
|
+
select?: CreatorFlagSelectCreateManyAndReturn<ExtArgs> | null
|
|
89851
91106
|
/**
|
|
89852
|
-
* The data used to create many
|
|
91107
|
+
* The data used to create many CreatorFlags.
|
|
89853
91108
|
*/
|
|
89854
|
-
data:
|
|
91109
|
+
data: CreatorFlagCreateManyInput | CreatorFlagCreateManyInput[]
|
|
89855
91110
|
skipDuplicates?: boolean
|
|
89856
91111
|
/**
|
|
89857
91112
|
* Choose, which related nodes to fetch as well
|
|
89858
91113
|
*/
|
|
89859
|
-
include?:
|
|
91114
|
+
include?: CreatorFlagIncludeCreateManyAndReturn<ExtArgs> | null
|
|
89860
91115
|
}
|
|
89861
91116
|
|
|
89862
91117
|
/**
|
|
89863
|
-
*
|
|
91118
|
+
* CreatorFlag update
|
|
89864
91119
|
*/
|
|
89865
|
-
export type
|
|
91120
|
+
export type CreatorFlagUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89866
91121
|
/**
|
|
89867
|
-
* Select specific fields to fetch from the
|
|
91122
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
89868
91123
|
*/
|
|
89869
|
-
select?:
|
|
91124
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
89870
91125
|
/**
|
|
89871
91126
|
* Choose, which related nodes to fetch as well
|
|
89872
91127
|
*/
|
|
89873
|
-
include?:
|
|
91128
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
89874
91129
|
/**
|
|
89875
|
-
* The data needed to update a
|
|
91130
|
+
* The data needed to update a CreatorFlag.
|
|
89876
91131
|
*/
|
|
89877
|
-
data: XOR<
|
|
91132
|
+
data: XOR<CreatorFlagUpdateInput, CreatorFlagUncheckedUpdateInput>
|
|
89878
91133
|
/**
|
|
89879
|
-
* Choose, which
|
|
91134
|
+
* Choose, which CreatorFlag to update.
|
|
89880
91135
|
*/
|
|
89881
|
-
where:
|
|
91136
|
+
where: CreatorFlagWhereUniqueInput
|
|
89882
91137
|
}
|
|
89883
91138
|
|
|
89884
91139
|
/**
|
|
89885
|
-
*
|
|
91140
|
+
* CreatorFlag updateMany
|
|
89886
91141
|
*/
|
|
89887
|
-
export type
|
|
91142
|
+
export type CreatorFlagUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89888
91143
|
/**
|
|
89889
|
-
* The data used to update
|
|
91144
|
+
* The data used to update CreatorFlags.
|
|
89890
91145
|
*/
|
|
89891
|
-
data: XOR<
|
|
91146
|
+
data: XOR<CreatorFlagUpdateManyMutationInput, CreatorFlagUncheckedUpdateManyInput>
|
|
89892
91147
|
/**
|
|
89893
|
-
* Filter which
|
|
91148
|
+
* Filter which CreatorFlags to update
|
|
89894
91149
|
*/
|
|
89895
|
-
where?:
|
|
91150
|
+
where?: CreatorFlagWhereInput
|
|
89896
91151
|
}
|
|
89897
91152
|
|
|
89898
91153
|
/**
|
|
89899
|
-
*
|
|
91154
|
+
* CreatorFlag upsert
|
|
89900
91155
|
*/
|
|
89901
|
-
export type
|
|
91156
|
+
export type CreatorFlagUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89902
91157
|
/**
|
|
89903
|
-
* Select specific fields to fetch from the
|
|
91158
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
89904
91159
|
*/
|
|
89905
|
-
select?:
|
|
91160
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
89906
91161
|
/**
|
|
89907
91162
|
* Choose, which related nodes to fetch as well
|
|
89908
91163
|
*/
|
|
89909
|
-
include?:
|
|
91164
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
89910
91165
|
/**
|
|
89911
|
-
* The filter to search for the
|
|
91166
|
+
* The filter to search for the CreatorFlag to update in case it exists.
|
|
89912
91167
|
*/
|
|
89913
|
-
where:
|
|
91168
|
+
where: CreatorFlagWhereUniqueInput
|
|
89914
91169
|
/**
|
|
89915
|
-
* In case the
|
|
91170
|
+
* In case the CreatorFlag found by the `where` argument doesn't exist, create a new CreatorFlag with this data.
|
|
89916
91171
|
*/
|
|
89917
|
-
create: XOR<
|
|
91172
|
+
create: XOR<CreatorFlagCreateInput, CreatorFlagUncheckedCreateInput>
|
|
89918
91173
|
/**
|
|
89919
|
-
* In case the
|
|
91174
|
+
* In case the CreatorFlag was found with the provided `where` argument, update it with this data.
|
|
89920
91175
|
*/
|
|
89921
|
-
update: XOR<
|
|
91176
|
+
update: XOR<CreatorFlagUpdateInput, CreatorFlagUncheckedUpdateInput>
|
|
89922
91177
|
}
|
|
89923
91178
|
|
|
89924
91179
|
/**
|
|
89925
|
-
*
|
|
91180
|
+
* CreatorFlag delete
|
|
89926
91181
|
*/
|
|
89927
|
-
export type
|
|
91182
|
+
export type CreatorFlagDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89928
91183
|
/**
|
|
89929
|
-
* Select specific fields to fetch from the
|
|
91184
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
89930
91185
|
*/
|
|
89931
|
-
select?:
|
|
91186
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
89932
91187
|
/**
|
|
89933
91188
|
* Choose, which related nodes to fetch as well
|
|
89934
91189
|
*/
|
|
89935
|
-
include?:
|
|
91190
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
89936
91191
|
/**
|
|
89937
|
-
* Filter which
|
|
91192
|
+
* Filter which CreatorFlag to delete.
|
|
89938
91193
|
*/
|
|
89939
|
-
where:
|
|
91194
|
+
where: CreatorFlagWhereUniqueInput
|
|
89940
91195
|
}
|
|
89941
91196
|
|
|
89942
91197
|
/**
|
|
89943
|
-
*
|
|
91198
|
+
* CreatorFlag deleteMany
|
|
89944
91199
|
*/
|
|
89945
|
-
export type
|
|
91200
|
+
export type CreatorFlagDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89946
91201
|
/**
|
|
89947
|
-
* Filter which
|
|
91202
|
+
* Filter which CreatorFlags to delete
|
|
89948
91203
|
*/
|
|
89949
|
-
where?:
|
|
91204
|
+
where?: CreatorFlagWhereInput
|
|
89950
91205
|
}
|
|
89951
91206
|
|
|
89952
91207
|
/**
|
|
89953
|
-
*
|
|
91208
|
+
* CreatorFlag.editedByUser
|
|
89954
91209
|
*/
|
|
89955
|
-
export type
|
|
91210
|
+
export type CreatorFlag$editedByUserArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89956
91211
|
/**
|
|
89957
|
-
* Select specific fields to fetch from the
|
|
91212
|
+
* Select specific fields to fetch from the User
|
|
89958
91213
|
*/
|
|
89959
|
-
select?:
|
|
91214
|
+
select?: UserSelect<ExtArgs> | null
|
|
89960
91215
|
/**
|
|
89961
91216
|
* Choose, which related nodes to fetch as well
|
|
89962
91217
|
*/
|
|
89963
|
-
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
|
|
89964
91234
|
}
|
|
89965
91235
|
|
|
89966
91236
|
|
|
@@ -91079,6 +92349,21 @@ export namespace Prisma {
|
|
|
91079
92349
|
export type ShopifySaleScalarFieldEnum = (typeof ShopifySaleScalarFieldEnum)[keyof typeof ShopifySaleScalarFieldEnum]
|
|
91080
92350
|
|
|
91081
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
|
+
|
|
91082
92367
|
export const SortOrder: {
|
|
91083
92368
|
asc: 'asc',
|
|
91084
92369
|
desc: 'desc'
|
|
@@ -91649,6 +92934,15 @@ export namespace Prisma {
|
|
|
91649
92934
|
export type ShopifyDiscountCodeOrderByRelevanceFieldEnum = (typeof ShopifyDiscountCodeOrderByRelevanceFieldEnum)[keyof typeof ShopifyDiscountCodeOrderByRelevanceFieldEnum]
|
|
91650
92935
|
|
|
91651
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
|
+
|
|
91652
92946
|
/**
|
|
91653
92947
|
* Field references
|
|
91654
92948
|
*/
|
|
@@ -91843,6 +93137,9 @@ export namespace Prisma {
|
|
|
91843
93137
|
socialProfiles?: SocialProfileListRelationFilter
|
|
91844
93138
|
rakutenActivity?: RakutenActivityListRelationFilter
|
|
91845
93139
|
impactRadiusEvents?: ImpactRadiusEventListRelationFilter
|
|
93140
|
+
flagsAssigned?: CreatorFlagListRelationFilter
|
|
93141
|
+
flagsCreated?: CreatorFlagListRelationFilter
|
|
93142
|
+
flagsEdited?: CreatorFlagListRelationFilter
|
|
91846
93143
|
}
|
|
91847
93144
|
|
|
91848
93145
|
export type UserOrderByWithRelationAndSearchRelevanceInput = {
|
|
@@ -91888,6 +93185,9 @@ export namespace Prisma {
|
|
|
91888
93185
|
socialProfiles?: SocialProfileOrderByRelationAggregateInput
|
|
91889
93186
|
rakutenActivity?: RakutenActivityOrderByRelationAggregateInput
|
|
91890
93187
|
impactRadiusEvents?: ImpactRadiusEventOrderByRelationAggregateInput
|
|
93188
|
+
flagsAssigned?: CreatorFlagOrderByRelationAggregateInput
|
|
93189
|
+
flagsCreated?: CreatorFlagOrderByRelationAggregateInput
|
|
93190
|
+
flagsEdited?: CreatorFlagOrderByRelationAggregateInput
|
|
91891
93191
|
_relevance?: UserOrderByRelevanceInput
|
|
91892
93192
|
}
|
|
91893
93193
|
|
|
@@ -91937,6 +93237,9 @@ export namespace Prisma {
|
|
|
91937
93237
|
socialProfiles?: SocialProfileListRelationFilter
|
|
91938
93238
|
rakutenActivity?: RakutenActivityListRelationFilter
|
|
91939
93239
|
impactRadiusEvents?: ImpactRadiusEventListRelationFilter
|
|
93240
|
+
flagsAssigned?: CreatorFlagListRelationFilter
|
|
93241
|
+
flagsCreated?: CreatorFlagListRelationFilter
|
|
93242
|
+
flagsEdited?: CreatorFlagListRelationFilter
|
|
91940
93243
|
}, "id" | "email" | "forgotPasswordKey" | "affiliateSlug">
|
|
91941
93244
|
|
|
91942
93245
|
export type UserOrderByWithAggregationInput = {
|
|
@@ -97977,6 +99280,90 @@ export namespace Prisma {
|
|
|
97977
99280
|
created?: DateTimeWithAggregatesFilter<"ShopifySale"> | Date | string
|
|
97978
99281
|
}
|
|
97979
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
|
+
|
|
97980
99367
|
export type UserCreateInput = {
|
|
97981
99368
|
role: string
|
|
97982
99369
|
email?: string | null
|
|
@@ -98018,6 +99405,9 @@ export namespace Prisma {
|
|
|
98018
99405
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
98019
99406
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
98020
99407
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
99408
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
99409
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
99410
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
98021
99411
|
}
|
|
98022
99412
|
|
|
98023
99413
|
export type UserUncheckedCreateInput = {
|
|
@@ -98062,6 +99452,9 @@ export namespace Prisma {
|
|
|
98062
99452
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
98063
99453
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
98064
99454
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
99455
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
99456
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
99457
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
98065
99458
|
}
|
|
98066
99459
|
|
|
98067
99460
|
export type UserUpdateInput = {
|
|
@@ -98105,6 +99498,9 @@ export namespace Prisma {
|
|
|
98105
99498
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
98106
99499
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
98107
99500
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
99501
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
99502
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
99503
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
98108
99504
|
}
|
|
98109
99505
|
|
|
98110
99506
|
export type UserUncheckedUpdateInput = {
|
|
@@ -98149,6 +99545,9 @@ export namespace Prisma {
|
|
|
98149
99545
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
98150
99546
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
98151
99547
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
99548
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
99549
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
99550
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
98152
99551
|
}
|
|
98153
99552
|
|
|
98154
99553
|
export type UserCreateManyInput = {
|
|
@@ -104287,6 +105686,84 @@ export namespace Prisma {
|
|
|
104287
105686
|
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
104288
105687
|
}
|
|
104289
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
|
+
|
|
104290
105767
|
export type IntFilter<$PrismaModel = never> = {
|
|
104291
105768
|
equals?: number | IntFieldRefInput<$PrismaModel>
|
|
104292
105769
|
in?: number[] | ListIntFieldRefInput<$PrismaModel>
|
|
@@ -104503,6 +105980,12 @@ export namespace Prisma {
|
|
|
104503
105980
|
none?: ImpactRadiusEventWhereInput
|
|
104504
105981
|
}
|
|
104505
105982
|
|
|
105983
|
+
export type CreatorFlagListRelationFilter = {
|
|
105984
|
+
every?: CreatorFlagWhereInput
|
|
105985
|
+
some?: CreatorFlagWhereInput
|
|
105986
|
+
none?: CreatorFlagWhereInput
|
|
105987
|
+
}
|
|
105988
|
+
|
|
104506
105989
|
export type SortOrderInput = {
|
|
104507
105990
|
sort: SortOrder
|
|
104508
105991
|
nulls?: NullsOrder
|
|
@@ -104560,6 +106043,10 @@ export namespace Prisma {
|
|
|
104560
106043
|
_count?: SortOrder
|
|
104561
106044
|
}
|
|
104562
106045
|
|
|
106046
|
+
export type CreatorFlagOrderByRelationAggregateInput = {
|
|
106047
|
+
_count?: SortOrder
|
|
106048
|
+
}
|
|
106049
|
+
|
|
104563
106050
|
export type UserOrderByRelevanceInput = {
|
|
104564
106051
|
fields: UserOrderByRelevanceFieldEnum | UserOrderByRelevanceFieldEnum[]
|
|
104565
106052
|
sort: SortOrder
|
|
@@ -109514,6 +111001,62 @@ export namespace Prisma {
|
|
|
109514
111001
|
discountCodeId?: SortOrder
|
|
109515
111002
|
}
|
|
109516
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
|
+
|
|
109517
111060
|
export type UserCreateNestedOneWithoutReferredUsersInput = {
|
|
109518
111061
|
create?: XOR<UserCreateWithoutReferredUsersInput, UserUncheckedCreateWithoutReferredUsersInput>
|
|
109519
111062
|
connectOrCreate?: UserCreateOrConnectWithoutReferredUsersInput
|
|
@@ -109653,6 +111196,27 @@ export namespace Prisma {
|
|
|
109653
111196
|
connect?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
109654
111197
|
}
|
|
109655
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
|
+
|
|
109656
111220
|
export type UserUncheckedCreateNestedManyWithoutReferrerInput = {
|
|
109657
111221
|
create?: XOR<UserCreateWithoutReferrerInput, UserUncheckedCreateWithoutReferrerInput> | UserCreateWithoutReferrerInput[] | UserUncheckedCreateWithoutReferrerInput[]
|
|
109658
111222
|
connectOrCreate?: UserCreateOrConnectWithoutReferrerInput | UserCreateOrConnectWithoutReferrerInput[]
|
|
@@ -109786,6 +111350,27 @@ export namespace Prisma {
|
|
|
109786
111350
|
connect?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
109787
111351
|
}
|
|
109788
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
|
+
|
|
109789
111374
|
export type StringFieldUpdateOperationsInput = {
|
|
109790
111375
|
set?: string
|
|
109791
111376
|
}
|
|
@@ -110072,6 +111657,48 @@ export namespace Prisma {
|
|
|
110072
111657
|
deleteMany?: ImpactRadiusEventScalarWhereInput | ImpactRadiusEventScalarWhereInput[]
|
|
110073
111658
|
}
|
|
110074
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
|
+
|
|
110075
111702
|
export type IntFieldUpdateOperationsInput = {
|
|
110076
111703
|
set?: number
|
|
110077
111704
|
increment?: number
|
|
@@ -110332,6 +111959,48 @@ export namespace Prisma {
|
|
|
110332
111959
|
deleteMany?: ImpactRadiusEventScalarWhereInput | ImpactRadiusEventScalarWhereInput[]
|
|
110333
111960
|
}
|
|
110334
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
|
+
|
|
110335
112004
|
export type UserCreateNestedOneWithoutLogsInput = {
|
|
110336
112005
|
create?: XOR<UserCreateWithoutLogsInput, UserUncheckedCreateWithoutLogsInput>
|
|
110337
112006
|
connectOrCreate?: UserCreateOrConnectWithoutLogsInput
|
|
@@ -115922,6 +117591,50 @@ export namespace Prisma {
|
|
|
115922
117591
|
update?: XOR<XOR<ShopifyDiscountCodeUpdateToOneWithWhereWithoutShopifySalesInput, ShopifyDiscountCodeUpdateWithoutShopifySalesInput>, ShopifyDiscountCodeUncheckedUpdateWithoutShopifySalesInput>
|
|
115923
117592
|
}
|
|
115924
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
|
+
|
|
115925
117638
|
export type NestedIntFilter<$PrismaModel = never> = {
|
|
115926
117639
|
equals?: number | IntFieldRefInput<$PrismaModel>
|
|
115927
117640
|
in?: number[] | ListIntFieldRefInput<$PrismaModel>
|
|
@@ -116361,6 +118074,9 @@ export namespace Prisma {
|
|
|
116361
118074
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
116362
118075
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
116363
118076
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
118077
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
118078
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
118079
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
116364
118080
|
}
|
|
116365
118081
|
|
|
116366
118082
|
export type UserUncheckedCreateWithoutReferredUsersInput = {
|
|
@@ -116404,6 +118120,9 @@ export namespace Prisma {
|
|
|
116404
118120
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
116405
118121
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
116406
118122
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
118123
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
118124
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
118125
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
116407
118126
|
}
|
|
116408
118127
|
|
|
116409
118128
|
export type UserCreateOrConnectWithoutReferredUsersInput = {
|
|
@@ -116451,6 +118170,9 @@ export namespace Prisma {
|
|
|
116451
118170
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
116452
118171
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
116453
118172
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
118173
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
118174
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
118175
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
116454
118176
|
}
|
|
116455
118177
|
|
|
116456
118178
|
export type UserUncheckedCreateWithoutReferrerInput = {
|
|
@@ -116494,6 +118216,9 @@ export namespace Prisma {
|
|
|
116494
118216
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
116495
118217
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
116496
118218
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
118219
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
118220
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
118221
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
116497
118222
|
}
|
|
116498
118223
|
|
|
116499
118224
|
export type UserCreateOrConnectWithoutReferrerInput = {
|
|
@@ -117334,6 +119059,99 @@ export namespace Prisma {
|
|
|
117334
119059
|
skipDuplicates?: boolean
|
|
117335
119060
|
}
|
|
117336
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
|
+
|
|
117337
119155
|
export type UserUpsertWithoutReferredUsersInput = {
|
|
117338
119156
|
update: XOR<UserUpdateWithoutReferredUsersInput, UserUncheckedUpdateWithoutReferredUsersInput>
|
|
117339
119157
|
create: XOR<UserCreateWithoutReferredUsersInput, UserUncheckedCreateWithoutReferredUsersInput>
|
|
@@ -117385,6 +119203,9 @@ export namespace Prisma {
|
|
|
117385
119203
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
117386
119204
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
117387
119205
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
119206
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
119207
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
119208
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
117388
119209
|
}
|
|
117389
119210
|
|
|
117390
119211
|
export type UserUncheckedUpdateWithoutReferredUsersInput = {
|
|
@@ -117428,6 +119249,9 @@ export namespace Prisma {
|
|
|
117428
119249
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
117429
119250
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
117430
119251
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
119252
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
119253
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
119254
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
117431
119255
|
}
|
|
117432
119256
|
|
|
117433
119257
|
export type UserUpsertWithWhereUniqueWithoutReferrerInput = {
|
|
@@ -118233,6 +120057,69 @@ export namespace Prisma {
|
|
|
118233
120057
|
optInId?: IntNullableFilter<"ImpactRadiusEvent"> | number | null
|
|
118234
120058
|
}
|
|
118235
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
|
+
|
|
118236
120123
|
export type UserCreateWithoutLogsInput = {
|
|
118237
120124
|
role: string
|
|
118238
120125
|
email?: string | null
|
|
@@ -118273,6 +120160,9 @@ export namespace Prisma {
|
|
|
118273
120160
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
118274
120161
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
118275
120162
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
120163
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
120164
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
120165
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
118276
120166
|
}
|
|
118277
120167
|
|
|
118278
120168
|
export type UserUncheckedCreateWithoutLogsInput = {
|
|
@@ -118316,6 +120206,9 @@ export namespace Prisma {
|
|
|
118316
120206
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
118317
120207
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
118318
120208
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
120209
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
120210
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
120211
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
118319
120212
|
}
|
|
118320
120213
|
|
|
118321
120214
|
export type UserCreateOrConnectWithoutLogsInput = {
|
|
@@ -118374,6 +120267,9 @@ export namespace Prisma {
|
|
|
118374
120267
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
118375
120268
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
118376
120269
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
120270
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
120271
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
120272
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
118377
120273
|
}
|
|
118378
120274
|
|
|
118379
120275
|
export type UserUncheckedUpdateWithoutLogsInput = {
|
|
@@ -118417,6 +120313,9 @@ export namespace Prisma {
|
|
|
118417
120313
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
118418
120314
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
118419
120315
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
120316
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
120317
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
120318
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
118420
120319
|
}
|
|
118421
120320
|
|
|
118422
120321
|
export type CreatorToCategoryCreateWithoutCreatorProfileInput = {
|
|
@@ -118477,6 +120376,9 @@ export namespace Prisma {
|
|
|
118477
120376
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
118478
120377
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
118479
120378
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
120379
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
120380
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
120381
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
118480
120382
|
}
|
|
118481
120383
|
|
|
118482
120384
|
export type UserUncheckedCreateWithoutCreatorProfileInput = {
|
|
@@ -118520,6 +120422,9 @@ export namespace Prisma {
|
|
|
118520
120422
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
118521
120423
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
118522
120424
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
120425
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
120426
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
120427
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
118523
120428
|
}
|
|
118524
120429
|
|
|
118525
120430
|
export type UserCreateOrConnectWithoutCreatorProfileInput = {
|
|
@@ -118602,6 +120507,9 @@ export namespace Prisma {
|
|
|
118602
120507
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
118603
120508
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
118604
120509
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
120510
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
120511
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
120512
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
118605
120513
|
}
|
|
118606
120514
|
|
|
118607
120515
|
export type UserUncheckedUpdateWithoutCreatorProfileInput = {
|
|
@@ -118645,6 +120553,9 @@ export namespace Prisma {
|
|
|
118645
120553
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
118646
120554
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
118647
120555
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
120556
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
120557
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
120558
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
118648
120559
|
}
|
|
118649
120560
|
|
|
118650
120561
|
export type UserCreateWithoutInstagramProfileInput = {
|
|
@@ -118687,6 +120598,9 @@ export namespace Prisma {
|
|
|
118687
120598
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
118688
120599
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
118689
120600
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
120601
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
120602
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
120603
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
118690
120604
|
}
|
|
118691
120605
|
|
|
118692
120606
|
export type UserUncheckedCreateWithoutInstagramProfileInput = {
|
|
@@ -118730,6 +120644,9 @@ export namespace Prisma {
|
|
|
118730
120644
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
118731
120645
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
118732
120646
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
120647
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
120648
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
120649
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
118733
120650
|
}
|
|
118734
120651
|
|
|
118735
120652
|
export type UserCreateOrConnectWithoutInstagramProfileInput = {
|
|
@@ -118870,6 +120787,9 @@ export namespace Prisma {
|
|
|
118870
120787
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
118871
120788
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
118872
120789
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
120790
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
120791
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
120792
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
118873
120793
|
}
|
|
118874
120794
|
|
|
118875
120795
|
export type UserUncheckedUpdateWithoutInstagramProfileInput = {
|
|
@@ -118913,6 +120833,9 @@ export namespace Prisma {
|
|
|
118913
120833
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
118914
120834
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
118915
120835
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
120836
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
120837
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
120838
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
118916
120839
|
}
|
|
118917
120840
|
|
|
118918
120841
|
export type BrandUpsertWithoutInstagramProfileInput = {
|
|
@@ -119043,6 +120966,9 @@ export namespace Prisma {
|
|
|
119043
120966
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
119044
120967
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
119045
120968
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
120969
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
120970
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
120971
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
119046
120972
|
}
|
|
119047
120973
|
|
|
119048
120974
|
export type UserUncheckedCreateWithoutTiktokProfileInput = {
|
|
@@ -119086,6 +121012,9 @@ export namespace Prisma {
|
|
|
119086
121012
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
119087
121013
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
119088
121014
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
121015
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
121016
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
121017
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
119089
121018
|
}
|
|
119090
121019
|
|
|
119091
121020
|
export type UserCreateOrConnectWithoutTiktokProfileInput = {
|
|
@@ -119226,6 +121155,9 @@ export namespace Prisma {
|
|
|
119226
121155
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
119227
121156
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
119228
121157
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
121158
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
121159
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
121160
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
119229
121161
|
}
|
|
119230
121162
|
|
|
119231
121163
|
export type UserUncheckedUpdateWithoutTiktokProfileInput = {
|
|
@@ -119269,6 +121201,9 @@ export namespace Prisma {
|
|
|
119269
121201
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
119270
121202
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
119271
121203
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
121204
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
121205
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
121206
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
119272
121207
|
}
|
|
119273
121208
|
|
|
119274
121209
|
export type BrandUpsertWithoutTiktokProfileInput = {
|
|
@@ -119399,6 +121334,9 @@ export namespace Prisma {
|
|
|
119399
121334
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
119400
121335
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
119401
121336
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
121337
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
121338
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
121339
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
119402
121340
|
}
|
|
119403
121341
|
|
|
119404
121342
|
export type UserUncheckedCreateWithoutYoutubeProfileInput = {
|
|
@@ -119442,6 +121380,9 @@ export namespace Prisma {
|
|
|
119442
121380
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
119443
121381
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
119444
121382
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
121383
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
121384
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
121385
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
119445
121386
|
}
|
|
119446
121387
|
|
|
119447
121388
|
export type UserCreateOrConnectWithoutYoutubeProfileInput = {
|
|
@@ -119582,6 +121523,9 @@ export namespace Prisma {
|
|
|
119582
121523
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
119583
121524
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
119584
121525
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
121526
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
121527
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
121528
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
119585
121529
|
}
|
|
119586
121530
|
|
|
119587
121531
|
export type UserUncheckedUpdateWithoutYoutubeProfileInput = {
|
|
@@ -119625,6 +121569,9 @@ export namespace Prisma {
|
|
|
119625
121569
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
119626
121570
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
119627
121571
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
121572
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
121573
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
121574
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
119628
121575
|
}
|
|
119629
121576
|
|
|
119630
121577
|
export type BrandUpsertWithoutYoutubeProfileInput = {
|
|
@@ -119755,6 +121702,9 @@ export namespace Prisma {
|
|
|
119755
121702
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
119756
121703
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
119757
121704
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
121705
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
121706
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
121707
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
119758
121708
|
}
|
|
119759
121709
|
|
|
119760
121710
|
export type UserUncheckedCreateWithoutTwitchProfileInput = {
|
|
@@ -119798,6 +121748,9 @@ export namespace Prisma {
|
|
|
119798
121748
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
119799
121749
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
119800
121750
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
121751
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
121752
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
121753
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
119801
121754
|
}
|
|
119802
121755
|
|
|
119803
121756
|
export type UserCreateOrConnectWithoutTwitchProfileInput = {
|
|
@@ -119856,6 +121809,9 @@ export namespace Prisma {
|
|
|
119856
121809
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
119857
121810
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
119858
121811
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
121812
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
121813
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
121814
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
119859
121815
|
}
|
|
119860
121816
|
|
|
119861
121817
|
export type UserUncheckedUpdateWithoutTwitchProfileInput = {
|
|
@@ -119899,6 +121855,9 @@ export namespace Prisma {
|
|
|
119899
121855
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
119900
121856
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
119901
121857
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
121858
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
121859
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
121860
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
119902
121861
|
}
|
|
119903
121862
|
|
|
119904
121863
|
export type UserCreateWithoutFacebookProfileInput = {
|
|
@@ -119941,6 +121900,9 @@ export namespace Prisma {
|
|
|
119941
121900
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
119942
121901
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
119943
121902
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
121903
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
121904
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
121905
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
119944
121906
|
}
|
|
119945
121907
|
|
|
119946
121908
|
export type UserUncheckedCreateWithoutFacebookProfileInput = {
|
|
@@ -119984,6 +121946,9 @@ export namespace Prisma {
|
|
|
119984
121946
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
119985
121947
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
119986
121948
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
121949
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
121950
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
121951
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
119987
121952
|
}
|
|
119988
121953
|
|
|
119989
121954
|
export type UserCreateOrConnectWithoutFacebookProfileInput = {
|
|
@@ -120042,6 +122007,9 @@ export namespace Prisma {
|
|
|
120042
122007
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
120043
122008
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
120044
122009
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
122010
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
122011
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
122012
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
120045
122013
|
}
|
|
120046
122014
|
|
|
120047
122015
|
export type UserUncheckedUpdateWithoutFacebookProfileInput = {
|
|
@@ -120085,6 +122053,9 @@ export namespace Prisma {
|
|
|
120085
122053
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
120086
122054
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
120087
122055
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
122056
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
122057
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
122058
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
120088
122059
|
}
|
|
120089
122060
|
|
|
120090
122061
|
export type UserCreateWithoutTwitterProfileInput = {
|
|
@@ -120127,6 +122098,9 @@ export namespace Prisma {
|
|
|
120127
122098
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
120128
122099
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
120129
122100
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
122101
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
122102
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
122103
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
120130
122104
|
}
|
|
120131
122105
|
|
|
120132
122106
|
export type UserUncheckedCreateWithoutTwitterProfileInput = {
|
|
@@ -120170,6 +122144,9 @@ export namespace Prisma {
|
|
|
120170
122144
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
120171
122145
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
120172
122146
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
122147
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
122148
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
122149
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
120173
122150
|
}
|
|
120174
122151
|
|
|
120175
122152
|
export type UserCreateOrConnectWithoutTwitterProfileInput = {
|
|
@@ -120228,6 +122205,9 @@ export namespace Prisma {
|
|
|
120228
122205
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
120229
122206
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
120230
122207
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
122208
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
122209
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
122210
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
120231
122211
|
}
|
|
120232
122212
|
|
|
120233
122213
|
export type UserUncheckedUpdateWithoutTwitterProfileInput = {
|
|
@@ -120271,6 +122251,9 @@ export namespace Prisma {
|
|
|
120271
122251
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
120272
122252
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
120273
122253
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
122254
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
122255
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
122256
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
120274
122257
|
}
|
|
120275
122258
|
|
|
120276
122259
|
export type UserCreateWithoutBrandProfilesInput = {
|
|
@@ -120313,6 +122296,9 @@ export namespace Prisma {
|
|
|
120313
122296
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
120314
122297
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
120315
122298
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
122299
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
122300
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
122301
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
120316
122302
|
}
|
|
120317
122303
|
|
|
120318
122304
|
export type UserUncheckedCreateWithoutBrandProfilesInput = {
|
|
@@ -120356,6 +122342,9 @@ export namespace Prisma {
|
|
|
120356
122342
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
120357
122343
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
120358
122344
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
122345
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
122346
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
122347
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
120359
122348
|
}
|
|
120360
122349
|
|
|
120361
122350
|
export type UserCreateOrConnectWithoutBrandProfilesInput = {
|
|
@@ -120496,6 +122485,9 @@ export namespace Prisma {
|
|
|
120496
122485
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
120497
122486
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
120498
122487
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
122488
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
122489
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
122490
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
120499
122491
|
}
|
|
120500
122492
|
|
|
120501
122493
|
export type UserUncheckedUpdateWithoutBrandProfilesInput = {
|
|
@@ -120539,6 +122531,9 @@ export namespace Prisma {
|
|
|
120539
122531
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
120540
122532
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
120541
122533
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
122534
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
122535
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
122536
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
120542
122537
|
}
|
|
120543
122538
|
|
|
120544
122539
|
export type BrandUpsertWithoutBrandUsersInput = {
|
|
@@ -120669,6 +122664,9 @@ export namespace Prisma {
|
|
|
120669
122664
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
120670
122665
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
120671
122666
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
122667
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
122668
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
122669
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
120672
122670
|
}
|
|
120673
122671
|
|
|
120674
122672
|
export type UserUncheckedCreateWithoutAssignedBrandsInput = {
|
|
@@ -120712,6 +122710,9 @@ export namespace Prisma {
|
|
|
120712
122710
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
120713
122711
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
120714
122712
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
122713
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
122714
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
122715
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
120715
122716
|
}
|
|
120716
122717
|
|
|
120717
122718
|
export type UserCreateOrConnectWithoutAssignedBrandsInput = {
|
|
@@ -121781,6 +123782,9 @@ export namespace Prisma {
|
|
|
121781
123782
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
121782
123783
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
121783
123784
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
123785
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
123786
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
123787
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
121784
123788
|
}
|
|
121785
123789
|
|
|
121786
123790
|
export type UserUncheckedUpdateWithoutAssignedBrandsInput = {
|
|
@@ -121824,6 +123828,9 @@ export namespace Prisma {
|
|
|
121824
123828
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
121825
123829
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
121826
123830
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
123831
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
123832
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
123833
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
121827
123834
|
}
|
|
121828
123835
|
|
|
121829
123836
|
export type InstagramProfileUpsertWithoutBrandInput = {
|
|
@@ -124049,6 +126056,9 @@ export namespace Prisma {
|
|
|
124049
126056
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
124050
126057
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
124051
126058
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
126059
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
126060
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
126061
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
124052
126062
|
}
|
|
124053
126063
|
|
|
124054
126064
|
export type UserUncheckedCreateWithoutMessagesInput = {
|
|
@@ -124092,6 +126102,9 @@ export namespace Prisma {
|
|
|
124092
126102
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
124093
126103
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
124094
126104
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
126105
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
126106
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
126107
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
124095
126108
|
}
|
|
124096
126109
|
|
|
124097
126110
|
export type UserCreateOrConnectWithoutMessagesInput = {
|
|
@@ -124170,6 +126183,9 @@ export namespace Prisma {
|
|
|
124170
126183
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
124171
126184
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
124172
126185
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
126186
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
126187
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
126188
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
124173
126189
|
}
|
|
124174
126190
|
|
|
124175
126191
|
export type UserUncheckedUpdateWithoutMessagesInput = {
|
|
@@ -124213,6 +126229,9 @@ export namespace Prisma {
|
|
|
124213
126229
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
124214
126230
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
124215
126231
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
126232
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
126233
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
126234
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
124216
126235
|
}
|
|
124217
126236
|
|
|
124218
126237
|
export type ChatUpsertWithoutMessagesInput = {
|
|
@@ -125313,6 +127332,9 @@ export namespace Prisma {
|
|
|
125313
127332
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
125314
127333
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
125315
127334
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
127335
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
127336
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
127337
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
125316
127338
|
}
|
|
125317
127339
|
|
|
125318
127340
|
export type UserUncheckedCreateWithoutCampaignPinsInput = {
|
|
@@ -125356,6 +127378,9 @@ export namespace Prisma {
|
|
|
125356
127378
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
125357
127379
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
125358
127380
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
127381
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
127382
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
127383
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
125359
127384
|
}
|
|
125360
127385
|
|
|
125361
127386
|
export type UserCreateOrConnectWithoutCampaignPinsInput = {
|
|
@@ -125560,6 +127585,9 @@ export namespace Prisma {
|
|
|
125560
127585
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
125561
127586
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
125562
127587
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
127588
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
127589
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
127590
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
125563
127591
|
}
|
|
125564
127592
|
|
|
125565
127593
|
export type UserUncheckedUpdateWithoutCampaignPinsInput = {
|
|
@@ -125603,6 +127631,9 @@ export namespace Prisma {
|
|
|
125603
127631
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
125604
127632
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
125605
127633
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
127634
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
127635
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
127636
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
125606
127637
|
}
|
|
125607
127638
|
|
|
125608
127639
|
export type CampaignUpsertWithoutCampaignPinsInput = {
|
|
@@ -129422,6 +131453,9 @@ export namespace Prisma {
|
|
|
129422
131453
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
129423
131454
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
129424
131455
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
131456
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
131457
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
131458
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
129425
131459
|
}
|
|
129426
131460
|
|
|
129427
131461
|
export type UserUncheckedCreateWithoutOptInsInput = {
|
|
@@ -129465,6 +131499,9 @@ export namespace Prisma {
|
|
|
129465
131499
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
129466
131500
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
129467
131501
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
131502
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
131503
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
131504
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
129468
131505
|
}
|
|
129469
131506
|
|
|
129470
131507
|
export type UserCreateOrConnectWithoutOptInsInput = {
|
|
@@ -129988,6 +132025,9 @@ export namespace Prisma {
|
|
|
129988
132025
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
129989
132026
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
129990
132027
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
132028
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
132029
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
132030
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
129991
132031
|
}
|
|
129992
132032
|
|
|
129993
132033
|
export type UserUncheckedUpdateWithoutOptInsInput = {
|
|
@@ -130031,6 +132071,9 @@ export namespace Prisma {
|
|
|
130031
132071
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
130032
132072
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
130033
132073
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
132074
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
132075
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
132076
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
130034
132077
|
}
|
|
130035
132078
|
|
|
130036
132079
|
export type CampaignUpsertWithoutOptInsInput = {
|
|
@@ -130879,6 +132922,9 @@ export namespace Prisma {
|
|
|
130879
132922
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
130880
132923
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
130881
132924
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
132925
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
132926
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
132927
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
130882
132928
|
}
|
|
130883
132929
|
|
|
130884
132930
|
export type UserUncheckedCreateWithoutSocialPostsInput = {
|
|
@@ -130922,6 +132968,9 @@ export namespace Prisma {
|
|
|
130922
132968
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
130923
132969
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
130924
132970
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
132971
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
132972
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
132973
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
130925
132974
|
}
|
|
130926
132975
|
|
|
130927
132976
|
export type UserCreateOrConnectWithoutSocialPostsInput = {
|
|
@@ -131145,6 +133194,9 @@ export namespace Prisma {
|
|
|
131145
133194
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
131146
133195
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
131147
133196
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
133197
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
133198
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
133199
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
131148
133200
|
}
|
|
131149
133201
|
|
|
131150
133202
|
export type UserUncheckedUpdateWithoutSocialPostsInput = {
|
|
@@ -131188,6 +133240,9 @@ export namespace Prisma {
|
|
|
131188
133240
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
131189
133241
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
131190
133242
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
133243
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
133244
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
133245
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
131191
133246
|
}
|
|
131192
133247
|
|
|
131193
133248
|
export type CampaignUpsertWithoutSocialPostsInput = {
|
|
@@ -131692,6 +133747,9 @@ export namespace Prisma {
|
|
|
131692
133747
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
131693
133748
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
131694
133749
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
133750
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
133751
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
133752
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
131695
133753
|
}
|
|
131696
133754
|
|
|
131697
133755
|
export type UserUncheckedCreateWithoutPaymentTransactionsInput = {
|
|
@@ -131735,6 +133793,9 @@ export namespace Prisma {
|
|
|
131735
133793
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
131736
133794
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
131737
133795
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
133796
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
133797
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
133798
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
131738
133799
|
}
|
|
131739
133800
|
|
|
131740
133801
|
export type UserCreateOrConnectWithoutPaymentTransactionsInput = {
|
|
@@ -131945,6 +134006,9 @@ export namespace Prisma {
|
|
|
131945
134006
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
131946
134007
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
131947
134008
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
134009
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
134010
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
134011
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
131948
134012
|
}
|
|
131949
134013
|
|
|
131950
134014
|
export type UserUncheckedUpdateWithoutPaymentTransactionsInput = {
|
|
@@ -131988,6 +134052,9 @@ export namespace Prisma {
|
|
|
131988
134052
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
131989
134053
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
131990
134054
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
134055
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
134056
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
134057
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
131991
134058
|
}
|
|
131992
134059
|
|
|
131993
134060
|
export type PaymentTransactionUpsertWithoutNextTransactionInput = {
|
|
@@ -132820,6 +134887,9 @@ export namespace Prisma {
|
|
|
132820
134887
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
132821
134888
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
132822
134889
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
134890
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
134891
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
134892
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
132823
134893
|
}
|
|
132824
134894
|
|
|
132825
134895
|
export type UserUncheckedCreateWithoutAffiliateLinksInput = {
|
|
@@ -132863,6 +134933,9 @@ export namespace Prisma {
|
|
|
132863
134933
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
132864
134934
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
132865
134935
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
134936
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
134937
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
134938
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
132866
134939
|
}
|
|
132867
134940
|
|
|
132868
134941
|
export type UserCreateOrConnectWithoutAffiliateLinksInput = {
|
|
@@ -132963,6 +135036,9 @@ export namespace Prisma {
|
|
|
132963
135036
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
132964
135037
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
132965
135038
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
135039
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
135040
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
135041
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
132966
135042
|
}
|
|
132967
135043
|
|
|
132968
135044
|
export type UserUncheckedUpdateWithoutAffiliateLinksInput = {
|
|
@@ -133006,6 +135082,9 @@ export namespace Prisma {
|
|
|
133006
135082
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
133007
135083
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
133008
135084
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
135085
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
135086
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
135087
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
133009
135088
|
}
|
|
133010
135089
|
|
|
133011
135090
|
export type BrandAffiliateLinkUpsertWithoutAffiliateLinksInput = {
|
|
@@ -135239,6 +137318,9 @@ export namespace Prisma {
|
|
|
135239
137318
|
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
135240
137319
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
135241
137320
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
137321
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
137322
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
137323
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
135242
137324
|
}
|
|
135243
137325
|
|
|
135244
137326
|
export type UserUncheckedCreateWithoutSocialProfilesInput = {
|
|
@@ -135282,6 +137364,9 @@ export namespace Prisma {
|
|
|
135282
137364
|
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
135283
137365
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
135284
137366
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
137367
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
137368
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
137369
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
135285
137370
|
}
|
|
135286
137371
|
|
|
135287
137372
|
export type UserCreateOrConnectWithoutSocialProfilesInput = {
|
|
@@ -135372,6 +137457,9 @@ export namespace Prisma {
|
|
|
135372
137457
|
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
135373
137458
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
135374
137459
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
137460
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
137461
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
137462
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
135375
137463
|
}
|
|
135376
137464
|
|
|
135377
137465
|
export type UserUncheckedUpdateWithoutSocialProfilesInput = {
|
|
@@ -135415,6 +137503,9 @@ export namespace Prisma {
|
|
|
135415
137503
|
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
135416
137504
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
135417
137505
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
137506
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
137507
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
137508
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
135418
137509
|
}
|
|
135419
137510
|
|
|
135420
137511
|
export type BrandCreateWithoutMessageTemplateInput = {
|
|
@@ -136578,6 +138669,9 @@ export namespace Prisma {
|
|
|
136578
138669
|
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
136579
138670
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
136580
138671
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
138672
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
138673
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
138674
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
136581
138675
|
}
|
|
136582
138676
|
|
|
136583
138677
|
export type UserUncheckedCreateWithoutRakutenActivityInput = {
|
|
@@ -136621,6 +138715,9 @@ export namespace Prisma {
|
|
|
136621
138715
|
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
136622
138716
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
136623
138717
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
138718
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
138719
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
138720
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
136624
138721
|
}
|
|
136625
138722
|
|
|
136626
138723
|
export type UserCreateOrConnectWithoutRakutenActivityInput = {
|
|
@@ -136679,6 +138776,9 @@ export namespace Prisma {
|
|
|
136679
138776
|
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
136680
138777
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
136681
138778
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
138779
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
138780
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
138781
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
136682
138782
|
}
|
|
136683
138783
|
|
|
136684
138784
|
export type UserUncheckedUpdateWithoutRakutenActivityInput = {
|
|
@@ -136722,6 +138822,9 @@ export namespace Prisma {
|
|
|
136722
138822
|
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
136723
138823
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
136724
138824
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
138825
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
138826
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
138827
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
136725
138828
|
}
|
|
136726
138829
|
|
|
136727
138830
|
export type UserCreateWithoutImpactRadiusEventsInput = {
|
|
@@ -136764,6 +138867,9 @@ export namespace Prisma {
|
|
|
136764
138867
|
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
136765
138868
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
136766
138869
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
138870
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
138871
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
138872
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
136767
138873
|
}
|
|
136768
138874
|
|
|
136769
138875
|
export type UserUncheckedCreateWithoutImpactRadiusEventsInput = {
|
|
@@ -136807,6 +138913,9 @@ export namespace Prisma {
|
|
|
136807
138913
|
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
136808
138914
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
136809
138915
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
138916
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
138917
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
138918
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
136810
138919
|
}
|
|
136811
138920
|
|
|
136812
138921
|
export type UserCreateOrConnectWithoutImpactRadiusEventsInput = {
|
|
@@ -137015,6 +139124,9 @@ export namespace Prisma {
|
|
|
137015
139124
|
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
137016
139125
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
137017
139126
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
139127
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
139128
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
139129
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
137018
139130
|
}
|
|
137019
139131
|
|
|
137020
139132
|
export type UserUncheckedUpdateWithoutImpactRadiusEventsInput = {
|
|
@@ -137058,6 +139170,9 @@ export namespace Prisma {
|
|
|
137058
139170
|
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
137059
139171
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
137060
139172
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
139173
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
139174
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
139175
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
137061
139176
|
}
|
|
137062
139177
|
|
|
137063
139178
|
export type BrandUpsertWithoutImpactRadiusEventsInput = {
|
|
@@ -139883,6 +141998,600 @@ export namespace Prisma {
|
|
|
139883
141998
|
optInId?: IntFieldUpdateOperationsInput | number
|
|
139884
141999
|
}
|
|
139885
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
|
+
|
|
139886
142595
|
export type UserCreateManyReferrerInput = {
|
|
139887
142596
|
id?: number
|
|
139888
142597
|
role: string
|
|
@@ -140070,6 +142779,39 @@ export namespace Prisma {
|
|
|
140070
142779
|
optInId?: number | null
|
|
140071
142780
|
}
|
|
140072
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
|
+
|
|
140073
142815
|
export type UserUpdateWithoutReferrerInput = {
|
|
140074
142816
|
role?: StringFieldUpdateOperationsInput | string
|
|
140075
142817
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -140110,6 +142852,9 @@ export namespace Prisma {
|
|
|
140110
142852
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
140111
142853
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
140112
142854
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
142855
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
142856
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
142857
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
140113
142858
|
}
|
|
140114
142859
|
|
|
140115
142860
|
export type UserUncheckedUpdateWithoutReferrerInput = {
|
|
@@ -140153,6 +142898,9 @@ export namespace Prisma {
|
|
|
140153
142898
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
140154
142899
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
140155
142900
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
142901
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
142902
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
142903
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
140156
142904
|
}
|
|
140157
142905
|
|
|
140158
142906
|
export type UserUncheckedUpdateManyWithoutReferrerInput = {
|
|
@@ -140736,6 +143484,102 @@ export namespace Prisma {
|
|
|
140736
143484
|
optInId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
140737
143485
|
}
|
|
140738
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
|
+
|
|
140739
143583
|
export type CreatorToCategoryCreateManyCreatorProfileInput = {
|
|
140740
143584
|
categoryId: number
|
|
140741
143585
|
}
|
|
@@ -144424,6 +147268,10 @@ export namespace Prisma {
|
|
|
144424
147268
|
* @deprecated Use ShopifySaleDefaultArgs instead
|
|
144425
147269
|
*/
|
|
144426
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>
|
|
144427
147275
|
|
|
144428
147276
|
/**
|
|
144429
147277
|
* Batch Payload for updateMany & deleteMany & createMany
|