@creator.co/creatorco-prisma-client 1.0.49 → 1.0.50-alpha-73636ce
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 +26 -5
- package/index-browser.js +22 -1
- package/index.d.ts +3033 -57
- package/index.js +26 -5
- package/package.json +1 -1
- package/schema.prisma +24 -0
- package/wasm.js +22 -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
|
|
@@ -8787,6 +8900,7 @@ export namespace Prisma {
|
|
|
8787
8900
|
|
|
8788
8901
|
export type UserMinAggregateOutputType = {
|
|
8789
8902
|
id: number | null
|
|
8903
|
+
idmId: string | null
|
|
8790
8904
|
role: string | null
|
|
8791
8905
|
email: string | null
|
|
8792
8906
|
password: string | null
|
|
@@ -8810,6 +8924,7 @@ export namespace Prisma {
|
|
|
8810
8924
|
|
|
8811
8925
|
export type UserMaxAggregateOutputType = {
|
|
8812
8926
|
id: number | null
|
|
8927
|
+
idmId: string | null
|
|
8813
8928
|
role: string | null
|
|
8814
8929
|
email: string | null
|
|
8815
8930
|
password: string | null
|
|
@@ -8833,6 +8948,7 @@ export namespace Prisma {
|
|
|
8833
8948
|
|
|
8834
8949
|
export type UserCountAggregateOutputType = {
|
|
8835
8950
|
id: number
|
|
8951
|
+
idmId: number
|
|
8836
8952
|
role: number
|
|
8837
8953
|
email: number
|
|
8838
8954
|
password: number
|
|
@@ -8871,6 +8987,7 @@ export namespace Prisma {
|
|
|
8871
8987
|
|
|
8872
8988
|
export type UserMinAggregateInputType = {
|
|
8873
8989
|
id?: true
|
|
8990
|
+
idmId?: true
|
|
8874
8991
|
role?: true
|
|
8875
8992
|
email?: true
|
|
8876
8993
|
password?: true
|
|
@@ -8894,6 +9011,7 @@ export namespace Prisma {
|
|
|
8894
9011
|
|
|
8895
9012
|
export type UserMaxAggregateInputType = {
|
|
8896
9013
|
id?: true
|
|
9014
|
+
idmId?: true
|
|
8897
9015
|
role?: true
|
|
8898
9016
|
email?: true
|
|
8899
9017
|
password?: true
|
|
@@ -8917,6 +9035,7 @@ export namespace Prisma {
|
|
|
8917
9035
|
|
|
8918
9036
|
export type UserCountAggregateInputType = {
|
|
8919
9037
|
id?: true
|
|
9038
|
+
idmId?: true
|
|
8920
9039
|
role?: true
|
|
8921
9040
|
email?: true
|
|
8922
9041
|
password?: true
|
|
@@ -9028,6 +9147,7 @@ export namespace Prisma {
|
|
|
9028
9147
|
|
|
9029
9148
|
export type UserGroupByOutputType = {
|
|
9030
9149
|
id: number
|
|
9150
|
+
idmId: string | null
|
|
9031
9151
|
role: string
|
|
9032
9152
|
email: string | null
|
|
9033
9153
|
password: string | null
|
|
@@ -9071,6 +9191,7 @@ export namespace Prisma {
|
|
|
9071
9191
|
|
|
9072
9192
|
export type UserSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
9073
9193
|
id?: boolean
|
|
9194
|
+
idmId?: boolean
|
|
9074
9195
|
role?: boolean
|
|
9075
9196
|
email?: boolean
|
|
9076
9197
|
password?: boolean
|
|
@@ -9112,11 +9233,15 @@ export namespace Prisma {
|
|
|
9112
9233
|
socialProfiles?: boolean | User$socialProfilesArgs<ExtArgs>
|
|
9113
9234
|
rakutenActivity?: boolean | User$rakutenActivityArgs<ExtArgs>
|
|
9114
9235
|
impactRadiusEvents?: boolean | User$impactRadiusEventsArgs<ExtArgs>
|
|
9236
|
+
flagsAssigned?: boolean | User$flagsAssignedArgs<ExtArgs>
|
|
9237
|
+
flagsCreated?: boolean | User$flagsCreatedArgs<ExtArgs>
|
|
9238
|
+
flagsEdited?: boolean | User$flagsEditedArgs<ExtArgs>
|
|
9115
9239
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
9116
9240
|
}, ExtArgs["result"]["user"]>
|
|
9117
9241
|
|
|
9118
9242
|
export type UserSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
9119
9243
|
id?: boolean
|
|
9244
|
+
idmId?: boolean
|
|
9120
9245
|
role?: boolean
|
|
9121
9246
|
email?: boolean
|
|
9122
9247
|
password?: boolean
|
|
@@ -9142,6 +9267,7 @@ export namespace Prisma {
|
|
|
9142
9267
|
|
|
9143
9268
|
export type UserSelectScalar = {
|
|
9144
9269
|
id?: boolean
|
|
9270
|
+
idmId?: boolean
|
|
9145
9271
|
role?: boolean
|
|
9146
9272
|
email?: boolean
|
|
9147
9273
|
password?: boolean
|
|
@@ -9186,6 +9312,9 @@ export namespace Prisma {
|
|
|
9186
9312
|
socialProfiles?: boolean | User$socialProfilesArgs<ExtArgs>
|
|
9187
9313
|
rakutenActivity?: boolean | User$rakutenActivityArgs<ExtArgs>
|
|
9188
9314
|
impactRadiusEvents?: boolean | User$impactRadiusEventsArgs<ExtArgs>
|
|
9315
|
+
flagsAssigned?: boolean | User$flagsAssignedArgs<ExtArgs>
|
|
9316
|
+
flagsCreated?: boolean | User$flagsCreatedArgs<ExtArgs>
|
|
9317
|
+
flagsEdited?: boolean | User$flagsEditedArgs<ExtArgs>
|
|
9189
9318
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
9190
9319
|
}
|
|
9191
9320
|
export type UserIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -9216,9 +9345,13 @@ export namespace Prisma {
|
|
|
9216
9345
|
socialProfiles: Prisma.$SocialProfilePayload<ExtArgs>[]
|
|
9217
9346
|
rakutenActivity: Prisma.$RakutenActivityPayload<ExtArgs>[]
|
|
9218
9347
|
impactRadiusEvents: Prisma.$ImpactRadiusEventPayload<ExtArgs>[]
|
|
9348
|
+
flagsAssigned: Prisma.$CreatorFlagPayload<ExtArgs>[]
|
|
9349
|
+
flagsCreated: Prisma.$CreatorFlagPayload<ExtArgs>[]
|
|
9350
|
+
flagsEdited: Prisma.$CreatorFlagPayload<ExtArgs>[]
|
|
9219
9351
|
}
|
|
9220
9352
|
scalars: $Extensions.GetPayloadResult<{
|
|
9221
9353
|
id: number
|
|
9354
|
+
idmId: string | null
|
|
9222
9355
|
role: string
|
|
9223
9356
|
email: string | null
|
|
9224
9357
|
password: string | null
|
|
@@ -9671,6 +9804,12 @@ export namespace Prisma {
|
|
|
9671
9804
|
|
|
9672
9805
|
impactRadiusEvents<T extends User$impactRadiusEventsArgs<ExtArgs> = {}>(args?: Subset<T, User$impactRadiusEventsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ImpactRadiusEventPayload<ExtArgs>, T, 'findMany'> | Null>;
|
|
9673
9806
|
|
|
9807
|
+
flagsAssigned<T extends User$flagsAssignedArgs<ExtArgs> = {}>(args?: Subset<T, User$flagsAssignedArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CreatorFlagPayload<ExtArgs>, T, 'findMany'> | Null>;
|
|
9808
|
+
|
|
9809
|
+
flagsCreated<T extends User$flagsCreatedArgs<ExtArgs> = {}>(args?: Subset<T, User$flagsCreatedArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CreatorFlagPayload<ExtArgs>, T, 'findMany'> | Null>;
|
|
9810
|
+
|
|
9811
|
+
flagsEdited<T extends User$flagsEditedArgs<ExtArgs> = {}>(args?: Subset<T, User$flagsEditedArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CreatorFlagPayload<ExtArgs>, T, 'findMany'> | Null>;
|
|
9812
|
+
|
|
9674
9813
|
/**
|
|
9675
9814
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
9676
9815
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -9700,6 +9839,7 @@ export namespace Prisma {
|
|
|
9700
9839
|
*/
|
|
9701
9840
|
interface UserFieldRefs {
|
|
9702
9841
|
readonly id: FieldRef<"User", 'Int'>
|
|
9842
|
+
readonly idmId: FieldRef<"User", 'String'>
|
|
9703
9843
|
readonly role: FieldRef<"User", 'String'>
|
|
9704
9844
|
readonly email: FieldRef<"User", 'String'>
|
|
9705
9845
|
readonly password: FieldRef<"User", 'String'>
|
|
@@ -10417,6 +10557,66 @@ export namespace Prisma {
|
|
|
10417
10557
|
distinct?: ImpactRadiusEventScalarFieldEnum | ImpactRadiusEventScalarFieldEnum[]
|
|
10418
10558
|
}
|
|
10419
10559
|
|
|
10560
|
+
/**
|
|
10561
|
+
* User.flagsAssigned
|
|
10562
|
+
*/
|
|
10563
|
+
export type User$flagsAssignedArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10564
|
+
/**
|
|
10565
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
10566
|
+
*/
|
|
10567
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
10568
|
+
/**
|
|
10569
|
+
* Choose, which related nodes to fetch as well
|
|
10570
|
+
*/
|
|
10571
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
10572
|
+
where?: CreatorFlagWhereInput
|
|
10573
|
+
orderBy?: CreatorFlagOrderByWithRelationAndSearchRelevanceInput | CreatorFlagOrderByWithRelationAndSearchRelevanceInput[]
|
|
10574
|
+
cursor?: CreatorFlagWhereUniqueInput
|
|
10575
|
+
take?: number
|
|
10576
|
+
skip?: number
|
|
10577
|
+
distinct?: CreatorFlagScalarFieldEnum | CreatorFlagScalarFieldEnum[]
|
|
10578
|
+
}
|
|
10579
|
+
|
|
10580
|
+
/**
|
|
10581
|
+
* User.flagsCreated
|
|
10582
|
+
*/
|
|
10583
|
+
export type User$flagsCreatedArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10584
|
+
/**
|
|
10585
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
10586
|
+
*/
|
|
10587
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
10588
|
+
/**
|
|
10589
|
+
* Choose, which related nodes to fetch as well
|
|
10590
|
+
*/
|
|
10591
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
10592
|
+
where?: CreatorFlagWhereInput
|
|
10593
|
+
orderBy?: CreatorFlagOrderByWithRelationAndSearchRelevanceInput | CreatorFlagOrderByWithRelationAndSearchRelevanceInput[]
|
|
10594
|
+
cursor?: CreatorFlagWhereUniqueInput
|
|
10595
|
+
take?: number
|
|
10596
|
+
skip?: number
|
|
10597
|
+
distinct?: CreatorFlagScalarFieldEnum | CreatorFlagScalarFieldEnum[]
|
|
10598
|
+
}
|
|
10599
|
+
|
|
10600
|
+
/**
|
|
10601
|
+
* User.flagsEdited
|
|
10602
|
+
*/
|
|
10603
|
+
export type User$flagsEditedArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10604
|
+
/**
|
|
10605
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
10606
|
+
*/
|
|
10607
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
10608
|
+
/**
|
|
10609
|
+
* Choose, which related nodes to fetch as well
|
|
10610
|
+
*/
|
|
10611
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
10612
|
+
where?: CreatorFlagWhereInput
|
|
10613
|
+
orderBy?: CreatorFlagOrderByWithRelationAndSearchRelevanceInput | CreatorFlagOrderByWithRelationAndSearchRelevanceInput[]
|
|
10614
|
+
cursor?: CreatorFlagWhereUniqueInput
|
|
10615
|
+
take?: number
|
|
10616
|
+
skip?: number
|
|
10617
|
+
distinct?: CreatorFlagScalarFieldEnum | CreatorFlagScalarFieldEnum[]
|
|
10618
|
+
}
|
|
10619
|
+
|
|
10420
10620
|
/**
|
|
10421
10621
|
* User without action
|
|
10422
10622
|
*/
|
|
@@ -89964,6 +90164,1088 @@ export namespace Prisma {
|
|
|
89964
90164
|
}
|
|
89965
90165
|
|
|
89966
90166
|
|
|
90167
|
+
/**
|
|
90168
|
+
* Model CreatorFlag
|
|
90169
|
+
*/
|
|
90170
|
+
|
|
90171
|
+
export type AggregateCreatorFlag = {
|
|
90172
|
+
_count: CreatorFlagCountAggregateOutputType | null
|
|
90173
|
+
_avg: CreatorFlagAvgAggregateOutputType | null
|
|
90174
|
+
_sum: CreatorFlagSumAggregateOutputType | null
|
|
90175
|
+
_min: CreatorFlagMinAggregateOutputType | null
|
|
90176
|
+
_max: CreatorFlagMaxAggregateOutputType | null
|
|
90177
|
+
}
|
|
90178
|
+
|
|
90179
|
+
export type CreatorFlagAvgAggregateOutputType = {
|
|
90180
|
+
id: number | null
|
|
90181
|
+
userId: number | null
|
|
90182
|
+
flaggedByUserId: number | null
|
|
90183
|
+
editedByUserId: number | null
|
|
90184
|
+
}
|
|
90185
|
+
|
|
90186
|
+
export type CreatorFlagSumAggregateOutputType = {
|
|
90187
|
+
id: number | null
|
|
90188
|
+
userId: number | null
|
|
90189
|
+
flaggedByUserId: number | null
|
|
90190
|
+
editedByUserId: number | null
|
|
90191
|
+
}
|
|
90192
|
+
|
|
90193
|
+
export type CreatorFlagMinAggregateOutputType = {
|
|
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 CreatorFlagMaxAggregateOutputType = {
|
|
90206
|
+
id: number | null
|
|
90207
|
+
label: string | null
|
|
90208
|
+
comment: string | null
|
|
90209
|
+
color: string | null
|
|
90210
|
+
createdAt: Date | null
|
|
90211
|
+
updatedAt: Date | null
|
|
90212
|
+
userId: number | null
|
|
90213
|
+
flaggedByUserId: number | null
|
|
90214
|
+
editedByUserId: number | null
|
|
90215
|
+
}
|
|
90216
|
+
|
|
90217
|
+
export type CreatorFlagCountAggregateOutputType = {
|
|
90218
|
+
id: number
|
|
90219
|
+
label: number
|
|
90220
|
+
comment: number
|
|
90221
|
+
color: number
|
|
90222
|
+
createdAt: number
|
|
90223
|
+
updatedAt: number
|
|
90224
|
+
userId: number
|
|
90225
|
+
flaggedByUserId: number
|
|
90226
|
+
editedByUserId: number
|
|
90227
|
+
_all: number
|
|
90228
|
+
}
|
|
90229
|
+
|
|
90230
|
+
|
|
90231
|
+
export type CreatorFlagAvgAggregateInputType = {
|
|
90232
|
+
id?: true
|
|
90233
|
+
userId?: true
|
|
90234
|
+
flaggedByUserId?: true
|
|
90235
|
+
editedByUserId?: true
|
|
90236
|
+
}
|
|
90237
|
+
|
|
90238
|
+
export type CreatorFlagSumAggregateInputType = {
|
|
90239
|
+
id?: true
|
|
90240
|
+
userId?: true
|
|
90241
|
+
flaggedByUserId?: true
|
|
90242
|
+
editedByUserId?: true
|
|
90243
|
+
}
|
|
90244
|
+
|
|
90245
|
+
export type CreatorFlagMinAggregateInputType = {
|
|
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 CreatorFlagMaxAggregateInputType = {
|
|
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
|
+
}
|
|
90268
|
+
|
|
90269
|
+
export type CreatorFlagCountAggregateInputType = {
|
|
90270
|
+
id?: true
|
|
90271
|
+
label?: true
|
|
90272
|
+
comment?: true
|
|
90273
|
+
color?: true
|
|
90274
|
+
createdAt?: true
|
|
90275
|
+
updatedAt?: true
|
|
90276
|
+
userId?: true
|
|
90277
|
+
flaggedByUserId?: true
|
|
90278
|
+
editedByUserId?: true
|
|
90279
|
+
_all?: true
|
|
90280
|
+
}
|
|
90281
|
+
|
|
90282
|
+
export type CreatorFlagAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
90283
|
+
/**
|
|
90284
|
+
* Filter which CreatorFlag to aggregate.
|
|
90285
|
+
*/
|
|
90286
|
+
where?: CreatorFlagWhereInput
|
|
90287
|
+
/**
|
|
90288
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
90289
|
+
*
|
|
90290
|
+
* Determine the order of CreatorFlags to fetch.
|
|
90291
|
+
*/
|
|
90292
|
+
orderBy?: CreatorFlagOrderByWithRelationAndSearchRelevanceInput | CreatorFlagOrderByWithRelationAndSearchRelevanceInput[]
|
|
90293
|
+
/**
|
|
90294
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
90295
|
+
*
|
|
90296
|
+
* Sets the start position
|
|
90297
|
+
*/
|
|
90298
|
+
cursor?: CreatorFlagWhereUniqueInput
|
|
90299
|
+
/**
|
|
90300
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
90301
|
+
*
|
|
90302
|
+
* Take `±n` CreatorFlags from the position of the cursor.
|
|
90303
|
+
*/
|
|
90304
|
+
take?: number
|
|
90305
|
+
/**
|
|
90306
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
90307
|
+
*
|
|
90308
|
+
* Skip the first `n` CreatorFlags.
|
|
90309
|
+
*/
|
|
90310
|
+
skip?: number
|
|
90311
|
+
/**
|
|
90312
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
90313
|
+
*
|
|
90314
|
+
* Count returned CreatorFlags
|
|
90315
|
+
**/
|
|
90316
|
+
_count?: true | CreatorFlagCountAggregateInputType
|
|
90317
|
+
/**
|
|
90318
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
90319
|
+
*
|
|
90320
|
+
* Select which fields to average
|
|
90321
|
+
**/
|
|
90322
|
+
_avg?: CreatorFlagAvgAggregateInputType
|
|
90323
|
+
/**
|
|
90324
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
90325
|
+
*
|
|
90326
|
+
* Select which fields to sum
|
|
90327
|
+
**/
|
|
90328
|
+
_sum?: CreatorFlagSumAggregateInputType
|
|
90329
|
+
/**
|
|
90330
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
90331
|
+
*
|
|
90332
|
+
* Select which fields to find the minimum value
|
|
90333
|
+
**/
|
|
90334
|
+
_min?: CreatorFlagMinAggregateInputType
|
|
90335
|
+
/**
|
|
90336
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
90337
|
+
*
|
|
90338
|
+
* Select which fields to find the maximum value
|
|
90339
|
+
**/
|
|
90340
|
+
_max?: CreatorFlagMaxAggregateInputType
|
|
90341
|
+
}
|
|
90342
|
+
|
|
90343
|
+
export type GetCreatorFlagAggregateType<T extends CreatorFlagAggregateArgs> = {
|
|
90344
|
+
[P in keyof T & keyof AggregateCreatorFlag]: P extends '_count' | 'count'
|
|
90345
|
+
? T[P] extends true
|
|
90346
|
+
? number
|
|
90347
|
+
: GetScalarType<T[P], AggregateCreatorFlag[P]>
|
|
90348
|
+
: GetScalarType<T[P], AggregateCreatorFlag[P]>
|
|
90349
|
+
}
|
|
90350
|
+
|
|
90351
|
+
|
|
90352
|
+
|
|
90353
|
+
|
|
90354
|
+
export type CreatorFlagGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
90355
|
+
where?: CreatorFlagWhereInput
|
|
90356
|
+
orderBy?: CreatorFlagOrderByWithAggregationInput | CreatorFlagOrderByWithAggregationInput[]
|
|
90357
|
+
by: CreatorFlagScalarFieldEnum[] | CreatorFlagScalarFieldEnum
|
|
90358
|
+
having?: CreatorFlagScalarWhereWithAggregatesInput
|
|
90359
|
+
take?: number
|
|
90360
|
+
skip?: number
|
|
90361
|
+
_count?: CreatorFlagCountAggregateInputType | true
|
|
90362
|
+
_avg?: CreatorFlagAvgAggregateInputType
|
|
90363
|
+
_sum?: CreatorFlagSumAggregateInputType
|
|
90364
|
+
_min?: CreatorFlagMinAggregateInputType
|
|
90365
|
+
_max?: CreatorFlagMaxAggregateInputType
|
|
90366
|
+
}
|
|
90367
|
+
|
|
90368
|
+
export type CreatorFlagGroupByOutputType = {
|
|
90369
|
+
id: number
|
|
90370
|
+
label: string
|
|
90371
|
+
comment: string | null
|
|
90372
|
+
color: string
|
|
90373
|
+
createdAt: Date
|
|
90374
|
+
updatedAt: Date
|
|
90375
|
+
userId: number
|
|
90376
|
+
flaggedByUserId: number
|
|
90377
|
+
editedByUserId: number | null
|
|
90378
|
+
_count: CreatorFlagCountAggregateOutputType | null
|
|
90379
|
+
_avg: CreatorFlagAvgAggregateOutputType | null
|
|
90380
|
+
_sum: CreatorFlagSumAggregateOutputType | null
|
|
90381
|
+
_min: CreatorFlagMinAggregateOutputType | null
|
|
90382
|
+
_max: CreatorFlagMaxAggregateOutputType | null
|
|
90383
|
+
}
|
|
90384
|
+
|
|
90385
|
+
type GetCreatorFlagGroupByPayload<T extends CreatorFlagGroupByArgs> = Prisma.PrismaPromise<
|
|
90386
|
+
Array<
|
|
90387
|
+
PickEnumerable<CreatorFlagGroupByOutputType, T['by']> &
|
|
90388
|
+
{
|
|
90389
|
+
[P in ((keyof T) & (keyof CreatorFlagGroupByOutputType))]: P extends '_count'
|
|
90390
|
+
? T[P] extends boolean
|
|
90391
|
+
? number
|
|
90392
|
+
: GetScalarType<T[P], CreatorFlagGroupByOutputType[P]>
|
|
90393
|
+
: GetScalarType<T[P], CreatorFlagGroupByOutputType[P]>
|
|
90394
|
+
}
|
|
90395
|
+
>
|
|
90396
|
+
>
|
|
90397
|
+
|
|
90398
|
+
|
|
90399
|
+
export type CreatorFlagSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
90400
|
+
id?: boolean
|
|
90401
|
+
label?: boolean
|
|
90402
|
+
comment?: boolean
|
|
90403
|
+
color?: boolean
|
|
90404
|
+
createdAt?: boolean
|
|
90405
|
+
updatedAt?: boolean
|
|
90406
|
+
userId?: boolean
|
|
90407
|
+
flaggedByUserId?: boolean
|
|
90408
|
+
editedByUserId?: boolean
|
|
90409
|
+
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
90410
|
+
flaggedByUser?: boolean | UserDefaultArgs<ExtArgs>
|
|
90411
|
+
editedByUser?: boolean | CreatorFlag$editedByUserArgs<ExtArgs>
|
|
90412
|
+
}, ExtArgs["result"]["creatorFlag"]>
|
|
90413
|
+
|
|
90414
|
+
export type CreatorFlagSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
90415
|
+
id?: boolean
|
|
90416
|
+
label?: boolean
|
|
90417
|
+
comment?: boolean
|
|
90418
|
+
color?: boolean
|
|
90419
|
+
createdAt?: boolean
|
|
90420
|
+
updatedAt?: boolean
|
|
90421
|
+
userId?: boolean
|
|
90422
|
+
flaggedByUserId?: boolean
|
|
90423
|
+
editedByUserId?: boolean
|
|
90424
|
+
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
90425
|
+
flaggedByUser?: boolean | UserDefaultArgs<ExtArgs>
|
|
90426
|
+
editedByUser?: boolean | CreatorFlag$editedByUserArgs<ExtArgs>
|
|
90427
|
+
}, ExtArgs["result"]["creatorFlag"]>
|
|
90428
|
+
|
|
90429
|
+
export type CreatorFlagSelectScalar = {
|
|
90430
|
+
id?: boolean
|
|
90431
|
+
label?: boolean
|
|
90432
|
+
comment?: boolean
|
|
90433
|
+
color?: boolean
|
|
90434
|
+
createdAt?: boolean
|
|
90435
|
+
updatedAt?: boolean
|
|
90436
|
+
userId?: boolean
|
|
90437
|
+
flaggedByUserId?: boolean
|
|
90438
|
+
editedByUserId?: boolean
|
|
90439
|
+
}
|
|
90440
|
+
|
|
90441
|
+
export type CreatorFlagInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
90442
|
+
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
90443
|
+
flaggedByUser?: boolean | UserDefaultArgs<ExtArgs>
|
|
90444
|
+
editedByUser?: boolean | CreatorFlag$editedByUserArgs<ExtArgs>
|
|
90445
|
+
}
|
|
90446
|
+
export type CreatorFlagIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
90447
|
+
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
90448
|
+
flaggedByUser?: boolean | UserDefaultArgs<ExtArgs>
|
|
90449
|
+
editedByUser?: boolean | CreatorFlag$editedByUserArgs<ExtArgs>
|
|
90450
|
+
}
|
|
90451
|
+
|
|
90452
|
+
export type $CreatorFlagPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
90453
|
+
name: "CreatorFlag"
|
|
90454
|
+
objects: {
|
|
90455
|
+
user: Prisma.$UserPayload<ExtArgs>
|
|
90456
|
+
flaggedByUser: Prisma.$UserPayload<ExtArgs>
|
|
90457
|
+
editedByUser: Prisma.$UserPayload<ExtArgs> | null
|
|
90458
|
+
}
|
|
90459
|
+
scalars: $Extensions.GetPayloadResult<{
|
|
90460
|
+
id: number
|
|
90461
|
+
label: string
|
|
90462
|
+
comment: string | null
|
|
90463
|
+
color: string
|
|
90464
|
+
createdAt: Date
|
|
90465
|
+
updatedAt: Date
|
|
90466
|
+
userId: number
|
|
90467
|
+
flaggedByUserId: number
|
|
90468
|
+
editedByUserId: number | null
|
|
90469
|
+
}, ExtArgs["result"]["creatorFlag"]>
|
|
90470
|
+
composites: {}
|
|
90471
|
+
}
|
|
90472
|
+
|
|
90473
|
+
type CreatorFlagGetPayload<S extends boolean | null | undefined | CreatorFlagDefaultArgs> = $Result.GetResult<Prisma.$CreatorFlagPayload, S>
|
|
90474
|
+
|
|
90475
|
+
type CreatorFlagCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
90476
|
+
Omit<CreatorFlagFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
90477
|
+
select?: CreatorFlagCountAggregateInputType | true
|
|
90478
|
+
}
|
|
90479
|
+
|
|
90480
|
+
export interface CreatorFlagDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
90481
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['CreatorFlag'], meta: { name: 'CreatorFlag' } }
|
|
90482
|
+
/**
|
|
90483
|
+
* Find zero or one CreatorFlag that matches the filter.
|
|
90484
|
+
* @param {CreatorFlagFindUniqueArgs} args - Arguments to find a CreatorFlag
|
|
90485
|
+
* @example
|
|
90486
|
+
* // Get one CreatorFlag
|
|
90487
|
+
* const creatorFlag = await prisma.creatorFlag.findUnique({
|
|
90488
|
+
* where: {
|
|
90489
|
+
* // ... provide filter here
|
|
90490
|
+
* }
|
|
90491
|
+
* })
|
|
90492
|
+
**/
|
|
90493
|
+
findUnique<T extends CreatorFlagFindUniqueArgs<ExtArgs>>(
|
|
90494
|
+
args: SelectSubset<T, CreatorFlagFindUniqueArgs<ExtArgs>>
|
|
90495
|
+
): Prisma__CreatorFlagClient<$Result.GetResult<Prisma.$CreatorFlagPayload<ExtArgs>, T, 'findUnique'> | null, null, ExtArgs>
|
|
90496
|
+
|
|
90497
|
+
/**
|
|
90498
|
+
* Find one CreatorFlag that matches the filter or throw an error with `error.code='P2025'`
|
|
90499
|
+
* if no matches were found.
|
|
90500
|
+
* @param {CreatorFlagFindUniqueOrThrowArgs} args - Arguments to find a CreatorFlag
|
|
90501
|
+
* @example
|
|
90502
|
+
* // Get one CreatorFlag
|
|
90503
|
+
* const creatorFlag = await prisma.creatorFlag.findUniqueOrThrow({
|
|
90504
|
+
* where: {
|
|
90505
|
+
* // ... provide filter here
|
|
90506
|
+
* }
|
|
90507
|
+
* })
|
|
90508
|
+
**/
|
|
90509
|
+
findUniqueOrThrow<T extends CreatorFlagFindUniqueOrThrowArgs<ExtArgs>>(
|
|
90510
|
+
args?: SelectSubset<T, CreatorFlagFindUniqueOrThrowArgs<ExtArgs>>
|
|
90511
|
+
): Prisma__CreatorFlagClient<$Result.GetResult<Prisma.$CreatorFlagPayload<ExtArgs>, T, 'findUniqueOrThrow'>, never, ExtArgs>
|
|
90512
|
+
|
|
90513
|
+
/**
|
|
90514
|
+
* Find the first CreatorFlag that matches the filter.
|
|
90515
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
90516
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
90517
|
+
* @param {CreatorFlagFindFirstArgs} args - Arguments to find a CreatorFlag
|
|
90518
|
+
* @example
|
|
90519
|
+
* // Get one CreatorFlag
|
|
90520
|
+
* const creatorFlag = await prisma.creatorFlag.findFirst({
|
|
90521
|
+
* where: {
|
|
90522
|
+
* // ... provide filter here
|
|
90523
|
+
* }
|
|
90524
|
+
* })
|
|
90525
|
+
**/
|
|
90526
|
+
findFirst<T extends CreatorFlagFindFirstArgs<ExtArgs>>(
|
|
90527
|
+
args?: SelectSubset<T, CreatorFlagFindFirstArgs<ExtArgs>>
|
|
90528
|
+
): Prisma__CreatorFlagClient<$Result.GetResult<Prisma.$CreatorFlagPayload<ExtArgs>, T, 'findFirst'> | null, null, ExtArgs>
|
|
90529
|
+
|
|
90530
|
+
/**
|
|
90531
|
+
* Find the first CreatorFlag that matches the filter or
|
|
90532
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
90533
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
90534
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
90535
|
+
* @param {CreatorFlagFindFirstOrThrowArgs} args - Arguments to find a CreatorFlag
|
|
90536
|
+
* @example
|
|
90537
|
+
* // Get one CreatorFlag
|
|
90538
|
+
* const creatorFlag = await prisma.creatorFlag.findFirstOrThrow({
|
|
90539
|
+
* where: {
|
|
90540
|
+
* // ... provide filter here
|
|
90541
|
+
* }
|
|
90542
|
+
* })
|
|
90543
|
+
**/
|
|
90544
|
+
findFirstOrThrow<T extends CreatorFlagFindFirstOrThrowArgs<ExtArgs>>(
|
|
90545
|
+
args?: SelectSubset<T, CreatorFlagFindFirstOrThrowArgs<ExtArgs>>
|
|
90546
|
+
): Prisma__CreatorFlagClient<$Result.GetResult<Prisma.$CreatorFlagPayload<ExtArgs>, T, 'findFirstOrThrow'>, never, ExtArgs>
|
|
90547
|
+
|
|
90548
|
+
/**
|
|
90549
|
+
* Find zero or more CreatorFlags that matches the filter.
|
|
90550
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
90551
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
90552
|
+
* @param {CreatorFlagFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
90553
|
+
* @example
|
|
90554
|
+
* // Get all CreatorFlags
|
|
90555
|
+
* const creatorFlags = await prisma.creatorFlag.findMany()
|
|
90556
|
+
*
|
|
90557
|
+
* // Get first 10 CreatorFlags
|
|
90558
|
+
* const creatorFlags = await prisma.creatorFlag.findMany({ take: 10 })
|
|
90559
|
+
*
|
|
90560
|
+
* // Only select the `id`
|
|
90561
|
+
* const creatorFlagWithIdOnly = await prisma.creatorFlag.findMany({ select: { id: true } })
|
|
90562
|
+
*
|
|
90563
|
+
**/
|
|
90564
|
+
findMany<T extends CreatorFlagFindManyArgs<ExtArgs>>(
|
|
90565
|
+
args?: SelectSubset<T, CreatorFlagFindManyArgs<ExtArgs>>
|
|
90566
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CreatorFlagPayload<ExtArgs>, T, 'findMany'>>
|
|
90567
|
+
|
|
90568
|
+
/**
|
|
90569
|
+
* Create a CreatorFlag.
|
|
90570
|
+
* @param {CreatorFlagCreateArgs} args - Arguments to create a CreatorFlag.
|
|
90571
|
+
* @example
|
|
90572
|
+
* // Create one CreatorFlag
|
|
90573
|
+
* const CreatorFlag = await prisma.creatorFlag.create({
|
|
90574
|
+
* data: {
|
|
90575
|
+
* // ... data to create a CreatorFlag
|
|
90576
|
+
* }
|
|
90577
|
+
* })
|
|
90578
|
+
*
|
|
90579
|
+
**/
|
|
90580
|
+
create<T extends CreatorFlagCreateArgs<ExtArgs>>(
|
|
90581
|
+
args: SelectSubset<T, CreatorFlagCreateArgs<ExtArgs>>
|
|
90582
|
+
): Prisma__CreatorFlagClient<$Result.GetResult<Prisma.$CreatorFlagPayload<ExtArgs>, T, 'create'>, never, ExtArgs>
|
|
90583
|
+
|
|
90584
|
+
/**
|
|
90585
|
+
* Create many CreatorFlags.
|
|
90586
|
+
* @param {CreatorFlagCreateManyArgs} args - Arguments to create many CreatorFlags.
|
|
90587
|
+
* @example
|
|
90588
|
+
* // Create many CreatorFlags
|
|
90589
|
+
* const creatorFlag = await prisma.creatorFlag.createMany({
|
|
90590
|
+
* data: [
|
|
90591
|
+
* // ... provide data here
|
|
90592
|
+
* ]
|
|
90593
|
+
* })
|
|
90594
|
+
*
|
|
90595
|
+
**/
|
|
90596
|
+
createMany<T extends CreatorFlagCreateManyArgs<ExtArgs>>(
|
|
90597
|
+
args?: SelectSubset<T, CreatorFlagCreateManyArgs<ExtArgs>>
|
|
90598
|
+
): Prisma.PrismaPromise<BatchPayload>
|
|
90599
|
+
|
|
90600
|
+
/**
|
|
90601
|
+
* Create many CreatorFlags and returns the data saved in the database.
|
|
90602
|
+
* @param {CreatorFlagCreateManyAndReturnArgs} args - Arguments to create many CreatorFlags.
|
|
90603
|
+
* @example
|
|
90604
|
+
* // Create many CreatorFlags
|
|
90605
|
+
* const creatorFlag = await prisma.creatorFlag.createManyAndReturn({
|
|
90606
|
+
* data: [
|
|
90607
|
+
* // ... provide data here
|
|
90608
|
+
* ]
|
|
90609
|
+
* })
|
|
90610
|
+
*
|
|
90611
|
+
* // Create many CreatorFlags and only return the `id`
|
|
90612
|
+
* const creatorFlagWithIdOnly = await prisma.creatorFlag.createManyAndReturn({
|
|
90613
|
+
* select: { id: true },
|
|
90614
|
+
* data: [
|
|
90615
|
+
* // ... provide data here
|
|
90616
|
+
* ]
|
|
90617
|
+
* })
|
|
90618
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
90619
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
90620
|
+
*
|
|
90621
|
+
**/
|
|
90622
|
+
createManyAndReturn<T extends CreatorFlagCreateManyAndReturnArgs<ExtArgs>>(
|
|
90623
|
+
args?: SelectSubset<T, CreatorFlagCreateManyAndReturnArgs<ExtArgs>>
|
|
90624
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CreatorFlagPayload<ExtArgs>, T, 'createManyAndReturn'>>
|
|
90625
|
+
|
|
90626
|
+
/**
|
|
90627
|
+
* Delete a CreatorFlag.
|
|
90628
|
+
* @param {CreatorFlagDeleteArgs} args - Arguments to delete one CreatorFlag.
|
|
90629
|
+
* @example
|
|
90630
|
+
* // Delete one CreatorFlag
|
|
90631
|
+
* const CreatorFlag = await prisma.creatorFlag.delete({
|
|
90632
|
+
* where: {
|
|
90633
|
+
* // ... filter to delete one CreatorFlag
|
|
90634
|
+
* }
|
|
90635
|
+
* })
|
|
90636
|
+
*
|
|
90637
|
+
**/
|
|
90638
|
+
delete<T extends CreatorFlagDeleteArgs<ExtArgs>>(
|
|
90639
|
+
args: SelectSubset<T, CreatorFlagDeleteArgs<ExtArgs>>
|
|
90640
|
+
): Prisma__CreatorFlagClient<$Result.GetResult<Prisma.$CreatorFlagPayload<ExtArgs>, T, 'delete'>, never, ExtArgs>
|
|
90641
|
+
|
|
90642
|
+
/**
|
|
90643
|
+
* Update one CreatorFlag.
|
|
90644
|
+
* @param {CreatorFlagUpdateArgs} args - Arguments to update one CreatorFlag.
|
|
90645
|
+
* @example
|
|
90646
|
+
* // Update one CreatorFlag
|
|
90647
|
+
* const creatorFlag = await prisma.creatorFlag.update({
|
|
90648
|
+
* where: {
|
|
90649
|
+
* // ... provide filter here
|
|
90650
|
+
* },
|
|
90651
|
+
* data: {
|
|
90652
|
+
* // ... provide data here
|
|
90653
|
+
* }
|
|
90654
|
+
* })
|
|
90655
|
+
*
|
|
90656
|
+
**/
|
|
90657
|
+
update<T extends CreatorFlagUpdateArgs<ExtArgs>>(
|
|
90658
|
+
args: SelectSubset<T, CreatorFlagUpdateArgs<ExtArgs>>
|
|
90659
|
+
): Prisma__CreatorFlagClient<$Result.GetResult<Prisma.$CreatorFlagPayload<ExtArgs>, T, 'update'>, never, ExtArgs>
|
|
90660
|
+
|
|
90661
|
+
/**
|
|
90662
|
+
* Delete zero or more CreatorFlags.
|
|
90663
|
+
* @param {CreatorFlagDeleteManyArgs} args - Arguments to filter CreatorFlags to delete.
|
|
90664
|
+
* @example
|
|
90665
|
+
* // Delete a few CreatorFlags
|
|
90666
|
+
* const { count } = await prisma.creatorFlag.deleteMany({
|
|
90667
|
+
* where: {
|
|
90668
|
+
* // ... provide filter here
|
|
90669
|
+
* }
|
|
90670
|
+
* })
|
|
90671
|
+
*
|
|
90672
|
+
**/
|
|
90673
|
+
deleteMany<T extends CreatorFlagDeleteManyArgs<ExtArgs>>(
|
|
90674
|
+
args?: SelectSubset<T, CreatorFlagDeleteManyArgs<ExtArgs>>
|
|
90675
|
+
): Prisma.PrismaPromise<BatchPayload>
|
|
90676
|
+
|
|
90677
|
+
/**
|
|
90678
|
+
* Update zero or more CreatorFlags.
|
|
90679
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
90680
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
90681
|
+
* @param {CreatorFlagUpdateManyArgs} args - Arguments to update one or more rows.
|
|
90682
|
+
* @example
|
|
90683
|
+
* // Update many CreatorFlags
|
|
90684
|
+
* const creatorFlag = await prisma.creatorFlag.updateMany({
|
|
90685
|
+
* where: {
|
|
90686
|
+
* // ... provide filter here
|
|
90687
|
+
* },
|
|
90688
|
+
* data: {
|
|
90689
|
+
* // ... provide data here
|
|
90690
|
+
* }
|
|
90691
|
+
* })
|
|
90692
|
+
*
|
|
90693
|
+
**/
|
|
90694
|
+
updateMany<T extends CreatorFlagUpdateManyArgs<ExtArgs>>(
|
|
90695
|
+
args: SelectSubset<T, CreatorFlagUpdateManyArgs<ExtArgs>>
|
|
90696
|
+
): Prisma.PrismaPromise<BatchPayload>
|
|
90697
|
+
|
|
90698
|
+
/**
|
|
90699
|
+
* Create or update one CreatorFlag.
|
|
90700
|
+
* @param {CreatorFlagUpsertArgs} args - Arguments to update or create a CreatorFlag.
|
|
90701
|
+
* @example
|
|
90702
|
+
* // Update or create a CreatorFlag
|
|
90703
|
+
* const creatorFlag = await prisma.creatorFlag.upsert({
|
|
90704
|
+
* create: {
|
|
90705
|
+
* // ... data to create a CreatorFlag
|
|
90706
|
+
* },
|
|
90707
|
+
* update: {
|
|
90708
|
+
* // ... in case it already exists, update
|
|
90709
|
+
* },
|
|
90710
|
+
* where: {
|
|
90711
|
+
* // ... the filter for the CreatorFlag we want to update
|
|
90712
|
+
* }
|
|
90713
|
+
* })
|
|
90714
|
+
**/
|
|
90715
|
+
upsert<T extends CreatorFlagUpsertArgs<ExtArgs>>(
|
|
90716
|
+
args: SelectSubset<T, CreatorFlagUpsertArgs<ExtArgs>>
|
|
90717
|
+
): Prisma__CreatorFlagClient<$Result.GetResult<Prisma.$CreatorFlagPayload<ExtArgs>, T, 'upsert'>, never, ExtArgs>
|
|
90718
|
+
|
|
90719
|
+
/**
|
|
90720
|
+
* Count the number of CreatorFlags.
|
|
90721
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
90722
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
90723
|
+
* @param {CreatorFlagCountArgs} args - Arguments to filter CreatorFlags to count.
|
|
90724
|
+
* @example
|
|
90725
|
+
* // Count the number of CreatorFlags
|
|
90726
|
+
* const count = await prisma.creatorFlag.count({
|
|
90727
|
+
* where: {
|
|
90728
|
+
* // ... the filter for the CreatorFlags we want to count
|
|
90729
|
+
* }
|
|
90730
|
+
* })
|
|
90731
|
+
**/
|
|
90732
|
+
count<T extends CreatorFlagCountArgs>(
|
|
90733
|
+
args?: Subset<T, CreatorFlagCountArgs>,
|
|
90734
|
+
): Prisma.PrismaPromise<
|
|
90735
|
+
T extends $Utils.Record<'select', any>
|
|
90736
|
+
? T['select'] extends true
|
|
90737
|
+
? number
|
|
90738
|
+
: GetScalarType<T['select'], CreatorFlagCountAggregateOutputType>
|
|
90739
|
+
: number
|
|
90740
|
+
>
|
|
90741
|
+
|
|
90742
|
+
/**
|
|
90743
|
+
* Allows you to perform aggregations operations on a CreatorFlag.
|
|
90744
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
90745
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
90746
|
+
* @param {CreatorFlagAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
90747
|
+
* @example
|
|
90748
|
+
* // Ordered by age ascending
|
|
90749
|
+
* // Where email contains prisma.io
|
|
90750
|
+
* // Limited to the 10 users
|
|
90751
|
+
* const aggregations = await prisma.user.aggregate({
|
|
90752
|
+
* _avg: {
|
|
90753
|
+
* age: true,
|
|
90754
|
+
* },
|
|
90755
|
+
* where: {
|
|
90756
|
+
* email: {
|
|
90757
|
+
* contains: "prisma.io",
|
|
90758
|
+
* },
|
|
90759
|
+
* },
|
|
90760
|
+
* orderBy: {
|
|
90761
|
+
* age: "asc",
|
|
90762
|
+
* },
|
|
90763
|
+
* take: 10,
|
|
90764
|
+
* })
|
|
90765
|
+
**/
|
|
90766
|
+
aggregate<T extends CreatorFlagAggregateArgs>(args: Subset<T, CreatorFlagAggregateArgs>): Prisma.PrismaPromise<GetCreatorFlagAggregateType<T>>
|
|
90767
|
+
|
|
90768
|
+
/**
|
|
90769
|
+
* Group by CreatorFlag.
|
|
90770
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
90771
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
90772
|
+
* @param {CreatorFlagGroupByArgs} args - Group by arguments.
|
|
90773
|
+
* @example
|
|
90774
|
+
* // Group by city, order by createdAt, get count
|
|
90775
|
+
* const result = await prisma.user.groupBy({
|
|
90776
|
+
* by: ['city', 'createdAt'],
|
|
90777
|
+
* orderBy: {
|
|
90778
|
+
* createdAt: true
|
|
90779
|
+
* },
|
|
90780
|
+
* _count: {
|
|
90781
|
+
* _all: true
|
|
90782
|
+
* },
|
|
90783
|
+
* })
|
|
90784
|
+
*
|
|
90785
|
+
**/
|
|
90786
|
+
groupBy<
|
|
90787
|
+
T extends CreatorFlagGroupByArgs,
|
|
90788
|
+
HasSelectOrTake extends Or<
|
|
90789
|
+
Extends<'skip', Keys<T>>,
|
|
90790
|
+
Extends<'take', Keys<T>>
|
|
90791
|
+
>,
|
|
90792
|
+
OrderByArg extends True extends HasSelectOrTake
|
|
90793
|
+
? { orderBy: CreatorFlagGroupByArgs['orderBy'] }
|
|
90794
|
+
: { orderBy?: CreatorFlagGroupByArgs['orderBy'] },
|
|
90795
|
+
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
90796
|
+
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
90797
|
+
ByValid extends Has<ByFields, OrderFields>,
|
|
90798
|
+
HavingFields extends GetHavingFields<T['having']>,
|
|
90799
|
+
HavingValid extends Has<ByFields, HavingFields>,
|
|
90800
|
+
ByEmpty extends T['by'] extends never[] ? True : False,
|
|
90801
|
+
InputErrors extends ByEmpty extends True
|
|
90802
|
+
? `Error: "by" must not be empty.`
|
|
90803
|
+
: HavingValid extends False
|
|
90804
|
+
? {
|
|
90805
|
+
[P in HavingFields]: P extends ByFields
|
|
90806
|
+
? never
|
|
90807
|
+
: P extends string
|
|
90808
|
+
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
|
90809
|
+
: [
|
|
90810
|
+
Error,
|
|
90811
|
+
'Field ',
|
|
90812
|
+
P,
|
|
90813
|
+
` in "having" needs to be provided in "by"`,
|
|
90814
|
+
]
|
|
90815
|
+
}[HavingFields]
|
|
90816
|
+
: 'take' extends Keys<T>
|
|
90817
|
+
? 'orderBy' extends Keys<T>
|
|
90818
|
+
? ByValid extends True
|
|
90819
|
+
? {}
|
|
90820
|
+
: {
|
|
90821
|
+
[P in OrderFields]: P extends ByFields
|
|
90822
|
+
? never
|
|
90823
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
90824
|
+
}[OrderFields]
|
|
90825
|
+
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
|
90826
|
+
: 'skip' extends Keys<T>
|
|
90827
|
+
? 'orderBy' extends Keys<T>
|
|
90828
|
+
? ByValid extends True
|
|
90829
|
+
? {}
|
|
90830
|
+
: {
|
|
90831
|
+
[P in OrderFields]: P extends ByFields
|
|
90832
|
+
? never
|
|
90833
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
90834
|
+
}[OrderFields]
|
|
90835
|
+
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
|
90836
|
+
: ByValid extends True
|
|
90837
|
+
? {}
|
|
90838
|
+
: {
|
|
90839
|
+
[P in OrderFields]: P extends ByFields
|
|
90840
|
+
? never
|
|
90841
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
90842
|
+
}[OrderFields]
|
|
90843
|
+
>(args: SubsetIntersection<T, CreatorFlagGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetCreatorFlagGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
90844
|
+
/**
|
|
90845
|
+
* Fields of the CreatorFlag model
|
|
90846
|
+
*/
|
|
90847
|
+
readonly fields: CreatorFlagFieldRefs;
|
|
90848
|
+
}
|
|
90849
|
+
|
|
90850
|
+
/**
|
|
90851
|
+
* The delegate class that acts as a "Promise-like" for CreatorFlag.
|
|
90852
|
+
* Why is this prefixed with `Prisma__`?
|
|
90853
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
90854
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
90855
|
+
*/
|
|
90856
|
+
export interface Prisma__CreatorFlagClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
90857
|
+
readonly [Symbol.toStringTag]: 'PrismaPromise';
|
|
90858
|
+
|
|
90859
|
+
user<T extends UserDefaultArgs<ExtArgs> = {}>(args?: Subset<T, UserDefaultArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, 'findUniqueOrThrow'> | Null, Null, ExtArgs>;
|
|
90860
|
+
|
|
90861
|
+
flaggedByUser<T extends UserDefaultArgs<ExtArgs> = {}>(args?: Subset<T, UserDefaultArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, 'findUniqueOrThrow'> | Null, Null, ExtArgs>;
|
|
90862
|
+
|
|
90863
|
+
editedByUser<T extends CreatorFlag$editedByUserArgs<ExtArgs> = {}>(args?: Subset<T, CreatorFlag$editedByUserArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, 'findUniqueOrThrow'> | null, null, ExtArgs>;
|
|
90864
|
+
|
|
90865
|
+
/**
|
|
90866
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
90867
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
90868
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
90869
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
90870
|
+
*/
|
|
90871
|
+
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>;
|
|
90872
|
+
/**
|
|
90873
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
90874
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
90875
|
+
* @returns A Promise for the completion of the callback.
|
|
90876
|
+
*/
|
|
90877
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>;
|
|
90878
|
+
/**
|
|
90879
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
90880
|
+
* resolved value cannot be modified from the callback.
|
|
90881
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
90882
|
+
* @returns A Promise for the completion of the callback.
|
|
90883
|
+
*/
|
|
90884
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>;
|
|
90885
|
+
}
|
|
90886
|
+
|
|
90887
|
+
|
|
90888
|
+
|
|
90889
|
+
/**
|
|
90890
|
+
* Fields of the CreatorFlag model
|
|
90891
|
+
*/
|
|
90892
|
+
interface CreatorFlagFieldRefs {
|
|
90893
|
+
readonly id: FieldRef<"CreatorFlag", 'Int'>
|
|
90894
|
+
readonly label: FieldRef<"CreatorFlag", 'String'>
|
|
90895
|
+
readonly comment: FieldRef<"CreatorFlag", 'String'>
|
|
90896
|
+
readonly color: FieldRef<"CreatorFlag", 'String'>
|
|
90897
|
+
readonly createdAt: FieldRef<"CreatorFlag", 'DateTime'>
|
|
90898
|
+
readonly updatedAt: FieldRef<"CreatorFlag", 'DateTime'>
|
|
90899
|
+
readonly userId: FieldRef<"CreatorFlag", 'Int'>
|
|
90900
|
+
readonly flaggedByUserId: FieldRef<"CreatorFlag", 'Int'>
|
|
90901
|
+
readonly editedByUserId: FieldRef<"CreatorFlag", 'Int'>
|
|
90902
|
+
}
|
|
90903
|
+
|
|
90904
|
+
|
|
90905
|
+
// Custom InputTypes
|
|
90906
|
+
/**
|
|
90907
|
+
* CreatorFlag findUnique
|
|
90908
|
+
*/
|
|
90909
|
+
export type CreatorFlagFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
90910
|
+
/**
|
|
90911
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
90912
|
+
*/
|
|
90913
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
90914
|
+
/**
|
|
90915
|
+
* Choose, which related nodes to fetch as well
|
|
90916
|
+
*/
|
|
90917
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
90918
|
+
/**
|
|
90919
|
+
* Filter, which CreatorFlag to fetch.
|
|
90920
|
+
*/
|
|
90921
|
+
where: CreatorFlagWhereUniqueInput
|
|
90922
|
+
}
|
|
90923
|
+
|
|
90924
|
+
/**
|
|
90925
|
+
* CreatorFlag findUniqueOrThrow
|
|
90926
|
+
*/
|
|
90927
|
+
export type CreatorFlagFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
90928
|
+
/**
|
|
90929
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
90930
|
+
*/
|
|
90931
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
90932
|
+
/**
|
|
90933
|
+
* Choose, which related nodes to fetch as well
|
|
90934
|
+
*/
|
|
90935
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
90936
|
+
/**
|
|
90937
|
+
* Filter, which CreatorFlag to fetch.
|
|
90938
|
+
*/
|
|
90939
|
+
where: CreatorFlagWhereUniqueInput
|
|
90940
|
+
}
|
|
90941
|
+
|
|
90942
|
+
/**
|
|
90943
|
+
* CreatorFlag findFirst
|
|
90944
|
+
*/
|
|
90945
|
+
export type CreatorFlagFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
90946
|
+
/**
|
|
90947
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
90948
|
+
*/
|
|
90949
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
90950
|
+
/**
|
|
90951
|
+
* Choose, which related nodes to fetch as well
|
|
90952
|
+
*/
|
|
90953
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
90954
|
+
/**
|
|
90955
|
+
* Filter, which CreatorFlag to fetch.
|
|
90956
|
+
*/
|
|
90957
|
+
where?: CreatorFlagWhereInput
|
|
90958
|
+
/**
|
|
90959
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
90960
|
+
*
|
|
90961
|
+
* Determine the order of CreatorFlags to fetch.
|
|
90962
|
+
*/
|
|
90963
|
+
orderBy?: CreatorFlagOrderByWithRelationAndSearchRelevanceInput | CreatorFlagOrderByWithRelationAndSearchRelevanceInput[]
|
|
90964
|
+
/**
|
|
90965
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
90966
|
+
*
|
|
90967
|
+
* Sets the position for searching for CreatorFlags.
|
|
90968
|
+
*/
|
|
90969
|
+
cursor?: CreatorFlagWhereUniqueInput
|
|
90970
|
+
/**
|
|
90971
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
90972
|
+
*
|
|
90973
|
+
* Take `±n` CreatorFlags from the position of the cursor.
|
|
90974
|
+
*/
|
|
90975
|
+
take?: number
|
|
90976
|
+
/**
|
|
90977
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
90978
|
+
*
|
|
90979
|
+
* Skip the first `n` CreatorFlags.
|
|
90980
|
+
*/
|
|
90981
|
+
skip?: number
|
|
90982
|
+
/**
|
|
90983
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
90984
|
+
*
|
|
90985
|
+
* Filter by unique combinations of CreatorFlags.
|
|
90986
|
+
*/
|
|
90987
|
+
distinct?: CreatorFlagScalarFieldEnum | CreatorFlagScalarFieldEnum[]
|
|
90988
|
+
}
|
|
90989
|
+
|
|
90990
|
+
/**
|
|
90991
|
+
* CreatorFlag findFirstOrThrow
|
|
90992
|
+
*/
|
|
90993
|
+
export type CreatorFlagFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
90994
|
+
/**
|
|
90995
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
90996
|
+
*/
|
|
90997
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
90998
|
+
/**
|
|
90999
|
+
* Choose, which related nodes to fetch as well
|
|
91000
|
+
*/
|
|
91001
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
91002
|
+
/**
|
|
91003
|
+
* Filter, which CreatorFlag to fetch.
|
|
91004
|
+
*/
|
|
91005
|
+
where?: CreatorFlagWhereInput
|
|
91006
|
+
/**
|
|
91007
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
91008
|
+
*
|
|
91009
|
+
* Determine the order of CreatorFlags to fetch.
|
|
91010
|
+
*/
|
|
91011
|
+
orderBy?: CreatorFlagOrderByWithRelationAndSearchRelevanceInput | CreatorFlagOrderByWithRelationAndSearchRelevanceInput[]
|
|
91012
|
+
/**
|
|
91013
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
91014
|
+
*
|
|
91015
|
+
* Sets the position for searching for CreatorFlags.
|
|
91016
|
+
*/
|
|
91017
|
+
cursor?: CreatorFlagWhereUniqueInput
|
|
91018
|
+
/**
|
|
91019
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
91020
|
+
*
|
|
91021
|
+
* Take `±n` CreatorFlags from the position of the cursor.
|
|
91022
|
+
*/
|
|
91023
|
+
take?: number
|
|
91024
|
+
/**
|
|
91025
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
91026
|
+
*
|
|
91027
|
+
* Skip the first `n` CreatorFlags.
|
|
91028
|
+
*/
|
|
91029
|
+
skip?: number
|
|
91030
|
+
/**
|
|
91031
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
91032
|
+
*
|
|
91033
|
+
* Filter by unique combinations of CreatorFlags.
|
|
91034
|
+
*/
|
|
91035
|
+
distinct?: CreatorFlagScalarFieldEnum | CreatorFlagScalarFieldEnum[]
|
|
91036
|
+
}
|
|
91037
|
+
|
|
91038
|
+
/**
|
|
91039
|
+
* CreatorFlag findMany
|
|
91040
|
+
*/
|
|
91041
|
+
export type CreatorFlagFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
91042
|
+
/**
|
|
91043
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
91044
|
+
*/
|
|
91045
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
91046
|
+
/**
|
|
91047
|
+
* Choose, which related nodes to fetch as well
|
|
91048
|
+
*/
|
|
91049
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
91050
|
+
/**
|
|
91051
|
+
* Filter, which CreatorFlags to fetch.
|
|
91052
|
+
*/
|
|
91053
|
+
where?: CreatorFlagWhereInput
|
|
91054
|
+
/**
|
|
91055
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
91056
|
+
*
|
|
91057
|
+
* Determine the order of CreatorFlags to fetch.
|
|
91058
|
+
*/
|
|
91059
|
+
orderBy?: CreatorFlagOrderByWithRelationAndSearchRelevanceInput | CreatorFlagOrderByWithRelationAndSearchRelevanceInput[]
|
|
91060
|
+
/**
|
|
91061
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
91062
|
+
*
|
|
91063
|
+
* Sets the position for listing CreatorFlags.
|
|
91064
|
+
*/
|
|
91065
|
+
cursor?: CreatorFlagWhereUniqueInput
|
|
91066
|
+
/**
|
|
91067
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
91068
|
+
*
|
|
91069
|
+
* Take `±n` CreatorFlags from the position of the cursor.
|
|
91070
|
+
*/
|
|
91071
|
+
take?: number
|
|
91072
|
+
/**
|
|
91073
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
91074
|
+
*
|
|
91075
|
+
* Skip the first `n` CreatorFlags.
|
|
91076
|
+
*/
|
|
91077
|
+
skip?: number
|
|
91078
|
+
distinct?: CreatorFlagScalarFieldEnum | CreatorFlagScalarFieldEnum[]
|
|
91079
|
+
}
|
|
91080
|
+
|
|
91081
|
+
/**
|
|
91082
|
+
* CreatorFlag create
|
|
91083
|
+
*/
|
|
91084
|
+
export type CreatorFlagCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
91085
|
+
/**
|
|
91086
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
91087
|
+
*/
|
|
91088
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
91089
|
+
/**
|
|
91090
|
+
* Choose, which related nodes to fetch as well
|
|
91091
|
+
*/
|
|
91092
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
91093
|
+
/**
|
|
91094
|
+
* The data needed to create a CreatorFlag.
|
|
91095
|
+
*/
|
|
91096
|
+
data: XOR<CreatorFlagCreateInput, CreatorFlagUncheckedCreateInput>
|
|
91097
|
+
}
|
|
91098
|
+
|
|
91099
|
+
/**
|
|
91100
|
+
* CreatorFlag createMany
|
|
91101
|
+
*/
|
|
91102
|
+
export type CreatorFlagCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
91103
|
+
/**
|
|
91104
|
+
* The data used to create many CreatorFlags.
|
|
91105
|
+
*/
|
|
91106
|
+
data: CreatorFlagCreateManyInput | CreatorFlagCreateManyInput[]
|
|
91107
|
+
skipDuplicates?: boolean
|
|
91108
|
+
}
|
|
91109
|
+
|
|
91110
|
+
/**
|
|
91111
|
+
* CreatorFlag createManyAndReturn
|
|
91112
|
+
*/
|
|
91113
|
+
export type CreatorFlagCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
91114
|
+
/**
|
|
91115
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
91116
|
+
*/
|
|
91117
|
+
select?: CreatorFlagSelectCreateManyAndReturn<ExtArgs> | null
|
|
91118
|
+
/**
|
|
91119
|
+
* The data used to create many CreatorFlags.
|
|
91120
|
+
*/
|
|
91121
|
+
data: CreatorFlagCreateManyInput | CreatorFlagCreateManyInput[]
|
|
91122
|
+
skipDuplicates?: boolean
|
|
91123
|
+
/**
|
|
91124
|
+
* Choose, which related nodes to fetch as well
|
|
91125
|
+
*/
|
|
91126
|
+
include?: CreatorFlagIncludeCreateManyAndReturn<ExtArgs> | null
|
|
91127
|
+
}
|
|
91128
|
+
|
|
91129
|
+
/**
|
|
91130
|
+
* CreatorFlag update
|
|
91131
|
+
*/
|
|
91132
|
+
export type CreatorFlagUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
91133
|
+
/**
|
|
91134
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
91135
|
+
*/
|
|
91136
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
91137
|
+
/**
|
|
91138
|
+
* Choose, which related nodes to fetch as well
|
|
91139
|
+
*/
|
|
91140
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
91141
|
+
/**
|
|
91142
|
+
* The data needed to update a CreatorFlag.
|
|
91143
|
+
*/
|
|
91144
|
+
data: XOR<CreatorFlagUpdateInput, CreatorFlagUncheckedUpdateInput>
|
|
91145
|
+
/**
|
|
91146
|
+
* Choose, which CreatorFlag to update.
|
|
91147
|
+
*/
|
|
91148
|
+
where: CreatorFlagWhereUniqueInput
|
|
91149
|
+
}
|
|
91150
|
+
|
|
91151
|
+
/**
|
|
91152
|
+
* CreatorFlag updateMany
|
|
91153
|
+
*/
|
|
91154
|
+
export type CreatorFlagUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
91155
|
+
/**
|
|
91156
|
+
* The data used to update CreatorFlags.
|
|
91157
|
+
*/
|
|
91158
|
+
data: XOR<CreatorFlagUpdateManyMutationInput, CreatorFlagUncheckedUpdateManyInput>
|
|
91159
|
+
/**
|
|
91160
|
+
* Filter which CreatorFlags to update
|
|
91161
|
+
*/
|
|
91162
|
+
where?: CreatorFlagWhereInput
|
|
91163
|
+
}
|
|
91164
|
+
|
|
91165
|
+
/**
|
|
91166
|
+
* CreatorFlag upsert
|
|
91167
|
+
*/
|
|
91168
|
+
export type CreatorFlagUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
91169
|
+
/**
|
|
91170
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
91171
|
+
*/
|
|
91172
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
91173
|
+
/**
|
|
91174
|
+
* Choose, which related nodes to fetch as well
|
|
91175
|
+
*/
|
|
91176
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
91177
|
+
/**
|
|
91178
|
+
* The filter to search for the CreatorFlag to update in case it exists.
|
|
91179
|
+
*/
|
|
91180
|
+
where: CreatorFlagWhereUniqueInput
|
|
91181
|
+
/**
|
|
91182
|
+
* In case the CreatorFlag found by the `where` argument doesn't exist, create a new CreatorFlag with this data.
|
|
91183
|
+
*/
|
|
91184
|
+
create: XOR<CreatorFlagCreateInput, CreatorFlagUncheckedCreateInput>
|
|
91185
|
+
/**
|
|
91186
|
+
* In case the CreatorFlag was found with the provided `where` argument, update it with this data.
|
|
91187
|
+
*/
|
|
91188
|
+
update: XOR<CreatorFlagUpdateInput, CreatorFlagUncheckedUpdateInput>
|
|
91189
|
+
}
|
|
91190
|
+
|
|
91191
|
+
/**
|
|
91192
|
+
* CreatorFlag delete
|
|
91193
|
+
*/
|
|
91194
|
+
export type CreatorFlagDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
91195
|
+
/**
|
|
91196
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
91197
|
+
*/
|
|
91198
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
91199
|
+
/**
|
|
91200
|
+
* Choose, which related nodes to fetch as well
|
|
91201
|
+
*/
|
|
91202
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
91203
|
+
/**
|
|
91204
|
+
* Filter which CreatorFlag to delete.
|
|
91205
|
+
*/
|
|
91206
|
+
where: CreatorFlagWhereUniqueInput
|
|
91207
|
+
}
|
|
91208
|
+
|
|
91209
|
+
/**
|
|
91210
|
+
* CreatorFlag deleteMany
|
|
91211
|
+
*/
|
|
91212
|
+
export type CreatorFlagDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
91213
|
+
/**
|
|
91214
|
+
* Filter which CreatorFlags to delete
|
|
91215
|
+
*/
|
|
91216
|
+
where?: CreatorFlagWhereInput
|
|
91217
|
+
}
|
|
91218
|
+
|
|
91219
|
+
/**
|
|
91220
|
+
* CreatorFlag.editedByUser
|
|
91221
|
+
*/
|
|
91222
|
+
export type CreatorFlag$editedByUserArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
91223
|
+
/**
|
|
91224
|
+
* Select specific fields to fetch from the User
|
|
91225
|
+
*/
|
|
91226
|
+
select?: UserSelect<ExtArgs> | null
|
|
91227
|
+
/**
|
|
91228
|
+
* Choose, which related nodes to fetch as well
|
|
91229
|
+
*/
|
|
91230
|
+
include?: UserInclude<ExtArgs> | null
|
|
91231
|
+
where?: UserWhereInput
|
|
91232
|
+
}
|
|
91233
|
+
|
|
91234
|
+
/**
|
|
91235
|
+
* CreatorFlag without action
|
|
91236
|
+
*/
|
|
91237
|
+
export type CreatorFlagDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
91238
|
+
/**
|
|
91239
|
+
* Select specific fields to fetch from the CreatorFlag
|
|
91240
|
+
*/
|
|
91241
|
+
select?: CreatorFlagSelect<ExtArgs> | null
|
|
91242
|
+
/**
|
|
91243
|
+
* Choose, which related nodes to fetch as well
|
|
91244
|
+
*/
|
|
91245
|
+
include?: CreatorFlagInclude<ExtArgs> | null
|
|
91246
|
+
}
|
|
91247
|
+
|
|
91248
|
+
|
|
89967
91249
|
/**
|
|
89968
91250
|
* Enums
|
|
89969
91251
|
*/
|
|
@@ -89980,6 +91262,7 @@ export namespace Prisma {
|
|
|
89980
91262
|
|
|
89981
91263
|
export const UserScalarFieldEnum: {
|
|
89982
91264
|
id: 'id',
|
|
91265
|
+
idmId: 'idmId',
|
|
89983
91266
|
role: 'role',
|
|
89984
91267
|
email: 'email',
|
|
89985
91268
|
password: 'password',
|
|
@@ -91079,6 +92362,21 @@ export namespace Prisma {
|
|
|
91079
92362
|
export type ShopifySaleScalarFieldEnum = (typeof ShopifySaleScalarFieldEnum)[keyof typeof ShopifySaleScalarFieldEnum]
|
|
91080
92363
|
|
|
91081
92364
|
|
|
92365
|
+
export const CreatorFlagScalarFieldEnum: {
|
|
92366
|
+
id: 'id',
|
|
92367
|
+
label: 'label',
|
|
92368
|
+
comment: 'comment',
|
|
92369
|
+
color: 'color',
|
|
92370
|
+
createdAt: 'createdAt',
|
|
92371
|
+
updatedAt: 'updatedAt',
|
|
92372
|
+
userId: 'userId',
|
|
92373
|
+
flaggedByUserId: 'flaggedByUserId',
|
|
92374
|
+
editedByUserId: 'editedByUserId'
|
|
92375
|
+
};
|
|
92376
|
+
|
|
92377
|
+
export type CreatorFlagScalarFieldEnum = (typeof CreatorFlagScalarFieldEnum)[keyof typeof CreatorFlagScalarFieldEnum]
|
|
92378
|
+
|
|
92379
|
+
|
|
91082
92380
|
export const SortOrder: {
|
|
91083
92381
|
asc: 'asc',
|
|
91084
92382
|
desc: 'desc'
|
|
@@ -91128,6 +92426,7 @@ export namespace Prisma {
|
|
|
91128
92426
|
|
|
91129
92427
|
|
|
91130
92428
|
export const UserOrderByRelevanceFieldEnum: {
|
|
92429
|
+
idmId: 'idmId',
|
|
91131
92430
|
role: 'role',
|
|
91132
92431
|
email: 'email',
|
|
91133
92432
|
password: 'password',
|
|
@@ -91649,6 +92948,15 @@ export namespace Prisma {
|
|
|
91649
92948
|
export type ShopifyDiscountCodeOrderByRelevanceFieldEnum = (typeof ShopifyDiscountCodeOrderByRelevanceFieldEnum)[keyof typeof ShopifyDiscountCodeOrderByRelevanceFieldEnum]
|
|
91650
92949
|
|
|
91651
92950
|
|
|
92951
|
+
export const CreatorFlagOrderByRelevanceFieldEnum: {
|
|
92952
|
+
label: 'label',
|
|
92953
|
+
comment: 'comment',
|
|
92954
|
+
color: 'color'
|
|
92955
|
+
};
|
|
92956
|
+
|
|
92957
|
+
export type CreatorFlagOrderByRelevanceFieldEnum = (typeof CreatorFlagOrderByRelevanceFieldEnum)[keyof typeof CreatorFlagOrderByRelevanceFieldEnum]
|
|
92958
|
+
|
|
92959
|
+
|
|
91652
92960
|
/**
|
|
91653
92961
|
* Field references
|
|
91654
92962
|
*/
|
|
@@ -91802,6 +93110,7 @@ export namespace Prisma {
|
|
|
91802
93110
|
OR?: UserWhereInput[]
|
|
91803
93111
|
NOT?: UserWhereInput | UserWhereInput[]
|
|
91804
93112
|
id?: IntFilter<"User"> | number
|
|
93113
|
+
idmId?: StringNullableFilter<"User"> | string | null
|
|
91805
93114
|
role?: StringFilter<"User"> | string
|
|
91806
93115
|
email?: StringNullableFilter<"User"> | string | null
|
|
91807
93116
|
password?: StringNullableFilter<"User"> | string | null
|
|
@@ -91843,10 +93152,14 @@ export namespace Prisma {
|
|
|
91843
93152
|
socialProfiles?: SocialProfileListRelationFilter
|
|
91844
93153
|
rakutenActivity?: RakutenActivityListRelationFilter
|
|
91845
93154
|
impactRadiusEvents?: ImpactRadiusEventListRelationFilter
|
|
93155
|
+
flagsAssigned?: CreatorFlagListRelationFilter
|
|
93156
|
+
flagsCreated?: CreatorFlagListRelationFilter
|
|
93157
|
+
flagsEdited?: CreatorFlagListRelationFilter
|
|
91846
93158
|
}
|
|
91847
93159
|
|
|
91848
93160
|
export type UserOrderByWithRelationAndSearchRelevanceInput = {
|
|
91849
93161
|
id?: SortOrder
|
|
93162
|
+
idmId?: SortOrderInput | SortOrder
|
|
91850
93163
|
role?: SortOrder
|
|
91851
93164
|
email?: SortOrderInput | SortOrder
|
|
91852
93165
|
password?: SortOrderInput | SortOrder
|
|
@@ -91888,11 +93201,15 @@ export namespace Prisma {
|
|
|
91888
93201
|
socialProfiles?: SocialProfileOrderByRelationAggregateInput
|
|
91889
93202
|
rakutenActivity?: RakutenActivityOrderByRelationAggregateInput
|
|
91890
93203
|
impactRadiusEvents?: ImpactRadiusEventOrderByRelationAggregateInput
|
|
93204
|
+
flagsAssigned?: CreatorFlagOrderByRelationAggregateInput
|
|
93205
|
+
flagsCreated?: CreatorFlagOrderByRelationAggregateInput
|
|
93206
|
+
flagsEdited?: CreatorFlagOrderByRelationAggregateInput
|
|
91891
93207
|
_relevance?: UserOrderByRelevanceInput
|
|
91892
93208
|
}
|
|
91893
93209
|
|
|
91894
93210
|
export type UserWhereUniqueInput = Prisma.AtLeast<{
|
|
91895
93211
|
id?: number
|
|
93212
|
+
idmId?: string
|
|
91896
93213
|
email?: string
|
|
91897
93214
|
forgotPasswordKey?: string
|
|
91898
93215
|
affiliateSlug?: string
|
|
@@ -91937,10 +93254,14 @@ export namespace Prisma {
|
|
|
91937
93254
|
socialProfiles?: SocialProfileListRelationFilter
|
|
91938
93255
|
rakutenActivity?: RakutenActivityListRelationFilter
|
|
91939
93256
|
impactRadiusEvents?: ImpactRadiusEventListRelationFilter
|
|
91940
|
-
|
|
93257
|
+
flagsAssigned?: CreatorFlagListRelationFilter
|
|
93258
|
+
flagsCreated?: CreatorFlagListRelationFilter
|
|
93259
|
+
flagsEdited?: CreatorFlagListRelationFilter
|
|
93260
|
+
}, "id" | "idmId" | "email" | "forgotPasswordKey" | "affiliateSlug">
|
|
91941
93261
|
|
|
91942
93262
|
export type UserOrderByWithAggregationInput = {
|
|
91943
93263
|
id?: SortOrder
|
|
93264
|
+
idmId?: SortOrderInput | SortOrder
|
|
91944
93265
|
role?: SortOrder
|
|
91945
93266
|
email?: SortOrderInput | SortOrder
|
|
91946
93267
|
password?: SortOrderInput | SortOrder
|
|
@@ -91973,6 +93294,7 @@ export namespace Prisma {
|
|
|
91973
93294
|
OR?: UserScalarWhereWithAggregatesInput[]
|
|
91974
93295
|
NOT?: UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[]
|
|
91975
93296
|
id?: IntWithAggregatesFilter<"User"> | number
|
|
93297
|
+
idmId?: StringNullableWithAggregatesFilter<"User"> | string | null
|
|
91976
93298
|
role?: StringWithAggregatesFilter<"User"> | string
|
|
91977
93299
|
email?: StringNullableWithAggregatesFilter<"User"> | string | null
|
|
91978
93300
|
password?: StringNullableWithAggregatesFilter<"User"> | string | null
|
|
@@ -97977,7 +99299,92 @@ export namespace Prisma {
|
|
|
97977
99299
|
created?: DateTimeWithAggregatesFilter<"ShopifySale"> | Date | string
|
|
97978
99300
|
}
|
|
97979
99301
|
|
|
99302
|
+
export type CreatorFlagWhereInput = {
|
|
99303
|
+
AND?: CreatorFlagWhereInput | CreatorFlagWhereInput[]
|
|
99304
|
+
OR?: CreatorFlagWhereInput[]
|
|
99305
|
+
NOT?: CreatorFlagWhereInput | CreatorFlagWhereInput[]
|
|
99306
|
+
id?: IntFilter<"CreatorFlag"> | number
|
|
99307
|
+
label?: StringFilter<"CreatorFlag"> | string
|
|
99308
|
+
comment?: StringNullableFilter<"CreatorFlag"> | string | null
|
|
99309
|
+
color?: StringFilter<"CreatorFlag"> | string
|
|
99310
|
+
createdAt?: DateTimeFilter<"CreatorFlag"> | Date | string
|
|
99311
|
+
updatedAt?: DateTimeFilter<"CreatorFlag"> | Date | string
|
|
99312
|
+
userId?: IntFilter<"CreatorFlag"> | number
|
|
99313
|
+
flaggedByUserId?: IntFilter<"CreatorFlag"> | number
|
|
99314
|
+
editedByUserId?: IntNullableFilter<"CreatorFlag"> | number | null
|
|
99315
|
+
user?: XOR<UserRelationFilter, UserWhereInput>
|
|
99316
|
+
flaggedByUser?: XOR<UserRelationFilter, UserWhereInput>
|
|
99317
|
+
editedByUser?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
99318
|
+
}
|
|
99319
|
+
|
|
99320
|
+
export type CreatorFlagOrderByWithRelationAndSearchRelevanceInput = {
|
|
99321
|
+
id?: SortOrder
|
|
99322
|
+
label?: SortOrder
|
|
99323
|
+
comment?: SortOrderInput | SortOrder
|
|
99324
|
+
color?: SortOrder
|
|
99325
|
+
createdAt?: SortOrder
|
|
99326
|
+
updatedAt?: SortOrder
|
|
99327
|
+
userId?: SortOrder
|
|
99328
|
+
flaggedByUserId?: SortOrder
|
|
99329
|
+
editedByUserId?: SortOrderInput | SortOrder
|
|
99330
|
+
user?: UserOrderByWithRelationAndSearchRelevanceInput
|
|
99331
|
+
flaggedByUser?: UserOrderByWithRelationAndSearchRelevanceInput
|
|
99332
|
+
editedByUser?: UserOrderByWithRelationAndSearchRelevanceInput
|
|
99333
|
+
_relevance?: CreatorFlagOrderByRelevanceInput
|
|
99334
|
+
}
|
|
99335
|
+
|
|
99336
|
+
export type CreatorFlagWhereUniqueInput = Prisma.AtLeast<{
|
|
99337
|
+
id?: number
|
|
99338
|
+
AND?: CreatorFlagWhereInput | CreatorFlagWhereInput[]
|
|
99339
|
+
OR?: CreatorFlagWhereInput[]
|
|
99340
|
+
NOT?: CreatorFlagWhereInput | CreatorFlagWhereInput[]
|
|
99341
|
+
label?: StringFilter<"CreatorFlag"> | string
|
|
99342
|
+
comment?: StringNullableFilter<"CreatorFlag"> | string | null
|
|
99343
|
+
color?: StringFilter<"CreatorFlag"> | string
|
|
99344
|
+
createdAt?: DateTimeFilter<"CreatorFlag"> | Date | string
|
|
99345
|
+
updatedAt?: DateTimeFilter<"CreatorFlag"> | Date | string
|
|
99346
|
+
userId?: IntFilter<"CreatorFlag"> | number
|
|
99347
|
+
flaggedByUserId?: IntFilter<"CreatorFlag"> | number
|
|
99348
|
+
editedByUserId?: IntNullableFilter<"CreatorFlag"> | number | null
|
|
99349
|
+
user?: XOR<UserRelationFilter, UserWhereInput>
|
|
99350
|
+
flaggedByUser?: XOR<UserRelationFilter, UserWhereInput>
|
|
99351
|
+
editedByUser?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
99352
|
+
}, "id">
|
|
99353
|
+
|
|
99354
|
+
export type CreatorFlagOrderByWithAggregationInput = {
|
|
99355
|
+
id?: SortOrder
|
|
99356
|
+
label?: SortOrder
|
|
99357
|
+
comment?: SortOrderInput | SortOrder
|
|
99358
|
+
color?: SortOrder
|
|
99359
|
+
createdAt?: SortOrder
|
|
99360
|
+
updatedAt?: SortOrder
|
|
99361
|
+
userId?: SortOrder
|
|
99362
|
+
flaggedByUserId?: SortOrder
|
|
99363
|
+
editedByUserId?: SortOrderInput | SortOrder
|
|
99364
|
+
_count?: CreatorFlagCountOrderByAggregateInput
|
|
99365
|
+
_avg?: CreatorFlagAvgOrderByAggregateInput
|
|
99366
|
+
_max?: CreatorFlagMaxOrderByAggregateInput
|
|
99367
|
+
_min?: CreatorFlagMinOrderByAggregateInput
|
|
99368
|
+
_sum?: CreatorFlagSumOrderByAggregateInput
|
|
99369
|
+
}
|
|
99370
|
+
|
|
99371
|
+
export type CreatorFlagScalarWhereWithAggregatesInput = {
|
|
99372
|
+
AND?: CreatorFlagScalarWhereWithAggregatesInput | CreatorFlagScalarWhereWithAggregatesInput[]
|
|
99373
|
+
OR?: CreatorFlagScalarWhereWithAggregatesInput[]
|
|
99374
|
+
NOT?: CreatorFlagScalarWhereWithAggregatesInput | CreatorFlagScalarWhereWithAggregatesInput[]
|
|
99375
|
+
id?: IntWithAggregatesFilter<"CreatorFlag"> | number
|
|
99376
|
+
label?: StringWithAggregatesFilter<"CreatorFlag"> | string
|
|
99377
|
+
comment?: StringNullableWithAggregatesFilter<"CreatorFlag"> | string | null
|
|
99378
|
+
color?: StringWithAggregatesFilter<"CreatorFlag"> | string
|
|
99379
|
+
createdAt?: DateTimeWithAggregatesFilter<"CreatorFlag"> | Date | string
|
|
99380
|
+
updatedAt?: DateTimeWithAggregatesFilter<"CreatorFlag"> | Date | string
|
|
99381
|
+
userId?: IntWithAggregatesFilter<"CreatorFlag"> | number
|
|
99382
|
+
flaggedByUserId?: IntWithAggregatesFilter<"CreatorFlag"> | number
|
|
99383
|
+
editedByUserId?: IntNullableWithAggregatesFilter<"CreatorFlag"> | number | null
|
|
99384
|
+
}
|
|
99385
|
+
|
|
97980
99386
|
export type UserCreateInput = {
|
|
99387
|
+
idmId?: string | null
|
|
97981
99388
|
role: string
|
|
97982
99389
|
email?: string | null
|
|
97983
99390
|
password?: string | null
|
|
@@ -98018,10 +99425,14 @@ export namespace Prisma {
|
|
|
98018
99425
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
98019
99426
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
98020
99427
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
99428
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
99429
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
99430
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
98021
99431
|
}
|
|
98022
99432
|
|
|
98023
99433
|
export type UserUncheckedCreateInput = {
|
|
98024
99434
|
id?: number
|
|
99435
|
+
idmId?: string | null
|
|
98025
99436
|
role: string
|
|
98026
99437
|
email?: string | null
|
|
98027
99438
|
password?: string | null
|
|
@@ -98062,9 +99473,13 @@ export namespace Prisma {
|
|
|
98062
99473
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
98063
99474
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
98064
99475
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
99476
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
99477
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
99478
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
98065
99479
|
}
|
|
98066
99480
|
|
|
98067
99481
|
export type UserUpdateInput = {
|
|
99482
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98068
99483
|
role?: StringFieldUpdateOperationsInput | string
|
|
98069
99484
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98070
99485
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -98105,10 +99520,14 @@ export namespace Prisma {
|
|
|
98105
99520
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
98106
99521
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
98107
99522
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
99523
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
99524
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
99525
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
98108
99526
|
}
|
|
98109
99527
|
|
|
98110
99528
|
export type UserUncheckedUpdateInput = {
|
|
98111
99529
|
id?: IntFieldUpdateOperationsInput | number
|
|
99530
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98112
99531
|
role?: StringFieldUpdateOperationsInput | string
|
|
98113
99532
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98114
99533
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -98149,10 +99568,14 @@ export namespace Prisma {
|
|
|
98149
99568
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
98150
99569
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
98151
99570
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
99571
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
99572
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
99573
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
98152
99574
|
}
|
|
98153
99575
|
|
|
98154
99576
|
export type UserCreateManyInput = {
|
|
98155
99577
|
id?: number
|
|
99578
|
+
idmId?: string | null
|
|
98156
99579
|
role: string
|
|
98157
99580
|
email?: string | null
|
|
98158
99581
|
password?: string | null
|
|
@@ -98176,6 +99599,7 @@ export namespace Prisma {
|
|
|
98176
99599
|
}
|
|
98177
99600
|
|
|
98178
99601
|
export type UserUpdateManyMutationInput = {
|
|
99602
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98179
99603
|
role?: StringFieldUpdateOperationsInput | string
|
|
98180
99604
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98181
99605
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -98199,6 +99623,7 @@ export namespace Prisma {
|
|
|
98199
99623
|
|
|
98200
99624
|
export type UserUncheckedUpdateManyInput = {
|
|
98201
99625
|
id?: IntFieldUpdateOperationsInput | number
|
|
99626
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98202
99627
|
role?: StringFieldUpdateOperationsInput | string
|
|
98203
99628
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98204
99629
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -104287,6 +105712,84 @@ export namespace Prisma {
|
|
|
104287
105712
|
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
104288
105713
|
}
|
|
104289
105714
|
|
|
105715
|
+
export type CreatorFlagCreateInput = {
|
|
105716
|
+
label: string
|
|
105717
|
+
comment?: string | null
|
|
105718
|
+
color: string
|
|
105719
|
+
createdAt?: Date | string
|
|
105720
|
+
updatedAt?: Date | string
|
|
105721
|
+
user: UserCreateNestedOneWithoutFlagsAssignedInput
|
|
105722
|
+
flaggedByUser: UserCreateNestedOneWithoutFlagsCreatedInput
|
|
105723
|
+
editedByUser?: UserCreateNestedOneWithoutFlagsEditedInput
|
|
105724
|
+
}
|
|
105725
|
+
|
|
105726
|
+
export type CreatorFlagUncheckedCreateInput = {
|
|
105727
|
+
id?: number
|
|
105728
|
+
label: string
|
|
105729
|
+
comment?: string | null
|
|
105730
|
+
color: string
|
|
105731
|
+
createdAt?: Date | string
|
|
105732
|
+
updatedAt?: Date | string
|
|
105733
|
+
userId: number
|
|
105734
|
+
flaggedByUserId: number
|
|
105735
|
+
editedByUserId?: number | null
|
|
105736
|
+
}
|
|
105737
|
+
|
|
105738
|
+
export type CreatorFlagUpdateInput = {
|
|
105739
|
+
label?: StringFieldUpdateOperationsInput | string
|
|
105740
|
+
comment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
105741
|
+
color?: StringFieldUpdateOperationsInput | string
|
|
105742
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105743
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105744
|
+
user?: UserUpdateOneRequiredWithoutFlagsAssignedNestedInput
|
|
105745
|
+
flaggedByUser?: UserUpdateOneRequiredWithoutFlagsCreatedNestedInput
|
|
105746
|
+
editedByUser?: UserUpdateOneWithoutFlagsEditedNestedInput
|
|
105747
|
+
}
|
|
105748
|
+
|
|
105749
|
+
export type CreatorFlagUncheckedUpdateInput = {
|
|
105750
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
105751
|
+
label?: StringFieldUpdateOperationsInput | string
|
|
105752
|
+
comment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
105753
|
+
color?: StringFieldUpdateOperationsInput | string
|
|
105754
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105755
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105756
|
+
userId?: IntFieldUpdateOperationsInput | number
|
|
105757
|
+
flaggedByUserId?: IntFieldUpdateOperationsInput | number
|
|
105758
|
+
editedByUserId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
105759
|
+
}
|
|
105760
|
+
|
|
105761
|
+
export type CreatorFlagCreateManyInput = {
|
|
105762
|
+
id?: number
|
|
105763
|
+
label: string
|
|
105764
|
+
comment?: string | null
|
|
105765
|
+
color: string
|
|
105766
|
+
createdAt?: Date | string
|
|
105767
|
+
updatedAt?: Date | string
|
|
105768
|
+
userId: number
|
|
105769
|
+
flaggedByUserId: number
|
|
105770
|
+
editedByUserId?: number | null
|
|
105771
|
+
}
|
|
105772
|
+
|
|
105773
|
+
export type CreatorFlagUpdateManyMutationInput = {
|
|
105774
|
+
label?: StringFieldUpdateOperationsInput | string
|
|
105775
|
+
comment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
105776
|
+
color?: StringFieldUpdateOperationsInput | string
|
|
105777
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105778
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105779
|
+
}
|
|
105780
|
+
|
|
105781
|
+
export type CreatorFlagUncheckedUpdateManyInput = {
|
|
105782
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
105783
|
+
label?: StringFieldUpdateOperationsInput | string
|
|
105784
|
+
comment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
105785
|
+
color?: StringFieldUpdateOperationsInput | string
|
|
105786
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105787
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105788
|
+
userId?: IntFieldUpdateOperationsInput | number
|
|
105789
|
+
flaggedByUserId?: IntFieldUpdateOperationsInput | number
|
|
105790
|
+
editedByUserId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
105791
|
+
}
|
|
105792
|
+
|
|
104290
105793
|
export type IntFilter<$PrismaModel = never> = {
|
|
104291
105794
|
equals?: number | IntFieldRefInput<$PrismaModel>
|
|
104292
105795
|
in?: number[] | ListIntFieldRefInput<$PrismaModel>
|
|
@@ -104298,10 +105801,10 @@ export namespace Prisma {
|
|
|
104298
105801
|
not?: NestedIntFilter<$PrismaModel> | number
|
|
104299
105802
|
}
|
|
104300
105803
|
|
|
104301
|
-
export type
|
|
104302
|
-
equals?: string | StringFieldRefInput<$PrismaModel>
|
|
104303
|
-
in?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
104304
|
-
notIn?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
105804
|
+
export type StringNullableFilter<$PrismaModel = never> = {
|
|
105805
|
+
equals?: string | StringFieldRefInput<$PrismaModel> | null
|
|
105806
|
+
in?: string[] | ListStringFieldRefInput<$PrismaModel> | null
|
|
105807
|
+
notIn?: string[] | ListStringFieldRefInput<$PrismaModel> | null
|
|
104305
105808
|
lt?: string | StringFieldRefInput<$PrismaModel>
|
|
104306
105809
|
lte?: string | StringFieldRefInput<$PrismaModel>
|
|
104307
105810
|
gt?: string | StringFieldRefInput<$PrismaModel>
|
|
@@ -104311,13 +105814,13 @@ export namespace Prisma {
|
|
|
104311
105814
|
endsWith?: string | StringFieldRefInput<$PrismaModel>
|
|
104312
105815
|
search?: string
|
|
104313
105816
|
mode?: QueryMode
|
|
104314
|
-
not?:
|
|
105817
|
+
not?: NestedStringNullableFilter<$PrismaModel> | string | null
|
|
104315
105818
|
}
|
|
104316
105819
|
|
|
104317
|
-
export type
|
|
104318
|
-
equals?: string | StringFieldRefInput<$PrismaModel>
|
|
104319
|
-
in?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
104320
|
-
notIn?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
105820
|
+
export type StringFilter<$PrismaModel = never> = {
|
|
105821
|
+
equals?: string | StringFieldRefInput<$PrismaModel>
|
|
105822
|
+
in?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
105823
|
+
notIn?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
104321
105824
|
lt?: string | StringFieldRefInput<$PrismaModel>
|
|
104322
105825
|
lte?: string | StringFieldRefInput<$PrismaModel>
|
|
104323
105826
|
gt?: string | StringFieldRefInput<$PrismaModel>
|
|
@@ -104327,7 +105830,7 @@ export namespace Prisma {
|
|
|
104327
105830
|
endsWith?: string | StringFieldRefInput<$PrismaModel>
|
|
104328
105831
|
search?: string
|
|
104329
105832
|
mode?: QueryMode
|
|
104330
|
-
not?:
|
|
105833
|
+
not?: NestedStringFilter<$PrismaModel> | string
|
|
104331
105834
|
}
|
|
104332
105835
|
|
|
104333
105836
|
export type DateTimeFilter<$PrismaModel = never> = {
|
|
@@ -104503,6 +106006,12 @@ export namespace Prisma {
|
|
|
104503
106006
|
none?: ImpactRadiusEventWhereInput
|
|
104504
106007
|
}
|
|
104505
106008
|
|
|
106009
|
+
export type CreatorFlagListRelationFilter = {
|
|
106010
|
+
every?: CreatorFlagWhereInput
|
|
106011
|
+
some?: CreatorFlagWhereInput
|
|
106012
|
+
none?: CreatorFlagWhereInput
|
|
106013
|
+
}
|
|
106014
|
+
|
|
104506
106015
|
export type SortOrderInput = {
|
|
104507
106016
|
sort: SortOrder
|
|
104508
106017
|
nulls?: NullsOrder
|
|
@@ -104560,6 +106069,10 @@ export namespace Prisma {
|
|
|
104560
106069
|
_count?: SortOrder
|
|
104561
106070
|
}
|
|
104562
106071
|
|
|
106072
|
+
export type CreatorFlagOrderByRelationAggregateInput = {
|
|
106073
|
+
_count?: SortOrder
|
|
106074
|
+
}
|
|
106075
|
+
|
|
104563
106076
|
export type UserOrderByRelevanceInput = {
|
|
104564
106077
|
fields: UserOrderByRelevanceFieldEnum | UserOrderByRelevanceFieldEnum[]
|
|
104565
106078
|
sort: SortOrder
|
|
@@ -104568,6 +106081,7 @@ export namespace Prisma {
|
|
|
104568
106081
|
|
|
104569
106082
|
export type UserCountOrderByAggregateInput = {
|
|
104570
106083
|
id?: SortOrder
|
|
106084
|
+
idmId?: SortOrder
|
|
104571
106085
|
role?: SortOrder
|
|
104572
106086
|
email?: SortOrder
|
|
104573
106087
|
password?: SortOrder
|
|
@@ -104598,6 +106112,7 @@ export namespace Prisma {
|
|
|
104598
106112
|
|
|
104599
106113
|
export type UserMaxOrderByAggregateInput = {
|
|
104600
106114
|
id?: SortOrder
|
|
106115
|
+
idmId?: SortOrder
|
|
104601
106116
|
role?: SortOrder
|
|
104602
106117
|
email?: SortOrder
|
|
104603
106118
|
password?: SortOrder
|
|
@@ -104621,6 +106136,7 @@ export namespace Prisma {
|
|
|
104621
106136
|
|
|
104622
106137
|
export type UserMinOrderByAggregateInput = {
|
|
104623
106138
|
id?: SortOrder
|
|
106139
|
+
idmId?: SortOrder
|
|
104624
106140
|
role?: SortOrder
|
|
104625
106141
|
email?: SortOrder
|
|
104626
106142
|
password?: SortOrder
|
|
@@ -104664,10 +106180,10 @@ export namespace Prisma {
|
|
|
104664
106180
|
_max?: NestedIntFilter<$PrismaModel>
|
|
104665
106181
|
}
|
|
104666
106182
|
|
|
104667
|
-
export type
|
|
104668
|
-
equals?: string | StringFieldRefInput<$PrismaModel>
|
|
104669
|
-
in?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
104670
|
-
notIn?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
106183
|
+
export type StringNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
106184
|
+
equals?: string | StringFieldRefInput<$PrismaModel> | null
|
|
106185
|
+
in?: string[] | ListStringFieldRefInput<$PrismaModel> | null
|
|
106186
|
+
notIn?: string[] | ListStringFieldRefInput<$PrismaModel> | null
|
|
104671
106187
|
lt?: string | StringFieldRefInput<$PrismaModel>
|
|
104672
106188
|
lte?: string | StringFieldRefInput<$PrismaModel>
|
|
104673
106189
|
gt?: string | StringFieldRefInput<$PrismaModel>
|
|
@@ -104677,16 +106193,16 @@ export namespace Prisma {
|
|
|
104677
106193
|
endsWith?: string | StringFieldRefInput<$PrismaModel>
|
|
104678
106194
|
search?: string
|
|
104679
106195
|
mode?: QueryMode
|
|
104680
|
-
not?:
|
|
104681
|
-
_count?:
|
|
104682
|
-
_min?:
|
|
104683
|
-
_max?:
|
|
106196
|
+
not?: NestedStringNullableWithAggregatesFilter<$PrismaModel> | string | null
|
|
106197
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
106198
|
+
_min?: NestedStringNullableFilter<$PrismaModel>
|
|
106199
|
+
_max?: NestedStringNullableFilter<$PrismaModel>
|
|
104684
106200
|
}
|
|
104685
106201
|
|
|
104686
|
-
export type
|
|
104687
|
-
equals?: string | StringFieldRefInput<$PrismaModel>
|
|
104688
|
-
in?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
104689
|
-
notIn?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
106202
|
+
export type StringWithAggregatesFilter<$PrismaModel = never> = {
|
|
106203
|
+
equals?: string | StringFieldRefInput<$PrismaModel>
|
|
106204
|
+
in?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
106205
|
+
notIn?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
104690
106206
|
lt?: string | StringFieldRefInput<$PrismaModel>
|
|
104691
106207
|
lte?: string | StringFieldRefInput<$PrismaModel>
|
|
104692
106208
|
gt?: string | StringFieldRefInput<$PrismaModel>
|
|
@@ -104696,10 +106212,10 @@ export namespace Prisma {
|
|
|
104696
106212
|
endsWith?: string | StringFieldRefInput<$PrismaModel>
|
|
104697
106213
|
search?: string
|
|
104698
106214
|
mode?: QueryMode
|
|
104699
|
-
not?:
|
|
104700
|
-
_count?:
|
|
104701
|
-
_min?:
|
|
104702
|
-
_max?:
|
|
106215
|
+
not?: NestedStringWithAggregatesFilter<$PrismaModel> | string
|
|
106216
|
+
_count?: NestedIntFilter<$PrismaModel>
|
|
106217
|
+
_min?: NestedStringFilter<$PrismaModel>
|
|
106218
|
+
_max?: NestedStringFilter<$PrismaModel>
|
|
104703
106219
|
}
|
|
104704
106220
|
|
|
104705
106221
|
export type DateTimeWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -109514,6 +111030,62 @@ export namespace Prisma {
|
|
|
109514
111030
|
discountCodeId?: SortOrder
|
|
109515
111031
|
}
|
|
109516
111032
|
|
|
111033
|
+
export type CreatorFlagOrderByRelevanceInput = {
|
|
111034
|
+
fields: CreatorFlagOrderByRelevanceFieldEnum | CreatorFlagOrderByRelevanceFieldEnum[]
|
|
111035
|
+
sort: SortOrder
|
|
111036
|
+
search: string
|
|
111037
|
+
}
|
|
111038
|
+
|
|
111039
|
+
export type CreatorFlagCountOrderByAggregateInput = {
|
|
111040
|
+
id?: SortOrder
|
|
111041
|
+
label?: SortOrder
|
|
111042
|
+
comment?: SortOrder
|
|
111043
|
+
color?: SortOrder
|
|
111044
|
+
createdAt?: SortOrder
|
|
111045
|
+
updatedAt?: SortOrder
|
|
111046
|
+
userId?: SortOrder
|
|
111047
|
+
flaggedByUserId?: SortOrder
|
|
111048
|
+
editedByUserId?: SortOrder
|
|
111049
|
+
}
|
|
111050
|
+
|
|
111051
|
+
export type CreatorFlagAvgOrderByAggregateInput = {
|
|
111052
|
+
id?: SortOrder
|
|
111053
|
+
userId?: SortOrder
|
|
111054
|
+
flaggedByUserId?: SortOrder
|
|
111055
|
+
editedByUserId?: SortOrder
|
|
111056
|
+
}
|
|
111057
|
+
|
|
111058
|
+
export type CreatorFlagMaxOrderByAggregateInput = {
|
|
111059
|
+
id?: SortOrder
|
|
111060
|
+
label?: SortOrder
|
|
111061
|
+
comment?: SortOrder
|
|
111062
|
+
color?: SortOrder
|
|
111063
|
+
createdAt?: SortOrder
|
|
111064
|
+
updatedAt?: SortOrder
|
|
111065
|
+
userId?: SortOrder
|
|
111066
|
+
flaggedByUserId?: SortOrder
|
|
111067
|
+
editedByUserId?: SortOrder
|
|
111068
|
+
}
|
|
111069
|
+
|
|
111070
|
+
export type CreatorFlagMinOrderByAggregateInput = {
|
|
111071
|
+
id?: SortOrder
|
|
111072
|
+
label?: SortOrder
|
|
111073
|
+
comment?: SortOrder
|
|
111074
|
+
color?: SortOrder
|
|
111075
|
+
createdAt?: SortOrder
|
|
111076
|
+
updatedAt?: SortOrder
|
|
111077
|
+
userId?: SortOrder
|
|
111078
|
+
flaggedByUserId?: SortOrder
|
|
111079
|
+
editedByUserId?: SortOrder
|
|
111080
|
+
}
|
|
111081
|
+
|
|
111082
|
+
export type CreatorFlagSumOrderByAggregateInput = {
|
|
111083
|
+
id?: SortOrder
|
|
111084
|
+
userId?: SortOrder
|
|
111085
|
+
flaggedByUserId?: SortOrder
|
|
111086
|
+
editedByUserId?: SortOrder
|
|
111087
|
+
}
|
|
111088
|
+
|
|
109517
111089
|
export type UserCreateNestedOneWithoutReferredUsersInput = {
|
|
109518
111090
|
create?: XOR<UserCreateWithoutReferredUsersInput, UserUncheckedCreateWithoutReferredUsersInput>
|
|
109519
111091
|
connectOrCreate?: UserCreateOrConnectWithoutReferredUsersInput
|
|
@@ -109653,6 +111225,27 @@ export namespace Prisma {
|
|
|
109653
111225
|
connect?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
109654
111226
|
}
|
|
109655
111227
|
|
|
111228
|
+
export type CreatorFlagCreateNestedManyWithoutUserInput = {
|
|
111229
|
+
create?: XOR<CreatorFlagCreateWithoutUserInput, CreatorFlagUncheckedCreateWithoutUserInput> | CreatorFlagCreateWithoutUserInput[] | CreatorFlagUncheckedCreateWithoutUserInput[]
|
|
111230
|
+
connectOrCreate?: CreatorFlagCreateOrConnectWithoutUserInput | CreatorFlagCreateOrConnectWithoutUserInput[]
|
|
111231
|
+
createMany?: CreatorFlagCreateManyUserInputEnvelope
|
|
111232
|
+
connect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111233
|
+
}
|
|
111234
|
+
|
|
111235
|
+
export type CreatorFlagCreateNestedManyWithoutFlaggedByUserInput = {
|
|
111236
|
+
create?: XOR<CreatorFlagCreateWithoutFlaggedByUserInput, CreatorFlagUncheckedCreateWithoutFlaggedByUserInput> | CreatorFlagCreateWithoutFlaggedByUserInput[] | CreatorFlagUncheckedCreateWithoutFlaggedByUserInput[]
|
|
111237
|
+
connectOrCreate?: CreatorFlagCreateOrConnectWithoutFlaggedByUserInput | CreatorFlagCreateOrConnectWithoutFlaggedByUserInput[]
|
|
111238
|
+
createMany?: CreatorFlagCreateManyFlaggedByUserInputEnvelope
|
|
111239
|
+
connect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111240
|
+
}
|
|
111241
|
+
|
|
111242
|
+
export type CreatorFlagCreateNestedManyWithoutEditedByUserInput = {
|
|
111243
|
+
create?: XOR<CreatorFlagCreateWithoutEditedByUserInput, CreatorFlagUncheckedCreateWithoutEditedByUserInput> | CreatorFlagCreateWithoutEditedByUserInput[] | CreatorFlagUncheckedCreateWithoutEditedByUserInput[]
|
|
111244
|
+
connectOrCreate?: CreatorFlagCreateOrConnectWithoutEditedByUserInput | CreatorFlagCreateOrConnectWithoutEditedByUserInput[]
|
|
111245
|
+
createMany?: CreatorFlagCreateManyEditedByUserInputEnvelope
|
|
111246
|
+
connect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111247
|
+
}
|
|
111248
|
+
|
|
109656
111249
|
export type UserUncheckedCreateNestedManyWithoutReferrerInput = {
|
|
109657
111250
|
create?: XOR<UserCreateWithoutReferrerInput, UserUncheckedCreateWithoutReferrerInput> | UserCreateWithoutReferrerInput[] | UserUncheckedCreateWithoutReferrerInput[]
|
|
109658
111251
|
connectOrCreate?: UserCreateOrConnectWithoutReferrerInput | UserCreateOrConnectWithoutReferrerInput[]
|
|
@@ -109786,14 +111379,35 @@ export namespace Prisma {
|
|
|
109786
111379
|
connect?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
109787
111380
|
}
|
|
109788
111381
|
|
|
109789
|
-
export type
|
|
109790
|
-
|
|
111382
|
+
export type CreatorFlagUncheckedCreateNestedManyWithoutUserInput = {
|
|
111383
|
+
create?: XOR<CreatorFlagCreateWithoutUserInput, CreatorFlagUncheckedCreateWithoutUserInput> | CreatorFlagCreateWithoutUserInput[] | CreatorFlagUncheckedCreateWithoutUserInput[]
|
|
111384
|
+
connectOrCreate?: CreatorFlagCreateOrConnectWithoutUserInput | CreatorFlagCreateOrConnectWithoutUserInput[]
|
|
111385
|
+
createMany?: CreatorFlagCreateManyUserInputEnvelope
|
|
111386
|
+
connect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111387
|
+
}
|
|
111388
|
+
|
|
111389
|
+
export type CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput = {
|
|
111390
|
+
create?: XOR<CreatorFlagCreateWithoutFlaggedByUserInput, CreatorFlagUncheckedCreateWithoutFlaggedByUserInput> | CreatorFlagCreateWithoutFlaggedByUserInput[] | CreatorFlagUncheckedCreateWithoutFlaggedByUserInput[]
|
|
111391
|
+
connectOrCreate?: CreatorFlagCreateOrConnectWithoutFlaggedByUserInput | CreatorFlagCreateOrConnectWithoutFlaggedByUserInput[]
|
|
111392
|
+
createMany?: CreatorFlagCreateManyFlaggedByUserInputEnvelope
|
|
111393
|
+
connect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111394
|
+
}
|
|
111395
|
+
|
|
111396
|
+
export type CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput = {
|
|
111397
|
+
create?: XOR<CreatorFlagCreateWithoutEditedByUserInput, CreatorFlagUncheckedCreateWithoutEditedByUserInput> | CreatorFlagCreateWithoutEditedByUserInput[] | CreatorFlagUncheckedCreateWithoutEditedByUserInput[]
|
|
111398
|
+
connectOrCreate?: CreatorFlagCreateOrConnectWithoutEditedByUserInput | CreatorFlagCreateOrConnectWithoutEditedByUserInput[]
|
|
111399
|
+
createMany?: CreatorFlagCreateManyEditedByUserInputEnvelope
|
|
111400
|
+
connect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
109791
111401
|
}
|
|
109792
111402
|
|
|
109793
111403
|
export type NullableStringFieldUpdateOperationsInput = {
|
|
109794
111404
|
set?: string | null
|
|
109795
111405
|
}
|
|
109796
111406
|
|
|
111407
|
+
export type StringFieldUpdateOperationsInput = {
|
|
111408
|
+
set?: string
|
|
111409
|
+
}
|
|
111410
|
+
|
|
109797
111411
|
export type DateTimeFieldUpdateOperationsInput = {
|
|
109798
111412
|
set?: Date | string
|
|
109799
111413
|
}
|
|
@@ -110072,6 +111686,48 @@ export namespace Prisma {
|
|
|
110072
111686
|
deleteMany?: ImpactRadiusEventScalarWhereInput | ImpactRadiusEventScalarWhereInput[]
|
|
110073
111687
|
}
|
|
110074
111688
|
|
|
111689
|
+
export type CreatorFlagUpdateManyWithoutUserNestedInput = {
|
|
111690
|
+
create?: XOR<CreatorFlagCreateWithoutUserInput, CreatorFlagUncheckedCreateWithoutUserInput> | CreatorFlagCreateWithoutUserInput[] | CreatorFlagUncheckedCreateWithoutUserInput[]
|
|
111691
|
+
connectOrCreate?: CreatorFlagCreateOrConnectWithoutUserInput | CreatorFlagCreateOrConnectWithoutUserInput[]
|
|
111692
|
+
upsert?: CreatorFlagUpsertWithWhereUniqueWithoutUserInput | CreatorFlagUpsertWithWhereUniqueWithoutUserInput[]
|
|
111693
|
+
createMany?: CreatorFlagCreateManyUserInputEnvelope
|
|
111694
|
+
set?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111695
|
+
disconnect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111696
|
+
delete?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111697
|
+
connect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111698
|
+
update?: CreatorFlagUpdateWithWhereUniqueWithoutUserInput | CreatorFlagUpdateWithWhereUniqueWithoutUserInput[]
|
|
111699
|
+
updateMany?: CreatorFlagUpdateManyWithWhereWithoutUserInput | CreatorFlagUpdateManyWithWhereWithoutUserInput[]
|
|
111700
|
+
deleteMany?: CreatorFlagScalarWhereInput | CreatorFlagScalarWhereInput[]
|
|
111701
|
+
}
|
|
111702
|
+
|
|
111703
|
+
export type CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput = {
|
|
111704
|
+
create?: XOR<CreatorFlagCreateWithoutFlaggedByUserInput, CreatorFlagUncheckedCreateWithoutFlaggedByUserInput> | CreatorFlagCreateWithoutFlaggedByUserInput[] | CreatorFlagUncheckedCreateWithoutFlaggedByUserInput[]
|
|
111705
|
+
connectOrCreate?: CreatorFlagCreateOrConnectWithoutFlaggedByUserInput | CreatorFlagCreateOrConnectWithoutFlaggedByUserInput[]
|
|
111706
|
+
upsert?: CreatorFlagUpsertWithWhereUniqueWithoutFlaggedByUserInput | CreatorFlagUpsertWithWhereUniqueWithoutFlaggedByUserInput[]
|
|
111707
|
+
createMany?: CreatorFlagCreateManyFlaggedByUserInputEnvelope
|
|
111708
|
+
set?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111709
|
+
disconnect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111710
|
+
delete?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111711
|
+
connect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111712
|
+
update?: CreatorFlagUpdateWithWhereUniqueWithoutFlaggedByUserInput | CreatorFlagUpdateWithWhereUniqueWithoutFlaggedByUserInput[]
|
|
111713
|
+
updateMany?: CreatorFlagUpdateManyWithWhereWithoutFlaggedByUserInput | CreatorFlagUpdateManyWithWhereWithoutFlaggedByUserInput[]
|
|
111714
|
+
deleteMany?: CreatorFlagScalarWhereInput | CreatorFlagScalarWhereInput[]
|
|
111715
|
+
}
|
|
111716
|
+
|
|
111717
|
+
export type CreatorFlagUpdateManyWithoutEditedByUserNestedInput = {
|
|
111718
|
+
create?: XOR<CreatorFlagCreateWithoutEditedByUserInput, CreatorFlagUncheckedCreateWithoutEditedByUserInput> | CreatorFlagCreateWithoutEditedByUserInput[] | CreatorFlagUncheckedCreateWithoutEditedByUserInput[]
|
|
111719
|
+
connectOrCreate?: CreatorFlagCreateOrConnectWithoutEditedByUserInput | CreatorFlagCreateOrConnectWithoutEditedByUserInput[]
|
|
111720
|
+
upsert?: CreatorFlagUpsertWithWhereUniqueWithoutEditedByUserInput | CreatorFlagUpsertWithWhereUniqueWithoutEditedByUserInput[]
|
|
111721
|
+
createMany?: CreatorFlagCreateManyEditedByUserInputEnvelope
|
|
111722
|
+
set?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111723
|
+
disconnect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111724
|
+
delete?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111725
|
+
connect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111726
|
+
update?: CreatorFlagUpdateWithWhereUniqueWithoutEditedByUserInput | CreatorFlagUpdateWithWhereUniqueWithoutEditedByUserInput[]
|
|
111727
|
+
updateMany?: CreatorFlagUpdateManyWithWhereWithoutEditedByUserInput | CreatorFlagUpdateManyWithWhereWithoutEditedByUserInput[]
|
|
111728
|
+
deleteMany?: CreatorFlagScalarWhereInput | CreatorFlagScalarWhereInput[]
|
|
111729
|
+
}
|
|
111730
|
+
|
|
110075
111731
|
export type IntFieldUpdateOperationsInput = {
|
|
110076
111732
|
set?: number
|
|
110077
111733
|
increment?: number
|
|
@@ -110332,6 +111988,48 @@ export namespace Prisma {
|
|
|
110332
111988
|
deleteMany?: ImpactRadiusEventScalarWhereInput | ImpactRadiusEventScalarWhereInput[]
|
|
110333
111989
|
}
|
|
110334
111990
|
|
|
111991
|
+
export type CreatorFlagUncheckedUpdateManyWithoutUserNestedInput = {
|
|
111992
|
+
create?: XOR<CreatorFlagCreateWithoutUserInput, CreatorFlagUncheckedCreateWithoutUserInput> | CreatorFlagCreateWithoutUserInput[] | CreatorFlagUncheckedCreateWithoutUserInput[]
|
|
111993
|
+
connectOrCreate?: CreatorFlagCreateOrConnectWithoutUserInput | CreatorFlagCreateOrConnectWithoutUserInput[]
|
|
111994
|
+
upsert?: CreatorFlagUpsertWithWhereUniqueWithoutUserInput | CreatorFlagUpsertWithWhereUniqueWithoutUserInput[]
|
|
111995
|
+
createMany?: CreatorFlagCreateManyUserInputEnvelope
|
|
111996
|
+
set?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111997
|
+
disconnect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111998
|
+
delete?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
111999
|
+
connect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
112000
|
+
update?: CreatorFlagUpdateWithWhereUniqueWithoutUserInput | CreatorFlagUpdateWithWhereUniqueWithoutUserInput[]
|
|
112001
|
+
updateMany?: CreatorFlagUpdateManyWithWhereWithoutUserInput | CreatorFlagUpdateManyWithWhereWithoutUserInput[]
|
|
112002
|
+
deleteMany?: CreatorFlagScalarWhereInput | CreatorFlagScalarWhereInput[]
|
|
112003
|
+
}
|
|
112004
|
+
|
|
112005
|
+
export type CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput = {
|
|
112006
|
+
create?: XOR<CreatorFlagCreateWithoutFlaggedByUserInput, CreatorFlagUncheckedCreateWithoutFlaggedByUserInput> | CreatorFlagCreateWithoutFlaggedByUserInput[] | CreatorFlagUncheckedCreateWithoutFlaggedByUserInput[]
|
|
112007
|
+
connectOrCreate?: CreatorFlagCreateOrConnectWithoutFlaggedByUserInput | CreatorFlagCreateOrConnectWithoutFlaggedByUserInput[]
|
|
112008
|
+
upsert?: CreatorFlagUpsertWithWhereUniqueWithoutFlaggedByUserInput | CreatorFlagUpsertWithWhereUniqueWithoutFlaggedByUserInput[]
|
|
112009
|
+
createMany?: CreatorFlagCreateManyFlaggedByUserInputEnvelope
|
|
112010
|
+
set?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
112011
|
+
disconnect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
112012
|
+
delete?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
112013
|
+
connect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
112014
|
+
update?: CreatorFlagUpdateWithWhereUniqueWithoutFlaggedByUserInput | CreatorFlagUpdateWithWhereUniqueWithoutFlaggedByUserInput[]
|
|
112015
|
+
updateMany?: CreatorFlagUpdateManyWithWhereWithoutFlaggedByUserInput | CreatorFlagUpdateManyWithWhereWithoutFlaggedByUserInput[]
|
|
112016
|
+
deleteMany?: CreatorFlagScalarWhereInput | CreatorFlagScalarWhereInput[]
|
|
112017
|
+
}
|
|
112018
|
+
|
|
112019
|
+
export type CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput = {
|
|
112020
|
+
create?: XOR<CreatorFlagCreateWithoutEditedByUserInput, CreatorFlagUncheckedCreateWithoutEditedByUserInput> | CreatorFlagCreateWithoutEditedByUserInput[] | CreatorFlagUncheckedCreateWithoutEditedByUserInput[]
|
|
112021
|
+
connectOrCreate?: CreatorFlagCreateOrConnectWithoutEditedByUserInput | CreatorFlagCreateOrConnectWithoutEditedByUserInput[]
|
|
112022
|
+
upsert?: CreatorFlagUpsertWithWhereUniqueWithoutEditedByUserInput | CreatorFlagUpsertWithWhereUniqueWithoutEditedByUserInput[]
|
|
112023
|
+
createMany?: CreatorFlagCreateManyEditedByUserInputEnvelope
|
|
112024
|
+
set?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
112025
|
+
disconnect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
112026
|
+
delete?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
112027
|
+
connect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
|
|
112028
|
+
update?: CreatorFlagUpdateWithWhereUniqueWithoutEditedByUserInput | CreatorFlagUpdateWithWhereUniqueWithoutEditedByUserInput[]
|
|
112029
|
+
updateMany?: CreatorFlagUpdateManyWithWhereWithoutEditedByUserInput | CreatorFlagUpdateManyWithWhereWithoutEditedByUserInput[]
|
|
112030
|
+
deleteMany?: CreatorFlagScalarWhereInput | CreatorFlagScalarWhereInput[]
|
|
112031
|
+
}
|
|
112032
|
+
|
|
110335
112033
|
export type UserCreateNestedOneWithoutLogsInput = {
|
|
110336
112034
|
create?: XOR<UserCreateWithoutLogsInput, UserUncheckedCreateWithoutLogsInput>
|
|
110337
112035
|
connectOrCreate?: UserCreateOrConnectWithoutLogsInput
|
|
@@ -115922,6 +117620,50 @@ export namespace Prisma {
|
|
|
115922
117620
|
update?: XOR<XOR<ShopifyDiscountCodeUpdateToOneWithWhereWithoutShopifySalesInput, ShopifyDiscountCodeUpdateWithoutShopifySalesInput>, ShopifyDiscountCodeUncheckedUpdateWithoutShopifySalesInput>
|
|
115923
117621
|
}
|
|
115924
117622
|
|
|
117623
|
+
export type UserCreateNestedOneWithoutFlagsAssignedInput = {
|
|
117624
|
+
create?: XOR<UserCreateWithoutFlagsAssignedInput, UserUncheckedCreateWithoutFlagsAssignedInput>
|
|
117625
|
+
connectOrCreate?: UserCreateOrConnectWithoutFlagsAssignedInput
|
|
117626
|
+
connect?: UserWhereUniqueInput
|
|
117627
|
+
}
|
|
117628
|
+
|
|
117629
|
+
export type UserCreateNestedOneWithoutFlagsCreatedInput = {
|
|
117630
|
+
create?: XOR<UserCreateWithoutFlagsCreatedInput, UserUncheckedCreateWithoutFlagsCreatedInput>
|
|
117631
|
+
connectOrCreate?: UserCreateOrConnectWithoutFlagsCreatedInput
|
|
117632
|
+
connect?: UserWhereUniqueInput
|
|
117633
|
+
}
|
|
117634
|
+
|
|
117635
|
+
export type UserCreateNestedOneWithoutFlagsEditedInput = {
|
|
117636
|
+
create?: XOR<UserCreateWithoutFlagsEditedInput, UserUncheckedCreateWithoutFlagsEditedInput>
|
|
117637
|
+
connectOrCreate?: UserCreateOrConnectWithoutFlagsEditedInput
|
|
117638
|
+
connect?: UserWhereUniqueInput
|
|
117639
|
+
}
|
|
117640
|
+
|
|
117641
|
+
export type UserUpdateOneRequiredWithoutFlagsAssignedNestedInput = {
|
|
117642
|
+
create?: XOR<UserCreateWithoutFlagsAssignedInput, UserUncheckedCreateWithoutFlagsAssignedInput>
|
|
117643
|
+
connectOrCreate?: UserCreateOrConnectWithoutFlagsAssignedInput
|
|
117644
|
+
upsert?: UserUpsertWithoutFlagsAssignedInput
|
|
117645
|
+
connect?: UserWhereUniqueInput
|
|
117646
|
+
update?: XOR<XOR<UserUpdateToOneWithWhereWithoutFlagsAssignedInput, UserUpdateWithoutFlagsAssignedInput>, UserUncheckedUpdateWithoutFlagsAssignedInput>
|
|
117647
|
+
}
|
|
117648
|
+
|
|
117649
|
+
export type UserUpdateOneRequiredWithoutFlagsCreatedNestedInput = {
|
|
117650
|
+
create?: XOR<UserCreateWithoutFlagsCreatedInput, UserUncheckedCreateWithoutFlagsCreatedInput>
|
|
117651
|
+
connectOrCreate?: UserCreateOrConnectWithoutFlagsCreatedInput
|
|
117652
|
+
upsert?: UserUpsertWithoutFlagsCreatedInput
|
|
117653
|
+
connect?: UserWhereUniqueInput
|
|
117654
|
+
update?: XOR<XOR<UserUpdateToOneWithWhereWithoutFlagsCreatedInput, UserUpdateWithoutFlagsCreatedInput>, UserUncheckedUpdateWithoutFlagsCreatedInput>
|
|
117655
|
+
}
|
|
117656
|
+
|
|
117657
|
+
export type UserUpdateOneWithoutFlagsEditedNestedInput = {
|
|
117658
|
+
create?: XOR<UserCreateWithoutFlagsEditedInput, UserUncheckedCreateWithoutFlagsEditedInput>
|
|
117659
|
+
connectOrCreate?: UserCreateOrConnectWithoutFlagsEditedInput
|
|
117660
|
+
upsert?: UserUpsertWithoutFlagsEditedInput
|
|
117661
|
+
disconnect?: UserWhereInput | boolean
|
|
117662
|
+
delete?: UserWhereInput | boolean
|
|
117663
|
+
connect?: UserWhereUniqueInput
|
|
117664
|
+
update?: XOR<XOR<UserUpdateToOneWithWhereWithoutFlagsEditedInput, UserUpdateWithoutFlagsEditedInput>, UserUncheckedUpdateWithoutFlagsEditedInput>
|
|
117665
|
+
}
|
|
117666
|
+
|
|
115925
117667
|
export type NestedIntFilter<$PrismaModel = never> = {
|
|
115926
117668
|
equals?: number | IntFieldRefInput<$PrismaModel>
|
|
115927
117669
|
in?: number[] | ListIntFieldRefInput<$PrismaModel>
|
|
@@ -115933,10 +117675,10 @@ export namespace Prisma {
|
|
|
115933
117675
|
not?: NestedIntFilter<$PrismaModel> | number
|
|
115934
117676
|
}
|
|
115935
117677
|
|
|
115936
|
-
export type
|
|
115937
|
-
equals?: string | StringFieldRefInput<$PrismaModel>
|
|
115938
|
-
in?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
115939
|
-
notIn?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
117678
|
+
export type NestedStringNullableFilter<$PrismaModel = never> = {
|
|
117679
|
+
equals?: string | StringFieldRefInput<$PrismaModel> | null
|
|
117680
|
+
in?: string[] | ListStringFieldRefInput<$PrismaModel> | null
|
|
117681
|
+
notIn?: string[] | ListStringFieldRefInput<$PrismaModel> | null
|
|
115940
117682
|
lt?: string | StringFieldRefInput<$PrismaModel>
|
|
115941
117683
|
lte?: string | StringFieldRefInput<$PrismaModel>
|
|
115942
117684
|
gt?: string | StringFieldRefInput<$PrismaModel>
|
|
@@ -115945,13 +117687,13 @@ export namespace Prisma {
|
|
|
115945
117687
|
startsWith?: string | StringFieldRefInput<$PrismaModel>
|
|
115946
117688
|
endsWith?: string | StringFieldRefInput<$PrismaModel>
|
|
115947
117689
|
search?: string
|
|
115948
|
-
not?:
|
|
117690
|
+
not?: NestedStringNullableFilter<$PrismaModel> | string | null
|
|
115949
117691
|
}
|
|
115950
117692
|
|
|
115951
|
-
export type
|
|
115952
|
-
equals?: string | StringFieldRefInput<$PrismaModel>
|
|
115953
|
-
in?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
115954
|
-
notIn?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
117693
|
+
export type NestedStringFilter<$PrismaModel = never> = {
|
|
117694
|
+
equals?: string | StringFieldRefInput<$PrismaModel>
|
|
117695
|
+
in?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
117696
|
+
notIn?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
115955
117697
|
lt?: string | StringFieldRefInput<$PrismaModel>
|
|
115956
117698
|
lte?: string | StringFieldRefInput<$PrismaModel>
|
|
115957
117699
|
gt?: string | StringFieldRefInput<$PrismaModel>
|
|
@@ -115960,7 +117702,7 @@ export namespace Prisma {
|
|
|
115960
117702
|
startsWith?: string | StringFieldRefInput<$PrismaModel>
|
|
115961
117703
|
endsWith?: string | StringFieldRefInput<$PrismaModel>
|
|
115962
117704
|
search?: string
|
|
115963
|
-
not?:
|
|
117705
|
+
not?: NestedStringFilter<$PrismaModel> | string
|
|
115964
117706
|
}
|
|
115965
117707
|
|
|
115966
117708
|
export type NestedDateTimeFilter<$PrismaModel = never> = {
|
|
@@ -116023,10 +117765,10 @@ export namespace Prisma {
|
|
|
116023
117765
|
not?: NestedFloatFilter<$PrismaModel> | number
|
|
116024
117766
|
}
|
|
116025
117767
|
|
|
116026
|
-
export type
|
|
116027
|
-
equals?: string | StringFieldRefInput<$PrismaModel>
|
|
116028
|
-
in?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
116029
|
-
notIn?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
117768
|
+
export type NestedStringNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
117769
|
+
equals?: string | StringFieldRefInput<$PrismaModel> | null
|
|
117770
|
+
in?: string[] | ListStringFieldRefInput<$PrismaModel> | null
|
|
117771
|
+
notIn?: string[] | ListStringFieldRefInput<$PrismaModel> | null
|
|
116030
117772
|
lt?: string | StringFieldRefInput<$PrismaModel>
|
|
116031
117773
|
lte?: string | StringFieldRefInput<$PrismaModel>
|
|
116032
117774
|
gt?: string | StringFieldRefInput<$PrismaModel>
|
|
@@ -116035,16 +117777,16 @@ export namespace Prisma {
|
|
|
116035
117777
|
startsWith?: string | StringFieldRefInput<$PrismaModel>
|
|
116036
117778
|
endsWith?: string | StringFieldRefInput<$PrismaModel>
|
|
116037
117779
|
search?: string
|
|
116038
|
-
not?:
|
|
116039
|
-
_count?:
|
|
116040
|
-
_min?:
|
|
116041
|
-
_max?:
|
|
117780
|
+
not?: NestedStringNullableWithAggregatesFilter<$PrismaModel> | string | null
|
|
117781
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
117782
|
+
_min?: NestedStringNullableFilter<$PrismaModel>
|
|
117783
|
+
_max?: NestedStringNullableFilter<$PrismaModel>
|
|
116042
117784
|
}
|
|
116043
117785
|
|
|
116044
|
-
export type
|
|
116045
|
-
equals?: string | StringFieldRefInput<$PrismaModel>
|
|
116046
|
-
in?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
116047
|
-
notIn?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
117786
|
+
export type NestedStringWithAggregatesFilter<$PrismaModel = never> = {
|
|
117787
|
+
equals?: string | StringFieldRefInput<$PrismaModel>
|
|
117788
|
+
in?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
117789
|
+
notIn?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
116048
117790
|
lt?: string | StringFieldRefInput<$PrismaModel>
|
|
116049
117791
|
lte?: string | StringFieldRefInput<$PrismaModel>
|
|
116050
117792
|
gt?: string | StringFieldRefInput<$PrismaModel>
|
|
@@ -116053,10 +117795,10 @@ export namespace Prisma {
|
|
|
116053
117795
|
startsWith?: string | StringFieldRefInput<$PrismaModel>
|
|
116054
117796
|
endsWith?: string | StringFieldRefInput<$PrismaModel>
|
|
116055
117797
|
search?: string
|
|
116056
|
-
not?:
|
|
116057
|
-
_count?:
|
|
116058
|
-
_min?:
|
|
116059
|
-
_max?:
|
|
117798
|
+
not?: NestedStringWithAggregatesFilter<$PrismaModel> | string
|
|
117799
|
+
_count?: NestedIntFilter<$PrismaModel>
|
|
117800
|
+
_min?: NestedStringFilter<$PrismaModel>
|
|
117801
|
+
_max?: NestedStringFilter<$PrismaModel>
|
|
116060
117802
|
}
|
|
116061
117803
|
|
|
116062
117804
|
export type NestedDateTimeWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -116322,6 +118064,7 @@ export namespace Prisma {
|
|
|
116322
118064
|
}
|
|
116323
118065
|
|
|
116324
118066
|
export type UserCreateWithoutReferredUsersInput = {
|
|
118067
|
+
idmId?: string | null
|
|
116325
118068
|
role: string
|
|
116326
118069
|
email?: string | null
|
|
116327
118070
|
password?: string | null
|
|
@@ -116361,10 +118104,14 @@ export namespace Prisma {
|
|
|
116361
118104
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
116362
118105
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
116363
118106
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
118107
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
118108
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
118109
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
116364
118110
|
}
|
|
116365
118111
|
|
|
116366
118112
|
export type UserUncheckedCreateWithoutReferredUsersInput = {
|
|
116367
118113
|
id?: number
|
|
118114
|
+
idmId?: string | null
|
|
116368
118115
|
role: string
|
|
116369
118116
|
email?: string | null
|
|
116370
118117
|
password?: string | null
|
|
@@ -116404,6 +118151,9 @@ export namespace Prisma {
|
|
|
116404
118151
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
116405
118152
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
116406
118153
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
118154
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
118155
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
118156
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
116407
118157
|
}
|
|
116408
118158
|
|
|
116409
118159
|
export type UserCreateOrConnectWithoutReferredUsersInput = {
|
|
@@ -116412,6 +118162,7 @@ export namespace Prisma {
|
|
|
116412
118162
|
}
|
|
116413
118163
|
|
|
116414
118164
|
export type UserCreateWithoutReferrerInput = {
|
|
118165
|
+
idmId?: string | null
|
|
116415
118166
|
role: string
|
|
116416
118167
|
email?: string | null
|
|
116417
118168
|
password?: string | null
|
|
@@ -116451,10 +118202,14 @@ export namespace Prisma {
|
|
|
116451
118202
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
116452
118203
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
116453
118204
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
118205
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
118206
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
118207
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
116454
118208
|
}
|
|
116455
118209
|
|
|
116456
118210
|
export type UserUncheckedCreateWithoutReferrerInput = {
|
|
116457
118211
|
id?: number
|
|
118212
|
+
idmId?: string | null
|
|
116458
118213
|
role: string
|
|
116459
118214
|
email?: string | null
|
|
116460
118215
|
password?: string | null
|
|
@@ -116494,6 +118249,9 @@ export namespace Prisma {
|
|
|
116494
118249
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
116495
118250
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
116496
118251
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
118252
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
118253
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
118254
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
116497
118255
|
}
|
|
116498
118256
|
|
|
116499
118257
|
export type UserCreateOrConnectWithoutReferrerInput = {
|
|
@@ -117334,6 +119092,99 @@ export namespace Prisma {
|
|
|
117334
119092
|
skipDuplicates?: boolean
|
|
117335
119093
|
}
|
|
117336
119094
|
|
|
119095
|
+
export type CreatorFlagCreateWithoutUserInput = {
|
|
119096
|
+
label: string
|
|
119097
|
+
comment?: string | null
|
|
119098
|
+
color: string
|
|
119099
|
+
createdAt?: Date | string
|
|
119100
|
+
updatedAt?: Date | string
|
|
119101
|
+
flaggedByUser: UserCreateNestedOneWithoutFlagsCreatedInput
|
|
119102
|
+
editedByUser?: UserCreateNestedOneWithoutFlagsEditedInput
|
|
119103
|
+
}
|
|
119104
|
+
|
|
119105
|
+
export type CreatorFlagUncheckedCreateWithoutUserInput = {
|
|
119106
|
+
id?: number
|
|
119107
|
+
label: string
|
|
119108
|
+
comment?: string | null
|
|
119109
|
+
color: string
|
|
119110
|
+
createdAt?: Date | string
|
|
119111
|
+
updatedAt?: Date | string
|
|
119112
|
+
flaggedByUserId: number
|
|
119113
|
+
editedByUserId?: number | null
|
|
119114
|
+
}
|
|
119115
|
+
|
|
119116
|
+
export type CreatorFlagCreateOrConnectWithoutUserInput = {
|
|
119117
|
+
where: CreatorFlagWhereUniqueInput
|
|
119118
|
+
create: XOR<CreatorFlagCreateWithoutUserInput, CreatorFlagUncheckedCreateWithoutUserInput>
|
|
119119
|
+
}
|
|
119120
|
+
|
|
119121
|
+
export type CreatorFlagCreateManyUserInputEnvelope = {
|
|
119122
|
+
data: CreatorFlagCreateManyUserInput | CreatorFlagCreateManyUserInput[]
|
|
119123
|
+
skipDuplicates?: boolean
|
|
119124
|
+
}
|
|
119125
|
+
|
|
119126
|
+
export type CreatorFlagCreateWithoutFlaggedByUserInput = {
|
|
119127
|
+
label: string
|
|
119128
|
+
comment?: string | null
|
|
119129
|
+
color: string
|
|
119130
|
+
createdAt?: Date | string
|
|
119131
|
+
updatedAt?: Date | string
|
|
119132
|
+
user: UserCreateNestedOneWithoutFlagsAssignedInput
|
|
119133
|
+
editedByUser?: UserCreateNestedOneWithoutFlagsEditedInput
|
|
119134
|
+
}
|
|
119135
|
+
|
|
119136
|
+
export type CreatorFlagUncheckedCreateWithoutFlaggedByUserInput = {
|
|
119137
|
+
id?: number
|
|
119138
|
+
label: string
|
|
119139
|
+
comment?: string | null
|
|
119140
|
+
color: string
|
|
119141
|
+
createdAt?: Date | string
|
|
119142
|
+
updatedAt?: Date | string
|
|
119143
|
+
userId: number
|
|
119144
|
+
editedByUserId?: number | null
|
|
119145
|
+
}
|
|
119146
|
+
|
|
119147
|
+
export type CreatorFlagCreateOrConnectWithoutFlaggedByUserInput = {
|
|
119148
|
+
where: CreatorFlagWhereUniqueInput
|
|
119149
|
+
create: XOR<CreatorFlagCreateWithoutFlaggedByUserInput, CreatorFlagUncheckedCreateWithoutFlaggedByUserInput>
|
|
119150
|
+
}
|
|
119151
|
+
|
|
119152
|
+
export type CreatorFlagCreateManyFlaggedByUserInputEnvelope = {
|
|
119153
|
+
data: CreatorFlagCreateManyFlaggedByUserInput | CreatorFlagCreateManyFlaggedByUserInput[]
|
|
119154
|
+
skipDuplicates?: boolean
|
|
119155
|
+
}
|
|
119156
|
+
|
|
119157
|
+
export type CreatorFlagCreateWithoutEditedByUserInput = {
|
|
119158
|
+
label: string
|
|
119159
|
+
comment?: string | null
|
|
119160
|
+
color: string
|
|
119161
|
+
createdAt?: Date | string
|
|
119162
|
+
updatedAt?: Date | string
|
|
119163
|
+
user: UserCreateNestedOneWithoutFlagsAssignedInput
|
|
119164
|
+
flaggedByUser: UserCreateNestedOneWithoutFlagsCreatedInput
|
|
119165
|
+
}
|
|
119166
|
+
|
|
119167
|
+
export type CreatorFlagUncheckedCreateWithoutEditedByUserInput = {
|
|
119168
|
+
id?: number
|
|
119169
|
+
label: string
|
|
119170
|
+
comment?: string | null
|
|
119171
|
+
color: string
|
|
119172
|
+
createdAt?: Date | string
|
|
119173
|
+
updatedAt?: Date | string
|
|
119174
|
+
userId: number
|
|
119175
|
+
flaggedByUserId: number
|
|
119176
|
+
}
|
|
119177
|
+
|
|
119178
|
+
export type CreatorFlagCreateOrConnectWithoutEditedByUserInput = {
|
|
119179
|
+
where: CreatorFlagWhereUniqueInput
|
|
119180
|
+
create: XOR<CreatorFlagCreateWithoutEditedByUserInput, CreatorFlagUncheckedCreateWithoutEditedByUserInput>
|
|
119181
|
+
}
|
|
119182
|
+
|
|
119183
|
+
export type CreatorFlagCreateManyEditedByUserInputEnvelope = {
|
|
119184
|
+
data: CreatorFlagCreateManyEditedByUserInput | CreatorFlagCreateManyEditedByUserInput[]
|
|
119185
|
+
skipDuplicates?: boolean
|
|
119186
|
+
}
|
|
119187
|
+
|
|
117337
119188
|
export type UserUpsertWithoutReferredUsersInput = {
|
|
117338
119189
|
update: XOR<UserUpdateWithoutReferredUsersInput, UserUncheckedUpdateWithoutReferredUsersInput>
|
|
117339
119190
|
create: XOR<UserCreateWithoutReferredUsersInput, UserUncheckedCreateWithoutReferredUsersInput>
|
|
@@ -117346,6 +119197,7 @@ export namespace Prisma {
|
|
|
117346
119197
|
}
|
|
117347
119198
|
|
|
117348
119199
|
export type UserUpdateWithoutReferredUsersInput = {
|
|
119200
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
117349
119201
|
role?: StringFieldUpdateOperationsInput | string
|
|
117350
119202
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
117351
119203
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -117385,10 +119237,14 @@ export namespace Prisma {
|
|
|
117385
119237
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
117386
119238
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
117387
119239
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
119240
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
119241
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
119242
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
117388
119243
|
}
|
|
117389
119244
|
|
|
117390
119245
|
export type UserUncheckedUpdateWithoutReferredUsersInput = {
|
|
117391
119246
|
id?: IntFieldUpdateOperationsInput | number
|
|
119247
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
117392
119248
|
role?: StringFieldUpdateOperationsInput | string
|
|
117393
119249
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
117394
119250
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -117428,6 +119284,9 @@ export namespace Prisma {
|
|
|
117428
119284
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
117429
119285
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
117430
119286
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
119287
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
119288
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
119289
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
117431
119290
|
}
|
|
117432
119291
|
|
|
117433
119292
|
export type UserUpsertWithWhereUniqueWithoutReferrerInput = {
|
|
@@ -117451,6 +119310,7 @@ export namespace Prisma {
|
|
|
117451
119310
|
OR?: UserScalarWhereInput[]
|
|
117452
119311
|
NOT?: UserScalarWhereInput | UserScalarWhereInput[]
|
|
117453
119312
|
id?: IntFilter<"User"> | number
|
|
119313
|
+
idmId?: StringNullableFilter<"User"> | string | null
|
|
117454
119314
|
role?: StringFilter<"User"> | string
|
|
117455
119315
|
email?: StringNullableFilter<"User"> | string | null
|
|
117456
119316
|
password?: StringNullableFilter<"User"> | string | null
|
|
@@ -118233,7 +120093,71 @@ export namespace Prisma {
|
|
|
118233
120093
|
optInId?: IntNullableFilter<"ImpactRadiusEvent"> | number | null
|
|
118234
120094
|
}
|
|
118235
120095
|
|
|
120096
|
+
export type CreatorFlagUpsertWithWhereUniqueWithoutUserInput = {
|
|
120097
|
+
where: CreatorFlagWhereUniqueInput
|
|
120098
|
+
update: XOR<CreatorFlagUpdateWithoutUserInput, CreatorFlagUncheckedUpdateWithoutUserInput>
|
|
120099
|
+
create: XOR<CreatorFlagCreateWithoutUserInput, CreatorFlagUncheckedCreateWithoutUserInput>
|
|
120100
|
+
}
|
|
120101
|
+
|
|
120102
|
+
export type CreatorFlagUpdateWithWhereUniqueWithoutUserInput = {
|
|
120103
|
+
where: CreatorFlagWhereUniqueInput
|
|
120104
|
+
data: XOR<CreatorFlagUpdateWithoutUserInput, CreatorFlagUncheckedUpdateWithoutUserInput>
|
|
120105
|
+
}
|
|
120106
|
+
|
|
120107
|
+
export type CreatorFlagUpdateManyWithWhereWithoutUserInput = {
|
|
120108
|
+
where: CreatorFlagScalarWhereInput
|
|
120109
|
+
data: XOR<CreatorFlagUpdateManyMutationInput, CreatorFlagUncheckedUpdateManyWithoutUserInput>
|
|
120110
|
+
}
|
|
120111
|
+
|
|
120112
|
+
export type CreatorFlagScalarWhereInput = {
|
|
120113
|
+
AND?: CreatorFlagScalarWhereInput | CreatorFlagScalarWhereInput[]
|
|
120114
|
+
OR?: CreatorFlagScalarWhereInput[]
|
|
120115
|
+
NOT?: CreatorFlagScalarWhereInput | CreatorFlagScalarWhereInput[]
|
|
120116
|
+
id?: IntFilter<"CreatorFlag"> | number
|
|
120117
|
+
label?: StringFilter<"CreatorFlag"> | string
|
|
120118
|
+
comment?: StringNullableFilter<"CreatorFlag"> | string | null
|
|
120119
|
+
color?: StringFilter<"CreatorFlag"> | string
|
|
120120
|
+
createdAt?: DateTimeFilter<"CreatorFlag"> | Date | string
|
|
120121
|
+
updatedAt?: DateTimeFilter<"CreatorFlag"> | Date | string
|
|
120122
|
+
userId?: IntFilter<"CreatorFlag"> | number
|
|
120123
|
+
flaggedByUserId?: IntFilter<"CreatorFlag"> | number
|
|
120124
|
+
editedByUserId?: IntNullableFilter<"CreatorFlag"> | number | null
|
|
120125
|
+
}
|
|
120126
|
+
|
|
120127
|
+
export type CreatorFlagUpsertWithWhereUniqueWithoutFlaggedByUserInput = {
|
|
120128
|
+
where: CreatorFlagWhereUniqueInput
|
|
120129
|
+
update: XOR<CreatorFlagUpdateWithoutFlaggedByUserInput, CreatorFlagUncheckedUpdateWithoutFlaggedByUserInput>
|
|
120130
|
+
create: XOR<CreatorFlagCreateWithoutFlaggedByUserInput, CreatorFlagUncheckedCreateWithoutFlaggedByUserInput>
|
|
120131
|
+
}
|
|
120132
|
+
|
|
120133
|
+
export type CreatorFlagUpdateWithWhereUniqueWithoutFlaggedByUserInput = {
|
|
120134
|
+
where: CreatorFlagWhereUniqueInput
|
|
120135
|
+
data: XOR<CreatorFlagUpdateWithoutFlaggedByUserInput, CreatorFlagUncheckedUpdateWithoutFlaggedByUserInput>
|
|
120136
|
+
}
|
|
120137
|
+
|
|
120138
|
+
export type CreatorFlagUpdateManyWithWhereWithoutFlaggedByUserInput = {
|
|
120139
|
+
where: CreatorFlagScalarWhereInput
|
|
120140
|
+
data: XOR<CreatorFlagUpdateManyMutationInput, CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserInput>
|
|
120141
|
+
}
|
|
120142
|
+
|
|
120143
|
+
export type CreatorFlagUpsertWithWhereUniqueWithoutEditedByUserInput = {
|
|
120144
|
+
where: CreatorFlagWhereUniqueInput
|
|
120145
|
+
update: XOR<CreatorFlagUpdateWithoutEditedByUserInput, CreatorFlagUncheckedUpdateWithoutEditedByUserInput>
|
|
120146
|
+
create: XOR<CreatorFlagCreateWithoutEditedByUserInput, CreatorFlagUncheckedCreateWithoutEditedByUserInput>
|
|
120147
|
+
}
|
|
120148
|
+
|
|
120149
|
+
export type CreatorFlagUpdateWithWhereUniqueWithoutEditedByUserInput = {
|
|
120150
|
+
where: CreatorFlagWhereUniqueInput
|
|
120151
|
+
data: XOR<CreatorFlagUpdateWithoutEditedByUserInput, CreatorFlagUncheckedUpdateWithoutEditedByUserInput>
|
|
120152
|
+
}
|
|
120153
|
+
|
|
120154
|
+
export type CreatorFlagUpdateManyWithWhereWithoutEditedByUserInput = {
|
|
120155
|
+
where: CreatorFlagScalarWhereInput
|
|
120156
|
+
data: XOR<CreatorFlagUpdateManyMutationInput, CreatorFlagUncheckedUpdateManyWithoutEditedByUserInput>
|
|
120157
|
+
}
|
|
120158
|
+
|
|
118236
120159
|
export type UserCreateWithoutLogsInput = {
|
|
120160
|
+
idmId?: string | null
|
|
118237
120161
|
role: string
|
|
118238
120162
|
email?: string | null
|
|
118239
120163
|
password?: string | null
|
|
@@ -118273,10 +120197,14 @@ export namespace Prisma {
|
|
|
118273
120197
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
118274
120198
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
118275
120199
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
120200
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
120201
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
120202
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
118276
120203
|
}
|
|
118277
120204
|
|
|
118278
120205
|
export type UserUncheckedCreateWithoutLogsInput = {
|
|
118279
120206
|
id?: number
|
|
120207
|
+
idmId?: string | null
|
|
118280
120208
|
role: string
|
|
118281
120209
|
email?: string | null
|
|
118282
120210
|
password?: string | null
|
|
@@ -118316,6 +120244,9 @@ export namespace Prisma {
|
|
|
118316
120244
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
118317
120245
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
118318
120246
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
120247
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
120248
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
120249
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
118319
120250
|
}
|
|
118320
120251
|
|
|
118321
120252
|
export type UserCreateOrConnectWithoutLogsInput = {
|
|
@@ -118335,6 +120266,7 @@ export namespace Prisma {
|
|
|
118335
120266
|
}
|
|
118336
120267
|
|
|
118337
120268
|
export type UserUpdateWithoutLogsInput = {
|
|
120269
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118338
120270
|
role?: StringFieldUpdateOperationsInput | string
|
|
118339
120271
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118340
120272
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -118374,10 +120306,14 @@ export namespace Prisma {
|
|
|
118374
120306
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
118375
120307
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
118376
120308
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
120309
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
120310
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
120311
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
118377
120312
|
}
|
|
118378
120313
|
|
|
118379
120314
|
export type UserUncheckedUpdateWithoutLogsInput = {
|
|
118380
120315
|
id?: IntFieldUpdateOperationsInput | number
|
|
120316
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118381
120317
|
role?: StringFieldUpdateOperationsInput | string
|
|
118382
120318
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118383
120319
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -118417,6 +120353,9 @@ export namespace Prisma {
|
|
|
118417
120353
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
118418
120354
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
118419
120355
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
120356
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
120357
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
120358
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
118420
120359
|
}
|
|
118421
120360
|
|
|
118422
120361
|
export type CreatorToCategoryCreateWithoutCreatorProfileInput = {
|
|
@@ -118438,6 +120377,7 @@ export namespace Prisma {
|
|
|
118438
120377
|
}
|
|
118439
120378
|
|
|
118440
120379
|
export type UserCreateWithoutCreatorProfileInput = {
|
|
120380
|
+
idmId?: string | null
|
|
118441
120381
|
role: string
|
|
118442
120382
|
email?: string | null
|
|
118443
120383
|
password?: string | null
|
|
@@ -118477,10 +120417,14 @@ export namespace Prisma {
|
|
|
118477
120417
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
118478
120418
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
118479
120419
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
120420
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
120421
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
120422
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
118480
120423
|
}
|
|
118481
120424
|
|
|
118482
120425
|
export type UserUncheckedCreateWithoutCreatorProfileInput = {
|
|
118483
120426
|
id?: number
|
|
120427
|
+
idmId?: string | null
|
|
118484
120428
|
role: string
|
|
118485
120429
|
email?: string | null
|
|
118486
120430
|
password?: string | null
|
|
@@ -118520,6 +120464,9 @@ export namespace Prisma {
|
|
|
118520
120464
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
118521
120465
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
118522
120466
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
120467
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
120468
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
120469
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
118523
120470
|
}
|
|
118524
120471
|
|
|
118525
120472
|
export type UserCreateOrConnectWithoutCreatorProfileInput = {
|
|
@@ -118563,6 +120510,7 @@ export namespace Prisma {
|
|
|
118563
120510
|
}
|
|
118564
120511
|
|
|
118565
120512
|
export type UserUpdateWithoutCreatorProfileInput = {
|
|
120513
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118566
120514
|
role?: StringFieldUpdateOperationsInput | string
|
|
118567
120515
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118568
120516
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -118602,10 +120550,14 @@ export namespace Prisma {
|
|
|
118602
120550
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
118603
120551
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
118604
120552
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
120553
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
120554
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
120555
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
118605
120556
|
}
|
|
118606
120557
|
|
|
118607
120558
|
export type UserUncheckedUpdateWithoutCreatorProfileInput = {
|
|
118608
120559
|
id?: IntFieldUpdateOperationsInput | number
|
|
120560
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118609
120561
|
role?: StringFieldUpdateOperationsInput | string
|
|
118610
120562
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118611
120563
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -118645,9 +120597,13 @@ export namespace Prisma {
|
|
|
118645
120597
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
118646
120598
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
118647
120599
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
120600
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
120601
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
120602
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
118648
120603
|
}
|
|
118649
120604
|
|
|
118650
120605
|
export type UserCreateWithoutInstagramProfileInput = {
|
|
120606
|
+
idmId?: string | null
|
|
118651
120607
|
role: string
|
|
118652
120608
|
email?: string | null
|
|
118653
120609
|
password?: string | null
|
|
@@ -118687,10 +120643,14 @@ export namespace Prisma {
|
|
|
118687
120643
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
118688
120644
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
118689
120645
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
120646
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
120647
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
120648
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
118690
120649
|
}
|
|
118691
120650
|
|
|
118692
120651
|
export type UserUncheckedCreateWithoutInstagramProfileInput = {
|
|
118693
120652
|
id?: number
|
|
120653
|
+
idmId?: string | null
|
|
118694
120654
|
role: string
|
|
118695
120655
|
email?: string | null
|
|
118696
120656
|
password?: string | null
|
|
@@ -118730,6 +120690,9 @@ export namespace Prisma {
|
|
|
118730
120690
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
118731
120691
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
118732
120692
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
120693
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
120694
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
120695
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
118733
120696
|
}
|
|
118734
120697
|
|
|
118735
120698
|
export type UserCreateOrConnectWithoutInstagramProfileInput = {
|
|
@@ -118831,6 +120794,7 @@ export namespace Prisma {
|
|
|
118831
120794
|
}
|
|
118832
120795
|
|
|
118833
120796
|
export type UserUpdateWithoutInstagramProfileInput = {
|
|
120797
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118834
120798
|
role?: StringFieldUpdateOperationsInput | string
|
|
118835
120799
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118836
120800
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -118870,10 +120834,14 @@ export namespace Prisma {
|
|
|
118870
120834
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
118871
120835
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
118872
120836
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
120837
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
120838
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
120839
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
118873
120840
|
}
|
|
118874
120841
|
|
|
118875
120842
|
export type UserUncheckedUpdateWithoutInstagramProfileInput = {
|
|
118876
120843
|
id?: IntFieldUpdateOperationsInput | number
|
|
120844
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118877
120845
|
role?: StringFieldUpdateOperationsInput | string
|
|
118878
120846
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118879
120847
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -118913,6 +120881,9 @@ export namespace Prisma {
|
|
|
118913
120881
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
118914
120882
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
118915
120883
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
120884
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
120885
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
120886
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
118916
120887
|
}
|
|
118917
120888
|
|
|
118918
120889
|
export type BrandUpsertWithoutInstagramProfileInput = {
|
|
@@ -119004,6 +120975,7 @@ export namespace Prisma {
|
|
|
119004
120975
|
}
|
|
119005
120976
|
|
|
119006
120977
|
export type UserCreateWithoutTiktokProfileInput = {
|
|
120978
|
+
idmId?: string | null
|
|
119007
120979
|
role: string
|
|
119008
120980
|
email?: string | null
|
|
119009
120981
|
password?: string | null
|
|
@@ -119043,10 +121015,14 @@ export namespace Prisma {
|
|
|
119043
121015
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
119044
121016
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
119045
121017
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
121018
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
121019
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
121020
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
119046
121021
|
}
|
|
119047
121022
|
|
|
119048
121023
|
export type UserUncheckedCreateWithoutTiktokProfileInput = {
|
|
119049
121024
|
id?: number
|
|
121025
|
+
idmId?: string | null
|
|
119050
121026
|
role: string
|
|
119051
121027
|
email?: string | null
|
|
119052
121028
|
password?: string | null
|
|
@@ -119086,6 +121062,9 @@ export namespace Prisma {
|
|
|
119086
121062
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
119087
121063
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
119088
121064
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
121065
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
121066
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
121067
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
119089
121068
|
}
|
|
119090
121069
|
|
|
119091
121070
|
export type UserCreateOrConnectWithoutTiktokProfileInput = {
|
|
@@ -119187,6 +121166,7 @@ export namespace Prisma {
|
|
|
119187
121166
|
}
|
|
119188
121167
|
|
|
119189
121168
|
export type UserUpdateWithoutTiktokProfileInput = {
|
|
121169
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
119190
121170
|
role?: StringFieldUpdateOperationsInput | string
|
|
119191
121171
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
119192
121172
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -119226,10 +121206,14 @@ export namespace Prisma {
|
|
|
119226
121206
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
119227
121207
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
119228
121208
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
121209
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
121210
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
121211
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
119229
121212
|
}
|
|
119230
121213
|
|
|
119231
121214
|
export type UserUncheckedUpdateWithoutTiktokProfileInput = {
|
|
119232
121215
|
id?: IntFieldUpdateOperationsInput | number
|
|
121216
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
119233
121217
|
role?: StringFieldUpdateOperationsInput | string
|
|
119234
121218
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
119235
121219
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -119269,6 +121253,9 @@ export namespace Prisma {
|
|
|
119269
121253
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
119270
121254
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
119271
121255
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
121256
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
121257
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
121258
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
119272
121259
|
}
|
|
119273
121260
|
|
|
119274
121261
|
export type BrandUpsertWithoutTiktokProfileInput = {
|
|
@@ -119360,6 +121347,7 @@ export namespace Prisma {
|
|
|
119360
121347
|
}
|
|
119361
121348
|
|
|
119362
121349
|
export type UserCreateWithoutYoutubeProfileInput = {
|
|
121350
|
+
idmId?: string | null
|
|
119363
121351
|
role: string
|
|
119364
121352
|
email?: string | null
|
|
119365
121353
|
password?: string | null
|
|
@@ -119399,10 +121387,14 @@ export namespace Prisma {
|
|
|
119399
121387
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
119400
121388
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
119401
121389
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
121390
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
121391
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
121392
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
119402
121393
|
}
|
|
119403
121394
|
|
|
119404
121395
|
export type UserUncheckedCreateWithoutYoutubeProfileInput = {
|
|
119405
121396
|
id?: number
|
|
121397
|
+
idmId?: string | null
|
|
119406
121398
|
role: string
|
|
119407
121399
|
email?: string | null
|
|
119408
121400
|
password?: string | null
|
|
@@ -119442,6 +121434,9 @@ export namespace Prisma {
|
|
|
119442
121434
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
119443
121435
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
119444
121436
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
121437
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
121438
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
121439
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
119445
121440
|
}
|
|
119446
121441
|
|
|
119447
121442
|
export type UserCreateOrConnectWithoutYoutubeProfileInput = {
|
|
@@ -119543,6 +121538,7 @@ export namespace Prisma {
|
|
|
119543
121538
|
}
|
|
119544
121539
|
|
|
119545
121540
|
export type UserUpdateWithoutYoutubeProfileInput = {
|
|
121541
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
119546
121542
|
role?: StringFieldUpdateOperationsInput | string
|
|
119547
121543
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
119548
121544
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -119582,10 +121578,14 @@ export namespace Prisma {
|
|
|
119582
121578
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
119583
121579
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
119584
121580
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
121581
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
121582
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
121583
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
119585
121584
|
}
|
|
119586
121585
|
|
|
119587
121586
|
export type UserUncheckedUpdateWithoutYoutubeProfileInput = {
|
|
119588
121587
|
id?: IntFieldUpdateOperationsInput | number
|
|
121588
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
119589
121589
|
role?: StringFieldUpdateOperationsInput | string
|
|
119590
121590
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
119591
121591
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -119625,6 +121625,9 @@ export namespace Prisma {
|
|
|
119625
121625
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
119626
121626
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
119627
121627
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
121628
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
121629
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
121630
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
119628
121631
|
}
|
|
119629
121632
|
|
|
119630
121633
|
export type BrandUpsertWithoutYoutubeProfileInput = {
|
|
@@ -119716,6 +121719,7 @@ export namespace Prisma {
|
|
|
119716
121719
|
}
|
|
119717
121720
|
|
|
119718
121721
|
export type UserCreateWithoutTwitchProfileInput = {
|
|
121722
|
+
idmId?: string | null
|
|
119719
121723
|
role: string
|
|
119720
121724
|
email?: string | null
|
|
119721
121725
|
password?: string | null
|
|
@@ -119755,10 +121759,14 @@ export namespace Prisma {
|
|
|
119755
121759
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
119756
121760
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
119757
121761
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
121762
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
121763
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
121764
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
119758
121765
|
}
|
|
119759
121766
|
|
|
119760
121767
|
export type UserUncheckedCreateWithoutTwitchProfileInput = {
|
|
119761
121768
|
id?: number
|
|
121769
|
+
idmId?: string | null
|
|
119762
121770
|
role: string
|
|
119763
121771
|
email?: string | null
|
|
119764
121772
|
password?: string | null
|
|
@@ -119798,6 +121806,9 @@ export namespace Prisma {
|
|
|
119798
121806
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
119799
121807
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
119800
121808
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
121809
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
121810
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
121811
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
119801
121812
|
}
|
|
119802
121813
|
|
|
119803
121814
|
export type UserCreateOrConnectWithoutTwitchProfileInput = {
|
|
@@ -119817,6 +121828,7 @@ export namespace Prisma {
|
|
|
119817
121828
|
}
|
|
119818
121829
|
|
|
119819
121830
|
export type UserUpdateWithoutTwitchProfileInput = {
|
|
121831
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
119820
121832
|
role?: StringFieldUpdateOperationsInput | string
|
|
119821
121833
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
119822
121834
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -119856,10 +121868,14 @@ export namespace Prisma {
|
|
|
119856
121868
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
119857
121869
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
119858
121870
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
121871
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
121872
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
121873
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
119859
121874
|
}
|
|
119860
121875
|
|
|
119861
121876
|
export type UserUncheckedUpdateWithoutTwitchProfileInput = {
|
|
119862
121877
|
id?: IntFieldUpdateOperationsInput | number
|
|
121878
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
119863
121879
|
role?: StringFieldUpdateOperationsInput | string
|
|
119864
121880
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
119865
121881
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -119899,9 +121915,13 @@ export namespace Prisma {
|
|
|
119899
121915
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
119900
121916
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
119901
121917
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
121918
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
121919
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
121920
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
119902
121921
|
}
|
|
119903
121922
|
|
|
119904
121923
|
export type UserCreateWithoutFacebookProfileInput = {
|
|
121924
|
+
idmId?: string | null
|
|
119905
121925
|
role: string
|
|
119906
121926
|
email?: string | null
|
|
119907
121927
|
password?: string | null
|
|
@@ -119941,10 +121961,14 @@ export namespace Prisma {
|
|
|
119941
121961
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
119942
121962
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
119943
121963
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
121964
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
121965
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
121966
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
119944
121967
|
}
|
|
119945
121968
|
|
|
119946
121969
|
export type UserUncheckedCreateWithoutFacebookProfileInput = {
|
|
119947
121970
|
id?: number
|
|
121971
|
+
idmId?: string | null
|
|
119948
121972
|
role: string
|
|
119949
121973
|
email?: string | null
|
|
119950
121974
|
password?: string | null
|
|
@@ -119984,6 +122008,9 @@ export namespace Prisma {
|
|
|
119984
122008
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
119985
122009
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
119986
122010
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
122011
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
122012
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
122013
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
119987
122014
|
}
|
|
119988
122015
|
|
|
119989
122016
|
export type UserCreateOrConnectWithoutFacebookProfileInput = {
|
|
@@ -120003,6 +122030,7 @@ export namespace Prisma {
|
|
|
120003
122030
|
}
|
|
120004
122031
|
|
|
120005
122032
|
export type UserUpdateWithoutFacebookProfileInput = {
|
|
122033
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120006
122034
|
role?: StringFieldUpdateOperationsInput | string
|
|
120007
122035
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120008
122036
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -120042,10 +122070,14 @@ export namespace Prisma {
|
|
|
120042
122070
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
120043
122071
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
120044
122072
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
122073
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
122074
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
122075
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
120045
122076
|
}
|
|
120046
122077
|
|
|
120047
122078
|
export type UserUncheckedUpdateWithoutFacebookProfileInput = {
|
|
120048
122079
|
id?: IntFieldUpdateOperationsInput | number
|
|
122080
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120049
122081
|
role?: StringFieldUpdateOperationsInput | string
|
|
120050
122082
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120051
122083
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -120085,9 +122117,13 @@ export namespace Prisma {
|
|
|
120085
122117
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
120086
122118
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
120087
122119
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
122120
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
122121
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
122122
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
120088
122123
|
}
|
|
120089
122124
|
|
|
120090
122125
|
export type UserCreateWithoutTwitterProfileInput = {
|
|
122126
|
+
idmId?: string | null
|
|
120091
122127
|
role: string
|
|
120092
122128
|
email?: string | null
|
|
120093
122129
|
password?: string | null
|
|
@@ -120127,10 +122163,14 @@ export namespace Prisma {
|
|
|
120127
122163
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
120128
122164
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
120129
122165
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
122166
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
122167
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
122168
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
120130
122169
|
}
|
|
120131
122170
|
|
|
120132
122171
|
export type UserUncheckedCreateWithoutTwitterProfileInput = {
|
|
120133
122172
|
id?: number
|
|
122173
|
+
idmId?: string | null
|
|
120134
122174
|
role: string
|
|
120135
122175
|
email?: string | null
|
|
120136
122176
|
password?: string | null
|
|
@@ -120170,6 +122210,9 @@ export namespace Prisma {
|
|
|
120170
122210
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
120171
122211
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
120172
122212
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
122213
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
122214
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
122215
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
120173
122216
|
}
|
|
120174
122217
|
|
|
120175
122218
|
export type UserCreateOrConnectWithoutTwitterProfileInput = {
|
|
@@ -120189,6 +122232,7 @@ export namespace Prisma {
|
|
|
120189
122232
|
}
|
|
120190
122233
|
|
|
120191
122234
|
export type UserUpdateWithoutTwitterProfileInput = {
|
|
122235
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120192
122236
|
role?: StringFieldUpdateOperationsInput | string
|
|
120193
122237
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120194
122238
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -120228,10 +122272,14 @@ export namespace Prisma {
|
|
|
120228
122272
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
120229
122273
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
120230
122274
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
122275
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
122276
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
122277
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
120231
122278
|
}
|
|
120232
122279
|
|
|
120233
122280
|
export type UserUncheckedUpdateWithoutTwitterProfileInput = {
|
|
120234
122281
|
id?: IntFieldUpdateOperationsInput | number
|
|
122282
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120235
122283
|
role?: StringFieldUpdateOperationsInput | string
|
|
120236
122284
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120237
122285
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -120271,9 +122319,13 @@ export namespace Prisma {
|
|
|
120271
122319
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
120272
122320
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
120273
122321
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
122322
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
122323
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
122324
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
120274
122325
|
}
|
|
120275
122326
|
|
|
120276
122327
|
export type UserCreateWithoutBrandProfilesInput = {
|
|
122328
|
+
idmId?: string | null
|
|
120277
122329
|
role: string
|
|
120278
122330
|
email?: string | null
|
|
120279
122331
|
password?: string | null
|
|
@@ -120313,10 +122365,14 @@ export namespace Prisma {
|
|
|
120313
122365
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
120314
122366
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
120315
122367
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
122368
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
122369
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
122370
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
120316
122371
|
}
|
|
120317
122372
|
|
|
120318
122373
|
export type UserUncheckedCreateWithoutBrandProfilesInput = {
|
|
120319
122374
|
id?: number
|
|
122375
|
+
idmId?: string | null
|
|
120320
122376
|
role: string
|
|
120321
122377
|
email?: string | null
|
|
120322
122378
|
password?: string | null
|
|
@@ -120356,6 +122412,9 @@ export namespace Prisma {
|
|
|
120356
122412
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
120357
122413
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
120358
122414
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
122415
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
122416
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
122417
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
120359
122418
|
}
|
|
120360
122419
|
|
|
120361
122420
|
export type UserCreateOrConnectWithoutBrandProfilesInput = {
|
|
@@ -120457,6 +122516,7 @@ export namespace Prisma {
|
|
|
120457
122516
|
}
|
|
120458
122517
|
|
|
120459
122518
|
export type UserUpdateWithoutBrandProfilesInput = {
|
|
122519
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120460
122520
|
role?: StringFieldUpdateOperationsInput | string
|
|
120461
122521
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120462
122522
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -120496,10 +122556,14 @@ export namespace Prisma {
|
|
|
120496
122556
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
120497
122557
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
120498
122558
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
122559
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
122560
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
122561
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
120499
122562
|
}
|
|
120500
122563
|
|
|
120501
122564
|
export type UserUncheckedUpdateWithoutBrandProfilesInput = {
|
|
120502
122565
|
id?: IntFieldUpdateOperationsInput | number
|
|
122566
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120503
122567
|
role?: StringFieldUpdateOperationsInput | string
|
|
120504
122568
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120505
122569
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -120539,6 +122603,9 @@ export namespace Prisma {
|
|
|
120539
122603
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
120540
122604
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
120541
122605
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
122606
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
122607
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
122608
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
120542
122609
|
}
|
|
120543
122610
|
|
|
120544
122611
|
export type BrandUpsertWithoutBrandUsersInput = {
|
|
@@ -120630,6 +122697,7 @@ export namespace Prisma {
|
|
|
120630
122697
|
}
|
|
120631
122698
|
|
|
120632
122699
|
export type UserCreateWithoutAssignedBrandsInput = {
|
|
122700
|
+
idmId?: string | null
|
|
120633
122701
|
role: string
|
|
120634
122702
|
email?: string | null
|
|
120635
122703
|
password?: string | null
|
|
@@ -120669,10 +122737,14 @@ export namespace Prisma {
|
|
|
120669
122737
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
120670
122738
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
120671
122739
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
122740
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
122741
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
122742
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
120672
122743
|
}
|
|
120673
122744
|
|
|
120674
122745
|
export type UserUncheckedCreateWithoutAssignedBrandsInput = {
|
|
120675
122746
|
id?: number
|
|
122747
|
+
idmId?: string | null
|
|
120676
122748
|
role: string
|
|
120677
122749
|
email?: string | null
|
|
120678
122750
|
password?: string | null
|
|
@@ -120712,6 +122784,9 @@ export namespace Prisma {
|
|
|
120712
122784
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
120713
122785
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
120714
122786
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
122787
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
122788
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
122789
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
120715
122790
|
}
|
|
120716
122791
|
|
|
120717
122792
|
export type UserCreateOrConnectWithoutAssignedBrandsInput = {
|
|
@@ -121742,6 +123817,7 @@ export namespace Prisma {
|
|
|
121742
123817
|
}
|
|
121743
123818
|
|
|
121744
123819
|
export type UserUpdateWithoutAssignedBrandsInput = {
|
|
123820
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121745
123821
|
role?: StringFieldUpdateOperationsInput | string
|
|
121746
123822
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121747
123823
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -121781,10 +123857,14 @@ export namespace Prisma {
|
|
|
121781
123857
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
121782
123858
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
121783
123859
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
123860
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
123861
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
123862
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
121784
123863
|
}
|
|
121785
123864
|
|
|
121786
123865
|
export type UserUncheckedUpdateWithoutAssignedBrandsInput = {
|
|
121787
123866
|
id?: IntFieldUpdateOperationsInput | number
|
|
123867
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121788
123868
|
role?: StringFieldUpdateOperationsInput | string
|
|
121789
123869
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121790
123870
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -121824,6 +123904,9 @@ export namespace Prisma {
|
|
|
121824
123904
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
121825
123905
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
121826
123906
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
123907
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
123908
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
123909
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
121827
123910
|
}
|
|
121828
123911
|
|
|
121829
123912
|
export type InstagramProfileUpsertWithoutBrandInput = {
|
|
@@ -124010,6 +126093,7 @@ export namespace Prisma {
|
|
|
124010
126093
|
}
|
|
124011
126094
|
|
|
124012
126095
|
export type UserCreateWithoutMessagesInput = {
|
|
126096
|
+
idmId?: string | null
|
|
124013
126097
|
role: string
|
|
124014
126098
|
email?: string | null
|
|
124015
126099
|
password?: string | null
|
|
@@ -124049,10 +126133,14 @@ export namespace Prisma {
|
|
|
124049
126133
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
124050
126134
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
124051
126135
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
126136
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
126137
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
126138
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
124052
126139
|
}
|
|
124053
126140
|
|
|
124054
126141
|
export type UserUncheckedCreateWithoutMessagesInput = {
|
|
124055
126142
|
id?: number
|
|
126143
|
+
idmId?: string | null
|
|
124056
126144
|
role: string
|
|
124057
126145
|
email?: string | null
|
|
124058
126146
|
password?: string | null
|
|
@@ -124092,6 +126180,9 @@ export namespace Prisma {
|
|
|
124092
126180
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
124093
126181
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
124094
126182
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
126183
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
126184
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
126185
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
124095
126186
|
}
|
|
124096
126187
|
|
|
124097
126188
|
export type UserCreateOrConnectWithoutMessagesInput = {
|
|
@@ -124131,6 +126222,7 @@ export namespace Prisma {
|
|
|
124131
126222
|
}
|
|
124132
126223
|
|
|
124133
126224
|
export type UserUpdateWithoutMessagesInput = {
|
|
126225
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124134
126226
|
role?: StringFieldUpdateOperationsInput | string
|
|
124135
126227
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124136
126228
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -124170,10 +126262,14 @@ export namespace Prisma {
|
|
|
124170
126262
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
124171
126263
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
124172
126264
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
126265
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
126266
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
126267
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
124173
126268
|
}
|
|
124174
126269
|
|
|
124175
126270
|
export type UserUncheckedUpdateWithoutMessagesInput = {
|
|
124176
126271
|
id?: IntFieldUpdateOperationsInput | number
|
|
126272
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124177
126273
|
role?: StringFieldUpdateOperationsInput | string
|
|
124178
126274
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124179
126275
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -124213,6 +126309,9 @@ export namespace Prisma {
|
|
|
124213
126309
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
124214
126310
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
124215
126311
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
126312
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
126313
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
126314
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
124216
126315
|
}
|
|
124217
126316
|
|
|
124218
126317
|
export type ChatUpsertWithoutMessagesInput = {
|
|
@@ -125274,6 +127373,7 @@ export namespace Prisma {
|
|
|
125274
127373
|
}
|
|
125275
127374
|
|
|
125276
127375
|
export type UserCreateWithoutCampaignPinsInput = {
|
|
127376
|
+
idmId?: string | null
|
|
125277
127377
|
role: string
|
|
125278
127378
|
email?: string | null
|
|
125279
127379
|
password?: string | null
|
|
@@ -125313,10 +127413,14 @@ export namespace Prisma {
|
|
|
125313
127413
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
125314
127414
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
125315
127415
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
127416
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
127417
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
127418
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
125316
127419
|
}
|
|
125317
127420
|
|
|
125318
127421
|
export type UserUncheckedCreateWithoutCampaignPinsInput = {
|
|
125319
127422
|
id?: number
|
|
127423
|
+
idmId?: string | null
|
|
125320
127424
|
role: string
|
|
125321
127425
|
email?: string | null
|
|
125322
127426
|
password?: string | null
|
|
@@ -125356,6 +127460,9 @@ export namespace Prisma {
|
|
|
125356
127460
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
125357
127461
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
125358
127462
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
127463
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
127464
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
127465
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
125359
127466
|
}
|
|
125360
127467
|
|
|
125361
127468
|
export type UserCreateOrConnectWithoutCampaignPinsInput = {
|
|
@@ -125521,6 +127628,7 @@ export namespace Prisma {
|
|
|
125521
127628
|
}
|
|
125522
127629
|
|
|
125523
127630
|
export type UserUpdateWithoutCampaignPinsInput = {
|
|
127631
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125524
127632
|
role?: StringFieldUpdateOperationsInput | string
|
|
125525
127633
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125526
127634
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -125560,10 +127668,14 @@ export namespace Prisma {
|
|
|
125560
127668
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
125561
127669
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
125562
127670
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
127671
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
127672
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
127673
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
125563
127674
|
}
|
|
125564
127675
|
|
|
125565
127676
|
export type UserUncheckedUpdateWithoutCampaignPinsInput = {
|
|
125566
127677
|
id?: IntFieldUpdateOperationsInput | number
|
|
127678
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125567
127679
|
role?: StringFieldUpdateOperationsInput | string
|
|
125568
127680
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125569
127681
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -125603,6 +127715,9 @@ export namespace Prisma {
|
|
|
125603
127715
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
125604
127716
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
125605
127717
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
127718
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
127719
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
127720
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
125606
127721
|
}
|
|
125607
127722
|
|
|
125608
127723
|
export type CampaignUpsertWithoutCampaignPinsInput = {
|
|
@@ -129383,6 +131498,7 @@ export namespace Prisma {
|
|
|
129383
131498
|
}
|
|
129384
131499
|
|
|
129385
131500
|
export type UserCreateWithoutOptInsInput = {
|
|
131501
|
+
idmId?: string | null
|
|
129386
131502
|
role: string
|
|
129387
131503
|
email?: string | null
|
|
129388
131504
|
password?: string | null
|
|
@@ -129422,10 +131538,14 @@ export namespace Prisma {
|
|
|
129422
131538
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
129423
131539
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
129424
131540
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
131541
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
131542
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
131543
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
129425
131544
|
}
|
|
129426
131545
|
|
|
129427
131546
|
export type UserUncheckedCreateWithoutOptInsInput = {
|
|
129428
131547
|
id?: number
|
|
131548
|
+
idmId?: string | null
|
|
129429
131549
|
role: string
|
|
129430
131550
|
email?: string | null
|
|
129431
131551
|
password?: string | null
|
|
@@ -129465,6 +131585,9 @@ export namespace Prisma {
|
|
|
129465
131585
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
129466
131586
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
129467
131587
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
131588
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
131589
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
131590
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
129468
131591
|
}
|
|
129469
131592
|
|
|
129470
131593
|
export type UserCreateOrConnectWithoutOptInsInput = {
|
|
@@ -129949,6 +132072,7 @@ export namespace Prisma {
|
|
|
129949
132072
|
}
|
|
129950
132073
|
|
|
129951
132074
|
export type UserUpdateWithoutOptInsInput = {
|
|
132075
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
129952
132076
|
role?: StringFieldUpdateOperationsInput | string
|
|
129953
132077
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
129954
132078
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -129988,10 +132112,14 @@ export namespace Prisma {
|
|
|
129988
132112
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
129989
132113
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
129990
132114
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
132115
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
132116
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
132117
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
129991
132118
|
}
|
|
129992
132119
|
|
|
129993
132120
|
export type UserUncheckedUpdateWithoutOptInsInput = {
|
|
129994
132121
|
id?: IntFieldUpdateOperationsInput | number
|
|
132122
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
129995
132123
|
role?: StringFieldUpdateOperationsInput | string
|
|
129996
132124
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
129997
132125
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -130031,6 +132159,9 @@ export namespace Prisma {
|
|
|
130031
132159
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
130032
132160
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
130033
132161
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
132162
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
132163
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
132164
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
130034
132165
|
}
|
|
130035
132166
|
|
|
130036
132167
|
export type CampaignUpsertWithoutOptInsInput = {
|
|
@@ -130840,6 +132971,7 @@ export namespace Prisma {
|
|
|
130840
132971
|
}
|
|
130841
132972
|
|
|
130842
132973
|
export type UserCreateWithoutSocialPostsInput = {
|
|
132974
|
+
idmId?: string | null
|
|
130843
132975
|
role: string
|
|
130844
132976
|
email?: string | null
|
|
130845
132977
|
password?: string | null
|
|
@@ -130879,10 +133011,14 @@ export namespace Prisma {
|
|
|
130879
133011
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
130880
133012
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
130881
133013
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
133014
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
133015
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
133016
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
130882
133017
|
}
|
|
130883
133018
|
|
|
130884
133019
|
export type UserUncheckedCreateWithoutSocialPostsInput = {
|
|
130885
133020
|
id?: number
|
|
133021
|
+
idmId?: string | null
|
|
130886
133022
|
role: string
|
|
130887
133023
|
email?: string | null
|
|
130888
133024
|
password?: string | null
|
|
@@ -130922,6 +133058,9 @@ export namespace Prisma {
|
|
|
130922
133058
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
130923
133059
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
130924
133060
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
133061
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
133062
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
133063
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
130925
133064
|
}
|
|
130926
133065
|
|
|
130927
133066
|
export type UserCreateOrConnectWithoutSocialPostsInput = {
|
|
@@ -131106,6 +133245,7 @@ export namespace Prisma {
|
|
|
131106
133245
|
}
|
|
131107
133246
|
|
|
131108
133247
|
export type UserUpdateWithoutSocialPostsInput = {
|
|
133248
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
131109
133249
|
role?: StringFieldUpdateOperationsInput | string
|
|
131110
133250
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
131111
133251
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -131145,10 +133285,14 @@ export namespace Prisma {
|
|
|
131145
133285
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
131146
133286
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
131147
133287
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
133288
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
133289
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
133290
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
131148
133291
|
}
|
|
131149
133292
|
|
|
131150
133293
|
export type UserUncheckedUpdateWithoutSocialPostsInput = {
|
|
131151
133294
|
id?: IntFieldUpdateOperationsInput | number
|
|
133295
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
131152
133296
|
role?: StringFieldUpdateOperationsInput | string
|
|
131153
133297
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
131154
133298
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -131188,6 +133332,9 @@ export namespace Prisma {
|
|
|
131188
133332
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
131189
133333
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
131190
133334
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
133335
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
133336
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
133337
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
131191
133338
|
}
|
|
131192
133339
|
|
|
131193
133340
|
export type CampaignUpsertWithoutSocialPostsInput = {
|
|
@@ -131653,6 +133800,7 @@ export namespace Prisma {
|
|
|
131653
133800
|
}
|
|
131654
133801
|
|
|
131655
133802
|
export type UserCreateWithoutPaymentTransactionsInput = {
|
|
133803
|
+
idmId?: string | null
|
|
131656
133804
|
role: string
|
|
131657
133805
|
email?: string | null
|
|
131658
133806
|
password?: string | null
|
|
@@ -131692,10 +133840,14 @@ export namespace Prisma {
|
|
|
131692
133840
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
131693
133841
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
131694
133842
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
133843
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
133844
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
133845
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
131695
133846
|
}
|
|
131696
133847
|
|
|
131697
133848
|
export type UserUncheckedCreateWithoutPaymentTransactionsInput = {
|
|
131698
133849
|
id?: number
|
|
133850
|
+
idmId?: string | null
|
|
131699
133851
|
role: string
|
|
131700
133852
|
email?: string | null
|
|
131701
133853
|
password?: string | null
|
|
@@ -131735,6 +133887,9 @@ export namespace Prisma {
|
|
|
131735
133887
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
131736
133888
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
131737
133889
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
133890
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
133891
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
133892
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
131738
133893
|
}
|
|
131739
133894
|
|
|
131740
133895
|
export type UserCreateOrConnectWithoutPaymentTransactionsInput = {
|
|
@@ -131906,6 +134061,7 @@ export namespace Prisma {
|
|
|
131906
134061
|
}
|
|
131907
134062
|
|
|
131908
134063
|
export type UserUpdateWithoutPaymentTransactionsInput = {
|
|
134064
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
131909
134065
|
role?: StringFieldUpdateOperationsInput | string
|
|
131910
134066
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
131911
134067
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -131945,10 +134101,14 @@ export namespace Prisma {
|
|
|
131945
134101
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
131946
134102
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
131947
134103
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
134104
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
134105
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
134106
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
131948
134107
|
}
|
|
131949
134108
|
|
|
131950
134109
|
export type UserUncheckedUpdateWithoutPaymentTransactionsInput = {
|
|
131951
134110
|
id?: IntFieldUpdateOperationsInput | number
|
|
134111
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
131952
134112
|
role?: StringFieldUpdateOperationsInput | string
|
|
131953
134113
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
131954
134114
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -131988,6 +134148,9 @@ export namespace Prisma {
|
|
|
131988
134148
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
131989
134149
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
131990
134150
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
134151
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
134152
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
134153
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
131991
134154
|
}
|
|
131992
134155
|
|
|
131993
134156
|
export type PaymentTransactionUpsertWithoutNextTransactionInput = {
|
|
@@ -132781,6 +134944,7 @@ export namespace Prisma {
|
|
|
132781
134944
|
}
|
|
132782
134945
|
|
|
132783
134946
|
export type UserCreateWithoutAffiliateLinksInput = {
|
|
134947
|
+
idmId?: string | null
|
|
132784
134948
|
role: string
|
|
132785
134949
|
email?: string | null
|
|
132786
134950
|
password?: string | null
|
|
@@ -132820,10 +134984,14 @@ export namespace Prisma {
|
|
|
132820
134984
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
132821
134985
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
132822
134986
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
134987
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
134988
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
134989
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
132823
134990
|
}
|
|
132824
134991
|
|
|
132825
134992
|
export type UserUncheckedCreateWithoutAffiliateLinksInput = {
|
|
132826
134993
|
id?: number
|
|
134994
|
+
idmId?: string | null
|
|
132827
134995
|
role: string
|
|
132828
134996
|
email?: string | null
|
|
132829
134997
|
password?: string | null
|
|
@@ -132863,6 +135031,9 @@ export namespace Prisma {
|
|
|
132863
135031
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
132864
135032
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
132865
135033
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
135034
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
135035
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
135036
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
132866
135037
|
}
|
|
132867
135038
|
|
|
132868
135039
|
export type UserCreateOrConnectWithoutAffiliateLinksInput = {
|
|
@@ -132924,6 +135095,7 @@ export namespace Prisma {
|
|
|
132924
135095
|
}
|
|
132925
135096
|
|
|
132926
135097
|
export type UserUpdateWithoutAffiliateLinksInput = {
|
|
135098
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
132927
135099
|
role?: StringFieldUpdateOperationsInput | string
|
|
132928
135100
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
132929
135101
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -132963,10 +135135,14 @@ export namespace Prisma {
|
|
|
132963
135135
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
132964
135136
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
132965
135137
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
135138
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
135139
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
135140
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
132966
135141
|
}
|
|
132967
135142
|
|
|
132968
135143
|
export type UserUncheckedUpdateWithoutAffiliateLinksInput = {
|
|
132969
135144
|
id?: IntFieldUpdateOperationsInput | number
|
|
135145
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
132970
135146
|
role?: StringFieldUpdateOperationsInput | string
|
|
132971
135147
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
132972
135148
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -133006,6 +135182,9 @@ export namespace Prisma {
|
|
|
133006
135182
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
133007
135183
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
133008
135184
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
135185
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
135186
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
135187
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
133009
135188
|
}
|
|
133010
135189
|
|
|
133011
135190
|
export type BrandAffiliateLinkUpsertWithoutAffiliateLinksInput = {
|
|
@@ -135200,6 +137379,7 @@ export namespace Prisma {
|
|
|
135200
137379
|
}
|
|
135201
137380
|
|
|
135202
137381
|
export type UserCreateWithoutSocialProfilesInput = {
|
|
137382
|
+
idmId?: string | null
|
|
135203
137383
|
role: string
|
|
135204
137384
|
email?: string | null
|
|
135205
137385
|
password?: string | null
|
|
@@ -135239,10 +137419,14 @@ export namespace Prisma {
|
|
|
135239
137419
|
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
135240
137420
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
135241
137421
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
137422
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
137423
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
137424
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
135242
137425
|
}
|
|
135243
137426
|
|
|
135244
137427
|
export type UserUncheckedCreateWithoutSocialProfilesInput = {
|
|
135245
137428
|
id?: number
|
|
137429
|
+
idmId?: string | null
|
|
135246
137430
|
role: string
|
|
135247
137431
|
email?: string | null
|
|
135248
137432
|
password?: string | null
|
|
@@ -135282,6 +137466,9 @@ export namespace Prisma {
|
|
|
135282
137466
|
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
135283
137467
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
135284
137468
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
137469
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
137470
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
137471
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
135285
137472
|
}
|
|
135286
137473
|
|
|
135287
137474
|
export type UserCreateOrConnectWithoutSocialProfilesInput = {
|
|
@@ -135333,6 +137520,7 @@ export namespace Prisma {
|
|
|
135333
137520
|
}
|
|
135334
137521
|
|
|
135335
137522
|
export type UserUpdateWithoutSocialProfilesInput = {
|
|
137523
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
135336
137524
|
role?: StringFieldUpdateOperationsInput | string
|
|
135337
137525
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
135338
137526
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -135372,10 +137560,14 @@ export namespace Prisma {
|
|
|
135372
137560
|
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
135373
137561
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
135374
137562
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
137563
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
137564
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
137565
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
135375
137566
|
}
|
|
135376
137567
|
|
|
135377
137568
|
export type UserUncheckedUpdateWithoutSocialProfilesInput = {
|
|
135378
137569
|
id?: IntFieldUpdateOperationsInput | number
|
|
137570
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
135379
137571
|
role?: StringFieldUpdateOperationsInput | string
|
|
135380
137572
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
135381
137573
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -135415,6 +137607,9 @@ export namespace Prisma {
|
|
|
135415
137607
|
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
135416
137608
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
135417
137609
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
137610
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
137611
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
137612
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
135418
137613
|
}
|
|
135419
137614
|
|
|
135420
137615
|
export type BrandCreateWithoutMessageTemplateInput = {
|
|
@@ -136539,6 +138734,7 @@ export namespace Prisma {
|
|
|
136539
138734
|
}
|
|
136540
138735
|
|
|
136541
138736
|
export type UserCreateWithoutRakutenActivityInput = {
|
|
138737
|
+
idmId?: string | null
|
|
136542
138738
|
role: string
|
|
136543
138739
|
email?: string | null
|
|
136544
138740
|
password?: string | null
|
|
@@ -136578,10 +138774,14 @@ export namespace Prisma {
|
|
|
136578
138774
|
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
136579
138775
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
136580
138776
|
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
138777
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
138778
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
138779
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
136581
138780
|
}
|
|
136582
138781
|
|
|
136583
138782
|
export type UserUncheckedCreateWithoutRakutenActivityInput = {
|
|
136584
138783
|
id?: number
|
|
138784
|
+
idmId?: string | null
|
|
136585
138785
|
role: string
|
|
136586
138786
|
email?: string | null
|
|
136587
138787
|
password?: string | null
|
|
@@ -136621,6 +138821,9 @@ export namespace Prisma {
|
|
|
136621
138821
|
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
136622
138822
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
136623
138823
|
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
138824
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
138825
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
138826
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
136624
138827
|
}
|
|
136625
138828
|
|
|
136626
138829
|
export type UserCreateOrConnectWithoutRakutenActivityInput = {
|
|
@@ -136640,6 +138843,7 @@ export namespace Prisma {
|
|
|
136640
138843
|
}
|
|
136641
138844
|
|
|
136642
138845
|
export type UserUpdateWithoutRakutenActivityInput = {
|
|
138846
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136643
138847
|
role?: StringFieldUpdateOperationsInput | string
|
|
136644
138848
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136645
138849
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -136679,10 +138883,14 @@ export namespace Prisma {
|
|
|
136679
138883
|
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
136680
138884
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
136681
138885
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
138886
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
138887
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
138888
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
136682
138889
|
}
|
|
136683
138890
|
|
|
136684
138891
|
export type UserUncheckedUpdateWithoutRakutenActivityInput = {
|
|
136685
138892
|
id?: IntFieldUpdateOperationsInput | number
|
|
138893
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136686
138894
|
role?: StringFieldUpdateOperationsInput | string
|
|
136687
138895
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136688
138896
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -136722,9 +138930,13 @@ export namespace Prisma {
|
|
|
136722
138930
|
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
136723
138931
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
136724
138932
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
138933
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
138934
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
138935
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
136725
138936
|
}
|
|
136726
138937
|
|
|
136727
138938
|
export type UserCreateWithoutImpactRadiusEventsInput = {
|
|
138939
|
+
idmId?: string | null
|
|
136728
138940
|
role: string
|
|
136729
138941
|
email?: string | null
|
|
136730
138942
|
password?: string | null
|
|
@@ -136764,10 +138976,14 @@ export namespace Prisma {
|
|
|
136764
138976
|
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
136765
138977
|
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
136766
138978
|
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
138979
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
138980
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
138981
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
136767
138982
|
}
|
|
136768
138983
|
|
|
136769
138984
|
export type UserUncheckedCreateWithoutImpactRadiusEventsInput = {
|
|
136770
138985
|
id?: number
|
|
138986
|
+
idmId?: string | null
|
|
136771
138987
|
role: string
|
|
136772
138988
|
email?: string | null
|
|
136773
138989
|
password?: string | null
|
|
@@ -136807,6 +139023,9 @@ export namespace Prisma {
|
|
|
136807
139023
|
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
136808
139024
|
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
136809
139025
|
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
139026
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
139027
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
139028
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
136810
139029
|
}
|
|
136811
139030
|
|
|
136812
139031
|
export type UserCreateOrConnectWithoutImpactRadiusEventsInput = {
|
|
@@ -136976,6 +139195,7 @@ export namespace Prisma {
|
|
|
136976
139195
|
}
|
|
136977
139196
|
|
|
136978
139197
|
export type UserUpdateWithoutImpactRadiusEventsInput = {
|
|
139198
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136979
139199
|
role?: StringFieldUpdateOperationsInput | string
|
|
136980
139200
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136981
139201
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -137015,10 +139235,14 @@ export namespace Prisma {
|
|
|
137015
139235
|
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
137016
139236
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
137017
139237
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
139238
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
139239
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
139240
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
137018
139241
|
}
|
|
137019
139242
|
|
|
137020
139243
|
export type UserUncheckedUpdateWithoutImpactRadiusEventsInput = {
|
|
137021
139244
|
id?: IntFieldUpdateOperationsInput | number
|
|
139245
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137022
139246
|
role?: StringFieldUpdateOperationsInput | string
|
|
137023
139247
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137024
139248
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -137058,6 +139282,9 @@ export namespace Prisma {
|
|
|
137058
139282
|
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
137059
139283
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
137060
139284
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
139285
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
139286
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
139287
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
137061
139288
|
}
|
|
137062
139289
|
|
|
137063
139290
|
export type BrandUpsertWithoutImpactRadiusEventsInput = {
|
|
@@ -139883,8 +142110,615 @@ export namespace Prisma {
|
|
|
139883
142110
|
optInId?: IntFieldUpdateOperationsInput | number
|
|
139884
142111
|
}
|
|
139885
142112
|
|
|
142113
|
+
export type UserCreateWithoutFlagsAssignedInput = {
|
|
142114
|
+
idmId?: string | null
|
|
142115
|
+
role: string
|
|
142116
|
+
email?: string | null
|
|
142117
|
+
password?: string | null
|
|
142118
|
+
registered?: Date | string
|
|
142119
|
+
lastLoginDate?: Date | string | null
|
|
142120
|
+
firstName?: string | null
|
|
142121
|
+
lastName?: string | null
|
|
142122
|
+
phone?: string | null
|
|
142123
|
+
phoneCode?: number | null
|
|
142124
|
+
phoneShort?: string | null
|
|
142125
|
+
profilePicUrl?: string | null
|
|
142126
|
+
forgotPasswordKey?: string | null
|
|
142127
|
+
affiliateSlug?: string | null
|
|
142128
|
+
closed?: Date | string | null
|
|
142129
|
+
closedReason?: string | null
|
|
142130
|
+
usercomLastSynced?: Date | string | null
|
|
142131
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
142132
|
+
fullName?: string | null
|
|
142133
|
+
phoneNormalised?: string | null
|
|
142134
|
+
referrer?: UserCreateNestedOneWithoutReferredUsersInput
|
|
142135
|
+
referredUsers?: UserCreateNestedManyWithoutReferrerInput
|
|
142136
|
+
logs?: LogCreateNestedManyWithoutUserInput
|
|
142137
|
+
creatorProfile?: CreatorProfileCreateNestedOneWithoutUserInput
|
|
142138
|
+
instagramProfile?: InstagramProfileCreateNestedOneWithoutUserInput
|
|
142139
|
+
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutUserInput
|
|
142140
|
+
tiktokProfile?: TiktokProfileCreateNestedOneWithoutUserInput
|
|
142141
|
+
facebookProfile?: FacebookProfileCreateNestedOneWithoutUserInput
|
|
142142
|
+
twitterProfile?: TwitterProfileCreateNestedOneWithoutUserInput
|
|
142143
|
+
twitchProfile?: TwitchProfileCreateNestedOneWithoutUserInput
|
|
142144
|
+
brandProfiles?: BrandUserProfileCreateNestedManyWithoutUserInput
|
|
142145
|
+
optIns?: OptInCreateNestedManyWithoutUserInput
|
|
142146
|
+
assignedBrands?: BrandCreateNestedManyWithoutDedicatedSpecialistInput
|
|
142147
|
+
messages?: MessageCreateNestedManyWithoutUserInput
|
|
142148
|
+
socialPosts?: SocialPostCreateNestedManyWithoutUserInput
|
|
142149
|
+
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutCreatorInput
|
|
142150
|
+
affiliateLinks?: AffiliateLinkCreateNestedManyWithoutAffiliateInput
|
|
142151
|
+
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
142152
|
+
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
142153
|
+
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
142154
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
142155
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
142156
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
142157
|
+
}
|
|
142158
|
+
|
|
142159
|
+
export type UserUncheckedCreateWithoutFlagsAssignedInput = {
|
|
142160
|
+
id?: number
|
|
142161
|
+
idmId?: string | null
|
|
142162
|
+
role: string
|
|
142163
|
+
email?: string | null
|
|
142164
|
+
password?: string | null
|
|
142165
|
+
registered?: Date | string
|
|
142166
|
+
lastLoginDate?: Date | string | null
|
|
142167
|
+
firstName?: string | null
|
|
142168
|
+
lastName?: string | null
|
|
142169
|
+
phone?: string | null
|
|
142170
|
+
phoneCode?: number | null
|
|
142171
|
+
phoneShort?: string | null
|
|
142172
|
+
profilePicUrl?: string | null
|
|
142173
|
+
forgotPasswordKey?: string | null
|
|
142174
|
+
affiliateSlug?: string | null
|
|
142175
|
+
closed?: Date | string | null
|
|
142176
|
+
closedReason?: string | null
|
|
142177
|
+
usercomLastSynced?: Date | string | null
|
|
142178
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
142179
|
+
referrerId?: number | null
|
|
142180
|
+
fullName?: string | null
|
|
142181
|
+
phoneNormalised?: string | null
|
|
142182
|
+
referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
|
|
142183
|
+
logs?: LogUncheckedCreateNestedManyWithoutUserInput
|
|
142184
|
+
creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142185
|
+
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142186
|
+
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142187
|
+
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142188
|
+
facebookProfile?: FacebookProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142189
|
+
twitterProfile?: TwitterProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142190
|
+
twitchProfile?: TwitchProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142191
|
+
brandProfiles?: BrandUserProfileUncheckedCreateNestedManyWithoutUserInput
|
|
142192
|
+
optIns?: OptInUncheckedCreateNestedManyWithoutUserInput
|
|
142193
|
+
assignedBrands?: BrandUncheckedCreateNestedManyWithoutDedicatedSpecialistInput
|
|
142194
|
+
messages?: MessageUncheckedCreateNestedManyWithoutUserInput
|
|
142195
|
+
socialPosts?: SocialPostUncheckedCreateNestedManyWithoutUserInput
|
|
142196
|
+
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutCreatorInput
|
|
142197
|
+
affiliateLinks?: AffiliateLinkUncheckedCreateNestedManyWithoutAffiliateInput
|
|
142198
|
+
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
142199
|
+
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
142200
|
+
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
142201
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
142202
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
142203
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
142204
|
+
}
|
|
142205
|
+
|
|
142206
|
+
export type UserCreateOrConnectWithoutFlagsAssignedInput = {
|
|
142207
|
+
where: UserWhereUniqueInput
|
|
142208
|
+
create: XOR<UserCreateWithoutFlagsAssignedInput, UserUncheckedCreateWithoutFlagsAssignedInput>
|
|
142209
|
+
}
|
|
142210
|
+
|
|
142211
|
+
export type UserCreateWithoutFlagsCreatedInput = {
|
|
142212
|
+
idmId?: string | null
|
|
142213
|
+
role: string
|
|
142214
|
+
email?: string | null
|
|
142215
|
+
password?: string | null
|
|
142216
|
+
registered?: Date | string
|
|
142217
|
+
lastLoginDate?: Date | string | null
|
|
142218
|
+
firstName?: string | null
|
|
142219
|
+
lastName?: string | null
|
|
142220
|
+
phone?: string | null
|
|
142221
|
+
phoneCode?: number | null
|
|
142222
|
+
phoneShort?: string | null
|
|
142223
|
+
profilePicUrl?: string | null
|
|
142224
|
+
forgotPasswordKey?: string | null
|
|
142225
|
+
affiliateSlug?: string | null
|
|
142226
|
+
closed?: Date | string | null
|
|
142227
|
+
closedReason?: string | null
|
|
142228
|
+
usercomLastSynced?: Date | string | null
|
|
142229
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
142230
|
+
fullName?: string | null
|
|
142231
|
+
phoneNormalised?: string | null
|
|
142232
|
+
referrer?: UserCreateNestedOneWithoutReferredUsersInput
|
|
142233
|
+
referredUsers?: UserCreateNestedManyWithoutReferrerInput
|
|
142234
|
+
logs?: LogCreateNestedManyWithoutUserInput
|
|
142235
|
+
creatorProfile?: CreatorProfileCreateNestedOneWithoutUserInput
|
|
142236
|
+
instagramProfile?: InstagramProfileCreateNestedOneWithoutUserInput
|
|
142237
|
+
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutUserInput
|
|
142238
|
+
tiktokProfile?: TiktokProfileCreateNestedOneWithoutUserInput
|
|
142239
|
+
facebookProfile?: FacebookProfileCreateNestedOneWithoutUserInput
|
|
142240
|
+
twitterProfile?: TwitterProfileCreateNestedOneWithoutUserInput
|
|
142241
|
+
twitchProfile?: TwitchProfileCreateNestedOneWithoutUserInput
|
|
142242
|
+
brandProfiles?: BrandUserProfileCreateNestedManyWithoutUserInput
|
|
142243
|
+
optIns?: OptInCreateNestedManyWithoutUserInput
|
|
142244
|
+
assignedBrands?: BrandCreateNestedManyWithoutDedicatedSpecialistInput
|
|
142245
|
+
messages?: MessageCreateNestedManyWithoutUserInput
|
|
142246
|
+
socialPosts?: SocialPostCreateNestedManyWithoutUserInput
|
|
142247
|
+
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutCreatorInput
|
|
142248
|
+
affiliateLinks?: AffiliateLinkCreateNestedManyWithoutAffiliateInput
|
|
142249
|
+
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
142250
|
+
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
142251
|
+
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
142252
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
142253
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
142254
|
+
flagsEdited?: CreatorFlagCreateNestedManyWithoutEditedByUserInput
|
|
142255
|
+
}
|
|
142256
|
+
|
|
142257
|
+
export type UserUncheckedCreateWithoutFlagsCreatedInput = {
|
|
142258
|
+
id?: number
|
|
142259
|
+
idmId?: string | null
|
|
142260
|
+
role: string
|
|
142261
|
+
email?: string | null
|
|
142262
|
+
password?: string | null
|
|
142263
|
+
registered?: Date | string
|
|
142264
|
+
lastLoginDate?: Date | string | null
|
|
142265
|
+
firstName?: string | null
|
|
142266
|
+
lastName?: string | null
|
|
142267
|
+
phone?: string | null
|
|
142268
|
+
phoneCode?: number | null
|
|
142269
|
+
phoneShort?: string | null
|
|
142270
|
+
profilePicUrl?: string | null
|
|
142271
|
+
forgotPasswordKey?: string | null
|
|
142272
|
+
affiliateSlug?: string | null
|
|
142273
|
+
closed?: Date | string | null
|
|
142274
|
+
closedReason?: string | null
|
|
142275
|
+
usercomLastSynced?: Date | string | null
|
|
142276
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
142277
|
+
referrerId?: number | null
|
|
142278
|
+
fullName?: string | null
|
|
142279
|
+
phoneNormalised?: string | null
|
|
142280
|
+
referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
|
|
142281
|
+
logs?: LogUncheckedCreateNestedManyWithoutUserInput
|
|
142282
|
+
creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142283
|
+
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142284
|
+
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142285
|
+
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142286
|
+
facebookProfile?: FacebookProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142287
|
+
twitterProfile?: TwitterProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142288
|
+
twitchProfile?: TwitchProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142289
|
+
brandProfiles?: BrandUserProfileUncheckedCreateNestedManyWithoutUserInput
|
|
142290
|
+
optIns?: OptInUncheckedCreateNestedManyWithoutUserInput
|
|
142291
|
+
assignedBrands?: BrandUncheckedCreateNestedManyWithoutDedicatedSpecialistInput
|
|
142292
|
+
messages?: MessageUncheckedCreateNestedManyWithoutUserInput
|
|
142293
|
+
socialPosts?: SocialPostUncheckedCreateNestedManyWithoutUserInput
|
|
142294
|
+
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutCreatorInput
|
|
142295
|
+
affiliateLinks?: AffiliateLinkUncheckedCreateNestedManyWithoutAffiliateInput
|
|
142296
|
+
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
142297
|
+
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
142298
|
+
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
142299
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
142300
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
142301
|
+
flagsEdited?: CreatorFlagUncheckedCreateNestedManyWithoutEditedByUserInput
|
|
142302
|
+
}
|
|
142303
|
+
|
|
142304
|
+
export type UserCreateOrConnectWithoutFlagsCreatedInput = {
|
|
142305
|
+
where: UserWhereUniqueInput
|
|
142306
|
+
create: XOR<UserCreateWithoutFlagsCreatedInput, UserUncheckedCreateWithoutFlagsCreatedInput>
|
|
142307
|
+
}
|
|
142308
|
+
|
|
142309
|
+
export type UserCreateWithoutFlagsEditedInput = {
|
|
142310
|
+
idmId?: string | null
|
|
142311
|
+
role: string
|
|
142312
|
+
email?: string | null
|
|
142313
|
+
password?: string | null
|
|
142314
|
+
registered?: Date | string
|
|
142315
|
+
lastLoginDate?: Date | string | null
|
|
142316
|
+
firstName?: string | null
|
|
142317
|
+
lastName?: string | null
|
|
142318
|
+
phone?: string | null
|
|
142319
|
+
phoneCode?: number | null
|
|
142320
|
+
phoneShort?: string | null
|
|
142321
|
+
profilePicUrl?: string | null
|
|
142322
|
+
forgotPasswordKey?: string | null
|
|
142323
|
+
affiliateSlug?: string | null
|
|
142324
|
+
closed?: Date | string | null
|
|
142325
|
+
closedReason?: string | null
|
|
142326
|
+
usercomLastSynced?: Date | string | null
|
|
142327
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
142328
|
+
fullName?: string | null
|
|
142329
|
+
phoneNormalised?: string | null
|
|
142330
|
+
referrer?: UserCreateNestedOneWithoutReferredUsersInput
|
|
142331
|
+
referredUsers?: UserCreateNestedManyWithoutReferrerInput
|
|
142332
|
+
logs?: LogCreateNestedManyWithoutUserInput
|
|
142333
|
+
creatorProfile?: CreatorProfileCreateNestedOneWithoutUserInput
|
|
142334
|
+
instagramProfile?: InstagramProfileCreateNestedOneWithoutUserInput
|
|
142335
|
+
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutUserInput
|
|
142336
|
+
tiktokProfile?: TiktokProfileCreateNestedOneWithoutUserInput
|
|
142337
|
+
facebookProfile?: FacebookProfileCreateNestedOneWithoutUserInput
|
|
142338
|
+
twitterProfile?: TwitterProfileCreateNestedOneWithoutUserInput
|
|
142339
|
+
twitchProfile?: TwitchProfileCreateNestedOneWithoutUserInput
|
|
142340
|
+
brandProfiles?: BrandUserProfileCreateNestedManyWithoutUserInput
|
|
142341
|
+
optIns?: OptInCreateNestedManyWithoutUserInput
|
|
142342
|
+
assignedBrands?: BrandCreateNestedManyWithoutDedicatedSpecialistInput
|
|
142343
|
+
messages?: MessageCreateNestedManyWithoutUserInput
|
|
142344
|
+
socialPosts?: SocialPostCreateNestedManyWithoutUserInput
|
|
142345
|
+
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutCreatorInput
|
|
142346
|
+
affiliateLinks?: AffiliateLinkCreateNestedManyWithoutAffiliateInput
|
|
142347
|
+
campaignPins?: CampaignPinCreateNestedManyWithoutUserInput
|
|
142348
|
+
socialProfiles?: SocialProfileCreateNestedManyWithoutUserInput
|
|
142349
|
+
rakutenActivity?: RakutenActivityCreateNestedManyWithoutUserInput
|
|
142350
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutUserInput
|
|
142351
|
+
flagsAssigned?: CreatorFlagCreateNestedManyWithoutUserInput
|
|
142352
|
+
flagsCreated?: CreatorFlagCreateNestedManyWithoutFlaggedByUserInput
|
|
142353
|
+
}
|
|
142354
|
+
|
|
142355
|
+
export type UserUncheckedCreateWithoutFlagsEditedInput = {
|
|
142356
|
+
id?: number
|
|
142357
|
+
idmId?: string | null
|
|
142358
|
+
role: string
|
|
142359
|
+
email?: string | null
|
|
142360
|
+
password?: string | null
|
|
142361
|
+
registered?: Date | string
|
|
142362
|
+
lastLoginDate?: Date | string | null
|
|
142363
|
+
firstName?: string | null
|
|
142364
|
+
lastName?: string | null
|
|
142365
|
+
phone?: string | null
|
|
142366
|
+
phoneCode?: number | null
|
|
142367
|
+
phoneShort?: string | null
|
|
142368
|
+
profilePicUrl?: string | null
|
|
142369
|
+
forgotPasswordKey?: string | null
|
|
142370
|
+
affiliateSlug?: string | null
|
|
142371
|
+
closed?: Date | string | null
|
|
142372
|
+
closedReason?: string | null
|
|
142373
|
+
usercomLastSynced?: Date | string | null
|
|
142374
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
142375
|
+
referrerId?: number | null
|
|
142376
|
+
fullName?: string | null
|
|
142377
|
+
phoneNormalised?: string | null
|
|
142378
|
+
referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
|
|
142379
|
+
logs?: LogUncheckedCreateNestedManyWithoutUserInput
|
|
142380
|
+
creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142381
|
+
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142382
|
+
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142383
|
+
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142384
|
+
facebookProfile?: FacebookProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142385
|
+
twitterProfile?: TwitterProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142386
|
+
twitchProfile?: TwitchProfileUncheckedCreateNestedOneWithoutUserInput
|
|
142387
|
+
brandProfiles?: BrandUserProfileUncheckedCreateNestedManyWithoutUserInput
|
|
142388
|
+
optIns?: OptInUncheckedCreateNestedManyWithoutUserInput
|
|
142389
|
+
assignedBrands?: BrandUncheckedCreateNestedManyWithoutDedicatedSpecialistInput
|
|
142390
|
+
messages?: MessageUncheckedCreateNestedManyWithoutUserInput
|
|
142391
|
+
socialPosts?: SocialPostUncheckedCreateNestedManyWithoutUserInput
|
|
142392
|
+
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutCreatorInput
|
|
142393
|
+
affiliateLinks?: AffiliateLinkUncheckedCreateNestedManyWithoutAffiliateInput
|
|
142394
|
+
campaignPins?: CampaignPinUncheckedCreateNestedManyWithoutUserInput
|
|
142395
|
+
socialProfiles?: SocialProfileUncheckedCreateNestedManyWithoutUserInput
|
|
142396
|
+
rakutenActivity?: RakutenActivityUncheckedCreateNestedManyWithoutUserInput
|
|
142397
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutUserInput
|
|
142398
|
+
flagsAssigned?: CreatorFlagUncheckedCreateNestedManyWithoutUserInput
|
|
142399
|
+
flagsCreated?: CreatorFlagUncheckedCreateNestedManyWithoutFlaggedByUserInput
|
|
142400
|
+
}
|
|
142401
|
+
|
|
142402
|
+
export type UserCreateOrConnectWithoutFlagsEditedInput = {
|
|
142403
|
+
where: UserWhereUniqueInput
|
|
142404
|
+
create: XOR<UserCreateWithoutFlagsEditedInput, UserUncheckedCreateWithoutFlagsEditedInput>
|
|
142405
|
+
}
|
|
142406
|
+
|
|
142407
|
+
export type UserUpsertWithoutFlagsAssignedInput = {
|
|
142408
|
+
update: XOR<UserUpdateWithoutFlagsAssignedInput, UserUncheckedUpdateWithoutFlagsAssignedInput>
|
|
142409
|
+
create: XOR<UserCreateWithoutFlagsAssignedInput, UserUncheckedCreateWithoutFlagsAssignedInput>
|
|
142410
|
+
where?: UserWhereInput
|
|
142411
|
+
}
|
|
142412
|
+
|
|
142413
|
+
export type UserUpdateToOneWithWhereWithoutFlagsAssignedInput = {
|
|
142414
|
+
where?: UserWhereInput
|
|
142415
|
+
data: XOR<UserUpdateWithoutFlagsAssignedInput, UserUncheckedUpdateWithoutFlagsAssignedInput>
|
|
142416
|
+
}
|
|
142417
|
+
|
|
142418
|
+
export type UserUpdateWithoutFlagsAssignedInput = {
|
|
142419
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142420
|
+
role?: StringFieldUpdateOperationsInput | string
|
|
142421
|
+
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142422
|
+
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142423
|
+
registered?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
142424
|
+
lastLoginDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142425
|
+
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142426
|
+
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142427
|
+
phone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142428
|
+
phoneCode?: NullableIntFieldUpdateOperationsInput | number | null
|
|
142429
|
+
phoneShort?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142430
|
+
profilePicUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142431
|
+
forgotPasswordKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142432
|
+
affiliateSlug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142433
|
+
closed?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142434
|
+
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142435
|
+
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142436
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
142437
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142438
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142439
|
+
referrer?: UserUpdateOneWithoutReferredUsersNestedInput
|
|
142440
|
+
referredUsers?: UserUpdateManyWithoutReferrerNestedInput
|
|
142441
|
+
logs?: LogUpdateManyWithoutUserNestedInput
|
|
142442
|
+
creatorProfile?: CreatorProfileUpdateOneWithoutUserNestedInput
|
|
142443
|
+
instagramProfile?: InstagramProfileUpdateOneWithoutUserNestedInput
|
|
142444
|
+
youtubeProfile?: YoutubeProfileUpdateOneWithoutUserNestedInput
|
|
142445
|
+
tiktokProfile?: TiktokProfileUpdateOneWithoutUserNestedInput
|
|
142446
|
+
facebookProfile?: FacebookProfileUpdateOneWithoutUserNestedInput
|
|
142447
|
+
twitterProfile?: TwitterProfileUpdateOneWithoutUserNestedInput
|
|
142448
|
+
twitchProfile?: TwitchProfileUpdateOneWithoutUserNestedInput
|
|
142449
|
+
brandProfiles?: BrandUserProfileUpdateManyWithoutUserNestedInput
|
|
142450
|
+
optIns?: OptInUpdateManyWithoutUserNestedInput
|
|
142451
|
+
assignedBrands?: BrandUpdateManyWithoutDedicatedSpecialistNestedInput
|
|
142452
|
+
messages?: MessageUpdateManyWithoutUserNestedInput
|
|
142453
|
+
socialPosts?: SocialPostUpdateManyWithoutUserNestedInput
|
|
142454
|
+
paymentTransactions?: PaymentTransactionUpdateManyWithoutCreatorNestedInput
|
|
142455
|
+
affiliateLinks?: AffiliateLinkUpdateManyWithoutAffiliateNestedInput
|
|
142456
|
+
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
142457
|
+
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
142458
|
+
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
142459
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
142460
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
142461
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
142462
|
+
}
|
|
142463
|
+
|
|
142464
|
+
export type UserUncheckedUpdateWithoutFlagsAssignedInput = {
|
|
142465
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
142466
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142467
|
+
role?: StringFieldUpdateOperationsInput | string
|
|
142468
|
+
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142469
|
+
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142470
|
+
registered?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
142471
|
+
lastLoginDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142472
|
+
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142473
|
+
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142474
|
+
phone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142475
|
+
phoneCode?: NullableIntFieldUpdateOperationsInput | number | null
|
|
142476
|
+
phoneShort?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142477
|
+
profilePicUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142478
|
+
forgotPasswordKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142479
|
+
affiliateSlug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142480
|
+
closed?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142481
|
+
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142482
|
+
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142483
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
142484
|
+
referrerId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
142485
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142486
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142487
|
+
referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
|
|
142488
|
+
logs?: LogUncheckedUpdateManyWithoutUserNestedInput
|
|
142489
|
+
creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142490
|
+
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142491
|
+
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142492
|
+
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142493
|
+
facebookProfile?: FacebookProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142494
|
+
twitterProfile?: TwitterProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142495
|
+
twitchProfile?: TwitchProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142496
|
+
brandProfiles?: BrandUserProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
142497
|
+
optIns?: OptInUncheckedUpdateManyWithoutUserNestedInput
|
|
142498
|
+
assignedBrands?: BrandUncheckedUpdateManyWithoutDedicatedSpecialistNestedInput
|
|
142499
|
+
messages?: MessageUncheckedUpdateManyWithoutUserNestedInput
|
|
142500
|
+
socialPosts?: SocialPostUncheckedUpdateManyWithoutUserNestedInput
|
|
142501
|
+
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutCreatorNestedInput
|
|
142502
|
+
affiliateLinks?: AffiliateLinkUncheckedUpdateManyWithoutAffiliateNestedInput
|
|
142503
|
+
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
142504
|
+
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
142505
|
+
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
142506
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
142507
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
142508
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
142509
|
+
}
|
|
142510
|
+
|
|
142511
|
+
export type UserUpsertWithoutFlagsCreatedInput = {
|
|
142512
|
+
update: XOR<UserUpdateWithoutFlagsCreatedInput, UserUncheckedUpdateWithoutFlagsCreatedInput>
|
|
142513
|
+
create: XOR<UserCreateWithoutFlagsCreatedInput, UserUncheckedCreateWithoutFlagsCreatedInput>
|
|
142514
|
+
where?: UserWhereInput
|
|
142515
|
+
}
|
|
142516
|
+
|
|
142517
|
+
export type UserUpdateToOneWithWhereWithoutFlagsCreatedInput = {
|
|
142518
|
+
where?: UserWhereInput
|
|
142519
|
+
data: XOR<UserUpdateWithoutFlagsCreatedInput, UserUncheckedUpdateWithoutFlagsCreatedInput>
|
|
142520
|
+
}
|
|
142521
|
+
|
|
142522
|
+
export type UserUpdateWithoutFlagsCreatedInput = {
|
|
142523
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142524
|
+
role?: StringFieldUpdateOperationsInput | string
|
|
142525
|
+
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142526
|
+
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142527
|
+
registered?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
142528
|
+
lastLoginDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142529
|
+
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142530
|
+
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142531
|
+
phone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142532
|
+
phoneCode?: NullableIntFieldUpdateOperationsInput | number | null
|
|
142533
|
+
phoneShort?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142534
|
+
profilePicUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142535
|
+
forgotPasswordKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142536
|
+
affiliateSlug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142537
|
+
closed?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142538
|
+
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142539
|
+
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142540
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
142541
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142542
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142543
|
+
referrer?: UserUpdateOneWithoutReferredUsersNestedInput
|
|
142544
|
+
referredUsers?: UserUpdateManyWithoutReferrerNestedInput
|
|
142545
|
+
logs?: LogUpdateManyWithoutUserNestedInput
|
|
142546
|
+
creatorProfile?: CreatorProfileUpdateOneWithoutUserNestedInput
|
|
142547
|
+
instagramProfile?: InstagramProfileUpdateOneWithoutUserNestedInput
|
|
142548
|
+
youtubeProfile?: YoutubeProfileUpdateOneWithoutUserNestedInput
|
|
142549
|
+
tiktokProfile?: TiktokProfileUpdateOneWithoutUserNestedInput
|
|
142550
|
+
facebookProfile?: FacebookProfileUpdateOneWithoutUserNestedInput
|
|
142551
|
+
twitterProfile?: TwitterProfileUpdateOneWithoutUserNestedInput
|
|
142552
|
+
twitchProfile?: TwitchProfileUpdateOneWithoutUserNestedInput
|
|
142553
|
+
brandProfiles?: BrandUserProfileUpdateManyWithoutUserNestedInput
|
|
142554
|
+
optIns?: OptInUpdateManyWithoutUserNestedInput
|
|
142555
|
+
assignedBrands?: BrandUpdateManyWithoutDedicatedSpecialistNestedInput
|
|
142556
|
+
messages?: MessageUpdateManyWithoutUserNestedInput
|
|
142557
|
+
socialPosts?: SocialPostUpdateManyWithoutUserNestedInput
|
|
142558
|
+
paymentTransactions?: PaymentTransactionUpdateManyWithoutCreatorNestedInput
|
|
142559
|
+
affiliateLinks?: AffiliateLinkUpdateManyWithoutAffiliateNestedInput
|
|
142560
|
+
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
142561
|
+
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
142562
|
+
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
142563
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
142564
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
142565
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
142566
|
+
}
|
|
142567
|
+
|
|
142568
|
+
export type UserUncheckedUpdateWithoutFlagsCreatedInput = {
|
|
142569
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
142570
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142571
|
+
role?: StringFieldUpdateOperationsInput | string
|
|
142572
|
+
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142573
|
+
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142574
|
+
registered?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
142575
|
+
lastLoginDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142576
|
+
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142577
|
+
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142578
|
+
phone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142579
|
+
phoneCode?: NullableIntFieldUpdateOperationsInput | number | null
|
|
142580
|
+
phoneShort?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142581
|
+
profilePicUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142582
|
+
forgotPasswordKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142583
|
+
affiliateSlug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142584
|
+
closed?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142585
|
+
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142586
|
+
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142587
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
142588
|
+
referrerId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
142589
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142590
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142591
|
+
referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
|
|
142592
|
+
logs?: LogUncheckedUpdateManyWithoutUserNestedInput
|
|
142593
|
+
creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142594
|
+
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142595
|
+
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142596
|
+
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142597
|
+
facebookProfile?: FacebookProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142598
|
+
twitterProfile?: TwitterProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142599
|
+
twitchProfile?: TwitchProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142600
|
+
brandProfiles?: BrandUserProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
142601
|
+
optIns?: OptInUncheckedUpdateManyWithoutUserNestedInput
|
|
142602
|
+
assignedBrands?: BrandUncheckedUpdateManyWithoutDedicatedSpecialistNestedInput
|
|
142603
|
+
messages?: MessageUncheckedUpdateManyWithoutUserNestedInput
|
|
142604
|
+
socialPosts?: SocialPostUncheckedUpdateManyWithoutUserNestedInput
|
|
142605
|
+
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutCreatorNestedInput
|
|
142606
|
+
affiliateLinks?: AffiliateLinkUncheckedUpdateManyWithoutAffiliateNestedInput
|
|
142607
|
+
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
142608
|
+
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
142609
|
+
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
142610
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
142611
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
142612
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
142613
|
+
}
|
|
142614
|
+
|
|
142615
|
+
export type UserUpsertWithoutFlagsEditedInput = {
|
|
142616
|
+
update: XOR<UserUpdateWithoutFlagsEditedInput, UserUncheckedUpdateWithoutFlagsEditedInput>
|
|
142617
|
+
create: XOR<UserCreateWithoutFlagsEditedInput, UserUncheckedCreateWithoutFlagsEditedInput>
|
|
142618
|
+
where?: UserWhereInput
|
|
142619
|
+
}
|
|
142620
|
+
|
|
142621
|
+
export type UserUpdateToOneWithWhereWithoutFlagsEditedInput = {
|
|
142622
|
+
where?: UserWhereInput
|
|
142623
|
+
data: XOR<UserUpdateWithoutFlagsEditedInput, UserUncheckedUpdateWithoutFlagsEditedInput>
|
|
142624
|
+
}
|
|
142625
|
+
|
|
142626
|
+
export type UserUpdateWithoutFlagsEditedInput = {
|
|
142627
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142628
|
+
role?: StringFieldUpdateOperationsInput | string
|
|
142629
|
+
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142630
|
+
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142631
|
+
registered?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
142632
|
+
lastLoginDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142633
|
+
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142634
|
+
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142635
|
+
phone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142636
|
+
phoneCode?: NullableIntFieldUpdateOperationsInput | number | null
|
|
142637
|
+
phoneShort?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142638
|
+
profilePicUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142639
|
+
forgotPasswordKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142640
|
+
affiliateSlug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142641
|
+
closed?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142642
|
+
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142643
|
+
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142644
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
142645
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142646
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142647
|
+
referrer?: UserUpdateOneWithoutReferredUsersNestedInput
|
|
142648
|
+
referredUsers?: UserUpdateManyWithoutReferrerNestedInput
|
|
142649
|
+
logs?: LogUpdateManyWithoutUserNestedInput
|
|
142650
|
+
creatorProfile?: CreatorProfileUpdateOneWithoutUserNestedInput
|
|
142651
|
+
instagramProfile?: InstagramProfileUpdateOneWithoutUserNestedInput
|
|
142652
|
+
youtubeProfile?: YoutubeProfileUpdateOneWithoutUserNestedInput
|
|
142653
|
+
tiktokProfile?: TiktokProfileUpdateOneWithoutUserNestedInput
|
|
142654
|
+
facebookProfile?: FacebookProfileUpdateOneWithoutUserNestedInput
|
|
142655
|
+
twitterProfile?: TwitterProfileUpdateOneWithoutUserNestedInput
|
|
142656
|
+
twitchProfile?: TwitchProfileUpdateOneWithoutUserNestedInput
|
|
142657
|
+
brandProfiles?: BrandUserProfileUpdateManyWithoutUserNestedInput
|
|
142658
|
+
optIns?: OptInUpdateManyWithoutUserNestedInput
|
|
142659
|
+
assignedBrands?: BrandUpdateManyWithoutDedicatedSpecialistNestedInput
|
|
142660
|
+
messages?: MessageUpdateManyWithoutUserNestedInput
|
|
142661
|
+
socialPosts?: SocialPostUpdateManyWithoutUserNestedInput
|
|
142662
|
+
paymentTransactions?: PaymentTransactionUpdateManyWithoutCreatorNestedInput
|
|
142663
|
+
affiliateLinks?: AffiliateLinkUpdateManyWithoutAffiliateNestedInput
|
|
142664
|
+
campaignPins?: CampaignPinUpdateManyWithoutUserNestedInput
|
|
142665
|
+
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
142666
|
+
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
142667
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
142668
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
142669
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
142670
|
+
}
|
|
142671
|
+
|
|
142672
|
+
export type UserUncheckedUpdateWithoutFlagsEditedInput = {
|
|
142673
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
142674
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142675
|
+
role?: StringFieldUpdateOperationsInput | string
|
|
142676
|
+
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142677
|
+
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142678
|
+
registered?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
142679
|
+
lastLoginDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142680
|
+
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142681
|
+
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142682
|
+
phone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142683
|
+
phoneCode?: NullableIntFieldUpdateOperationsInput | number | null
|
|
142684
|
+
phoneShort?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142685
|
+
profilePicUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142686
|
+
forgotPasswordKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142687
|
+
affiliateSlug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142688
|
+
closed?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142689
|
+
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142690
|
+
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
142691
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
142692
|
+
referrerId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
142693
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142694
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
142695
|
+
referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
|
|
142696
|
+
logs?: LogUncheckedUpdateManyWithoutUserNestedInput
|
|
142697
|
+
creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142698
|
+
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142699
|
+
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142700
|
+
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142701
|
+
facebookProfile?: FacebookProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142702
|
+
twitterProfile?: TwitterProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142703
|
+
twitchProfile?: TwitchProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
142704
|
+
brandProfiles?: BrandUserProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
142705
|
+
optIns?: OptInUncheckedUpdateManyWithoutUserNestedInput
|
|
142706
|
+
assignedBrands?: BrandUncheckedUpdateManyWithoutDedicatedSpecialistNestedInput
|
|
142707
|
+
messages?: MessageUncheckedUpdateManyWithoutUserNestedInput
|
|
142708
|
+
socialPosts?: SocialPostUncheckedUpdateManyWithoutUserNestedInput
|
|
142709
|
+
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutCreatorNestedInput
|
|
142710
|
+
affiliateLinks?: AffiliateLinkUncheckedUpdateManyWithoutAffiliateNestedInput
|
|
142711
|
+
campaignPins?: CampaignPinUncheckedUpdateManyWithoutUserNestedInput
|
|
142712
|
+
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
142713
|
+
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
142714
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
142715
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
142716
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
142717
|
+
}
|
|
142718
|
+
|
|
139886
142719
|
export type UserCreateManyReferrerInput = {
|
|
139887
142720
|
id?: number
|
|
142721
|
+
idmId?: string | null
|
|
139888
142722
|
role: string
|
|
139889
142723
|
email?: string | null
|
|
139890
142724
|
password?: string | null
|
|
@@ -140070,7 +142904,41 @@ export namespace Prisma {
|
|
|
140070
142904
|
optInId?: number | null
|
|
140071
142905
|
}
|
|
140072
142906
|
|
|
142907
|
+
export type CreatorFlagCreateManyUserInput = {
|
|
142908
|
+
id?: number
|
|
142909
|
+
label: string
|
|
142910
|
+
comment?: string | null
|
|
142911
|
+
color: string
|
|
142912
|
+
createdAt?: Date | string
|
|
142913
|
+
updatedAt?: Date | string
|
|
142914
|
+
flaggedByUserId: number
|
|
142915
|
+
editedByUserId?: number | null
|
|
142916
|
+
}
|
|
142917
|
+
|
|
142918
|
+
export type CreatorFlagCreateManyFlaggedByUserInput = {
|
|
142919
|
+
id?: number
|
|
142920
|
+
label: string
|
|
142921
|
+
comment?: string | null
|
|
142922
|
+
color: string
|
|
142923
|
+
createdAt?: Date | string
|
|
142924
|
+
updatedAt?: Date | string
|
|
142925
|
+
userId: number
|
|
142926
|
+
editedByUserId?: number | null
|
|
142927
|
+
}
|
|
142928
|
+
|
|
142929
|
+
export type CreatorFlagCreateManyEditedByUserInput = {
|
|
142930
|
+
id?: number
|
|
142931
|
+
label: string
|
|
142932
|
+
comment?: string | null
|
|
142933
|
+
color: string
|
|
142934
|
+
createdAt?: Date | string
|
|
142935
|
+
updatedAt?: Date | string
|
|
142936
|
+
userId: number
|
|
142937
|
+
flaggedByUserId: number
|
|
142938
|
+
}
|
|
142939
|
+
|
|
140073
142940
|
export type UserUpdateWithoutReferrerInput = {
|
|
142941
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
140074
142942
|
role?: StringFieldUpdateOperationsInput | string
|
|
140075
142943
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
140076
142944
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -140110,10 +142978,14 @@ export namespace Prisma {
|
|
|
140110
142978
|
socialProfiles?: SocialProfileUpdateManyWithoutUserNestedInput
|
|
140111
142979
|
rakutenActivity?: RakutenActivityUpdateManyWithoutUserNestedInput
|
|
140112
142980
|
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutUserNestedInput
|
|
142981
|
+
flagsAssigned?: CreatorFlagUpdateManyWithoutUserNestedInput
|
|
142982
|
+
flagsCreated?: CreatorFlagUpdateManyWithoutFlaggedByUserNestedInput
|
|
142983
|
+
flagsEdited?: CreatorFlagUpdateManyWithoutEditedByUserNestedInput
|
|
140113
142984
|
}
|
|
140114
142985
|
|
|
140115
142986
|
export type UserUncheckedUpdateWithoutReferrerInput = {
|
|
140116
142987
|
id?: IntFieldUpdateOperationsInput | number
|
|
142988
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
140117
142989
|
role?: StringFieldUpdateOperationsInput | string
|
|
140118
142990
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
140119
142991
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -140153,10 +143025,14 @@ export namespace Prisma {
|
|
|
140153
143025
|
socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
|
|
140154
143026
|
rakutenActivity?: RakutenActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
140155
143027
|
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutUserNestedInput
|
|
143028
|
+
flagsAssigned?: CreatorFlagUncheckedUpdateManyWithoutUserNestedInput
|
|
143029
|
+
flagsCreated?: CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserNestedInput
|
|
143030
|
+
flagsEdited?: CreatorFlagUncheckedUpdateManyWithoutEditedByUserNestedInput
|
|
140156
143031
|
}
|
|
140157
143032
|
|
|
140158
143033
|
export type UserUncheckedUpdateManyWithoutReferrerInput = {
|
|
140159
143034
|
id?: IntFieldUpdateOperationsInput | number
|
|
143035
|
+
idmId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
140160
143036
|
role?: StringFieldUpdateOperationsInput | string
|
|
140161
143037
|
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
140162
143038
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -140736,6 +143612,102 @@ export namespace Prisma {
|
|
|
140736
143612
|
optInId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
140737
143613
|
}
|
|
140738
143614
|
|
|
143615
|
+
export type CreatorFlagUpdateWithoutUserInput = {
|
|
143616
|
+
label?: StringFieldUpdateOperationsInput | string
|
|
143617
|
+
comment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
143618
|
+
color?: StringFieldUpdateOperationsInput | string
|
|
143619
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143620
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143621
|
+
flaggedByUser?: UserUpdateOneRequiredWithoutFlagsCreatedNestedInput
|
|
143622
|
+
editedByUser?: UserUpdateOneWithoutFlagsEditedNestedInput
|
|
143623
|
+
}
|
|
143624
|
+
|
|
143625
|
+
export type CreatorFlagUncheckedUpdateWithoutUserInput = {
|
|
143626
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
143627
|
+
label?: StringFieldUpdateOperationsInput | string
|
|
143628
|
+
comment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
143629
|
+
color?: StringFieldUpdateOperationsInput | string
|
|
143630
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143631
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143632
|
+
flaggedByUserId?: IntFieldUpdateOperationsInput | number
|
|
143633
|
+
editedByUserId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
143634
|
+
}
|
|
143635
|
+
|
|
143636
|
+
export type CreatorFlagUncheckedUpdateManyWithoutUserInput = {
|
|
143637
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
143638
|
+
label?: StringFieldUpdateOperationsInput | string
|
|
143639
|
+
comment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
143640
|
+
color?: StringFieldUpdateOperationsInput | string
|
|
143641
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143642
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143643
|
+
flaggedByUserId?: IntFieldUpdateOperationsInput | number
|
|
143644
|
+
editedByUserId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
143645
|
+
}
|
|
143646
|
+
|
|
143647
|
+
export type CreatorFlagUpdateWithoutFlaggedByUserInput = {
|
|
143648
|
+
label?: StringFieldUpdateOperationsInput | string
|
|
143649
|
+
comment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
143650
|
+
color?: StringFieldUpdateOperationsInput | string
|
|
143651
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143652
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143653
|
+
user?: UserUpdateOneRequiredWithoutFlagsAssignedNestedInput
|
|
143654
|
+
editedByUser?: UserUpdateOneWithoutFlagsEditedNestedInput
|
|
143655
|
+
}
|
|
143656
|
+
|
|
143657
|
+
export type CreatorFlagUncheckedUpdateWithoutFlaggedByUserInput = {
|
|
143658
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
143659
|
+
label?: StringFieldUpdateOperationsInput | string
|
|
143660
|
+
comment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
143661
|
+
color?: StringFieldUpdateOperationsInput | string
|
|
143662
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143663
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143664
|
+
userId?: IntFieldUpdateOperationsInput | number
|
|
143665
|
+
editedByUserId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
143666
|
+
}
|
|
143667
|
+
|
|
143668
|
+
export type CreatorFlagUncheckedUpdateManyWithoutFlaggedByUserInput = {
|
|
143669
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
143670
|
+
label?: StringFieldUpdateOperationsInput | string
|
|
143671
|
+
comment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
143672
|
+
color?: StringFieldUpdateOperationsInput | string
|
|
143673
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143674
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143675
|
+
userId?: IntFieldUpdateOperationsInput | number
|
|
143676
|
+
editedByUserId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
143677
|
+
}
|
|
143678
|
+
|
|
143679
|
+
export type CreatorFlagUpdateWithoutEditedByUserInput = {
|
|
143680
|
+
label?: StringFieldUpdateOperationsInput | string
|
|
143681
|
+
comment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
143682
|
+
color?: StringFieldUpdateOperationsInput | string
|
|
143683
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143684
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143685
|
+
user?: UserUpdateOneRequiredWithoutFlagsAssignedNestedInput
|
|
143686
|
+
flaggedByUser?: UserUpdateOneRequiredWithoutFlagsCreatedNestedInput
|
|
143687
|
+
}
|
|
143688
|
+
|
|
143689
|
+
export type CreatorFlagUncheckedUpdateWithoutEditedByUserInput = {
|
|
143690
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
143691
|
+
label?: StringFieldUpdateOperationsInput | string
|
|
143692
|
+
comment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
143693
|
+
color?: StringFieldUpdateOperationsInput | string
|
|
143694
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143695
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143696
|
+
userId?: IntFieldUpdateOperationsInput | number
|
|
143697
|
+
flaggedByUserId?: IntFieldUpdateOperationsInput | number
|
|
143698
|
+
}
|
|
143699
|
+
|
|
143700
|
+
export type CreatorFlagUncheckedUpdateManyWithoutEditedByUserInput = {
|
|
143701
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
143702
|
+
label?: StringFieldUpdateOperationsInput | string
|
|
143703
|
+
comment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
143704
|
+
color?: StringFieldUpdateOperationsInput | string
|
|
143705
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143706
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
143707
|
+
userId?: IntFieldUpdateOperationsInput | number
|
|
143708
|
+
flaggedByUserId?: IntFieldUpdateOperationsInput | number
|
|
143709
|
+
}
|
|
143710
|
+
|
|
140739
143711
|
export type CreatorToCategoryCreateManyCreatorProfileInput = {
|
|
140740
143712
|
categoryId: number
|
|
140741
143713
|
}
|
|
@@ -144424,6 +147396,10 @@ export namespace Prisma {
|
|
|
144424
147396
|
* @deprecated Use ShopifySaleDefaultArgs instead
|
|
144425
147397
|
*/
|
|
144426
147398
|
export type ShopifySaleArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = ShopifySaleDefaultArgs<ExtArgs>
|
|
147399
|
+
/**
|
|
147400
|
+
* @deprecated Use CreatorFlagDefaultArgs instead
|
|
147401
|
+
*/
|
|
147402
|
+
export type CreatorFlagArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = CreatorFlagDefaultArgs<ExtArgs>
|
|
144427
147403
|
|
|
144428
147404
|
/**
|
|
144429
147405
|
* Batch Payload for updateMany & deleteMany & createMany
|