@creator.co/creatorco-prisma-client 1.0.45 → 1.0.46
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 +19 -4
- package/index-browser.js +15 -0
- package/index.d.ts +2036 -246
- package/index.js +19 -4
- package/package.json +1 -1
- package/schema.prisma +16 -0
- package/wasm.js +15 -0
package/index.d.ts
CHANGED
|
@@ -318,6 +318,11 @@ export type RakutenActivity = $Result.DefaultSelection<Prisma.$RakutenActivityPa
|
|
|
318
318
|
*
|
|
319
319
|
*/
|
|
320
320
|
export type ImpactRadiusEvent = $Result.DefaultSelection<Prisma.$ImpactRadiusEventPayload>
|
|
321
|
+
/**
|
|
322
|
+
* Model ShareASaleEvent
|
|
323
|
+
*
|
|
324
|
+
*/
|
|
325
|
+
export type ShareASaleEvent = $Result.DefaultSelection<Prisma.$ShareASaleEventPayload>
|
|
321
326
|
/**
|
|
322
327
|
* Model CreatorSearchFilter
|
|
323
328
|
*
|
|
@@ -1147,6 +1152,16 @@ export class PrismaClient<
|
|
|
1147
1152
|
*/
|
|
1148
1153
|
get impactRadiusEvent(): Prisma.ImpactRadiusEventDelegate<ExtArgs>;
|
|
1149
1154
|
|
|
1155
|
+
/**
|
|
1156
|
+
* `prisma.shareASaleEvent`: Exposes CRUD operations for the **ShareASaleEvent** model.
|
|
1157
|
+
* Example usage:
|
|
1158
|
+
* ```ts
|
|
1159
|
+
* // Fetch zero or more ShareASaleEvents
|
|
1160
|
+
* const shareASaleEvents = await prisma.shareASaleEvent.findMany()
|
|
1161
|
+
* ```
|
|
1162
|
+
*/
|
|
1163
|
+
get shareASaleEvent(): Prisma.ShareASaleEventDelegate<ExtArgs>;
|
|
1164
|
+
|
|
1150
1165
|
/**
|
|
1151
1166
|
* `prisma.creatorSearchFilter`: Exposes CRUD operations for the **CreatorSearchFilter** model.
|
|
1152
1167
|
* Example usage:
|
|
@@ -1784,6 +1799,7 @@ export namespace Prisma {
|
|
|
1784
1799
|
OptInView: 'OptInView',
|
|
1785
1800
|
RakutenActivity: 'RakutenActivity',
|
|
1786
1801
|
ImpactRadiusEvent: 'ImpactRadiusEvent',
|
|
1802
|
+
ShareASaleEvent: 'ShareASaleEvent',
|
|
1787
1803
|
CreatorSearchFilter: 'CreatorSearchFilter',
|
|
1788
1804
|
Sequence: 'Sequence',
|
|
1789
1805
|
SequenceStep: 'SequenceStep',
|
|
@@ -1810,7 +1826,7 @@ export namespace Prisma {
|
|
|
1810
1826
|
|
|
1811
1827
|
export type TypeMap<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
1812
1828
|
meta: {
|
|
1813
|
-
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' | 'creatorSearchFilter' | 'sequence' | 'sequenceStep' | 'sequenceOutboundEmail' | 'sequenceInboundEmail' | 'sequenceImapCheckpoint' | 'shopifyStore' | 'shopifyProduct' | 'shopifyProductVariation' | 'campaignToShopifyProduct'
|
|
1829
|
+
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'
|
|
1814
1830
|
txIsolationLevel: Prisma.TransactionIsolationLevel
|
|
1815
1831
|
},
|
|
1816
1832
|
model: {
|
|
@@ -6084,6 +6100,76 @@ export namespace Prisma {
|
|
|
6084
6100
|
}
|
|
6085
6101
|
}
|
|
6086
6102
|
}
|
|
6103
|
+
ShareASaleEvent: {
|
|
6104
|
+
payload: Prisma.$ShareASaleEventPayload<ExtArgs>
|
|
6105
|
+
fields: Prisma.ShareASaleEventFieldRefs
|
|
6106
|
+
operations: {
|
|
6107
|
+
findUnique: {
|
|
6108
|
+
args: Prisma.ShareASaleEventFindUniqueArgs<ExtArgs>,
|
|
6109
|
+
result: $Utils.PayloadToResult<Prisma.$ShareASaleEventPayload> | null
|
|
6110
|
+
}
|
|
6111
|
+
findUniqueOrThrow: {
|
|
6112
|
+
args: Prisma.ShareASaleEventFindUniqueOrThrowArgs<ExtArgs>,
|
|
6113
|
+
result: $Utils.PayloadToResult<Prisma.$ShareASaleEventPayload>
|
|
6114
|
+
}
|
|
6115
|
+
findFirst: {
|
|
6116
|
+
args: Prisma.ShareASaleEventFindFirstArgs<ExtArgs>,
|
|
6117
|
+
result: $Utils.PayloadToResult<Prisma.$ShareASaleEventPayload> | null
|
|
6118
|
+
}
|
|
6119
|
+
findFirstOrThrow: {
|
|
6120
|
+
args: Prisma.ShareASaleEventFindFirstOrThrowArgs<ExtArgs>,
|
|
6121
|
+
result: $Utils.PayloadToResult<Prisma.$ShareASaleEventPayload>
|
|
6122
|
+
}
|
|
6123
|
+
findMany: {
|
|
6124
|
+
args: Prisma.ShareASaleEventFindManyArgs<ExtArgs>,
|
|
6125
|
+
result: $Utils.PayloadToResult<Prisma.$ShareASaleEventPayload>[]
|
|
6126
|
+
}
|
|
6127
|
+
create: {
|
|
6128
|
+
args: Prisma.ShareASaleEventCreateArgs<ExtArgs>,
|
|
6129
|
+
result: $Utils.PayloadToResult<Prisma.$ShareASaleEventPayload>
|
|
6130
|
+
}
|
|
6131
|
+
createMany: {
|
|
6132
|
+
args: Prisma.ShareASaleEventCreateManyArgs<ExtArgs>,
|
|
6133
|
+
result: Prisma.BatchPayload
|
|
6134
|
+
}
|
|
6135
|
+
createManyAndReturn: {
|
|
6136
|
+
args: Prisma.ShareASaleEventCreateManyAndReturnArgs<ExtArgs>,
|
|
6137
|
+
result: $Utils.PayloadToResult<Prisma.$ShareASaleEventPayload>[]
|
|
6138
|
+
}
|
|
6139
|
+
delete: {
|
|
6140
|
+
args: Prisma.ShareASaleEventDeleteArgs<ExtArgs>,
|
|
6141
|
+
result: $Utils.PayloadToResult<Prisma.$ShareASaleEventPayload>
|
|
6142
|
+
}
|
|
6143
|
+
update: {
|
|
6144
|
+
args: Prisma.ShareASaleEventUpdateArgs<ExtArgs>,
|
|
6145
|
+
result: $Utils.PayloadToResult<Prisma.$ShareASaleEventPayload>
|
|
6146
|
+
}
|
|
6147
|
+
deleteMany: {
|
|
6148
|
+
args: Prisma.ShareASaleEventDeleteManyArgs<ExtArgs>,
|
|
6149
|
+
result: Prisma.BatchPayload
|
|
6150
|
+
}
|
|
6151
|
+
updateMany: {
|
|
6152
|
+
args: Prisma.ShareASaleEventUpdateManyArgs<ExtArgs>,
|
|
6153
|
+
result: Prisma.BatchPayload
|
|
6154
|
+
}
|
|
6155
|
+
upsert: {
|
|
6156
|
+
args: Prisma.ShareASaleEventUpsertArgs<ExtArgs>,
|
|
6157
|
+
result: $Utils.PayloadToResult<Prisma.$ShareASaleEventPayload>
|
|
6158
|
+
}
|
|
6159
|
+
aggregate: {
|
|
6160
|
+
args: Prisma.ShareASaleEventAggregateArgs<ExtArgs>,
|
|
6161
|
+
result: $Utils.Optional<AggregateShareASaleEvent>
|
|
6162
|
+
}
|
|
6163
|
+
groupBy: {
|
|
6164
|
+
args: Prisma.ShareASaleEventGroupByArgs<ExtArgs>,
|
|
6165
|
+
result: $Utils.Optional<ShareASaleEventGroupByOutputType>[]
|
|
6166
|
+
}
|
|
6167
|
+
count: {
|
|
6168
|
+
args: Prisma.ShareASaleEventCountArgs<ExtArgs>,
|
|
6169
|
+
result: $Utils.Optional<ShareASaleEventCountAggregateOutputType> | number
|
|
6170
|
+
}
|
|
6171
|
+
}
|
|
6172
|
+
}
|
|
6087
6173
|
CreatorSearchFilter: {
|
|
6088
6174
|
payload: Prisma.$CreatorSearchFilterPayload<ExtArgs>
|
|
6089
6175
|
fields: Prisma.CreatorSearchFilterFieldRefs
|
|
@@ -7845,6 +7931,7 @@ export namespace Prisma {
|
|
|
7845
7931
|
productListItems: number
|
|
7846
7932
|
ExternalAffiliateClick: number
|
|
7847
7933
|
ImpactRadiusEvent: number
|
|
7934
|
+
ShareASaleEvents: number
|
|
7848
7935
|
}
|
|
7849
7936
|
|
|
7850
7937
|
export type OptInCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -7856,6 +7943,7 @@ export namespace Prisma {
|
|
|
7856
7943
|
productListItems?: boolean | OptInCountOutputTypeCountProductListItemsArgs
|
|
7857
7944
|
ExternalAffiliateClick?: boolean | OptInCountOutputTypeCountExternalAffiliateClickArgs
|
|
7858
7945
|
ImpactRadiusEvent?: boolean | OptInCountOutputTypeCountImpactRadiusEventArgs
|
|
7946
|
+
ShareASaleEvents?: boolean | OptInCountOutputTypeCountShareASaleEventsArgs
|
|
7859
7947
|
}
|
|
7860
7948
|
|
|
7861
7949
|
// Custom InputTypes
|
|
@@ -7925,6 +8013,13 @@ export namespace Prisma {
|
|
|
7925
8013
|
where?: ImpactRadiusEventWhereInput
|
|
7926
8014
|
}
|
|
7927
8015
|
|
|
8016
|
+
/**
|
|
8017
|
+
* OptInCountOutputType without action
|
|
8018
|
+
*/
|
|
8019
|
+
export type OptInCountOutputTypeCountShareASaleEventsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
8020
|
+
where?: ShareASaleEventWhereInput
|
|
8021
|
+
}
|
|
8022
|
+
|
|
7928
8023
|
|
|
7929
8024
|
/**
|
|
7930
8025
|
* Count Type SocialPostCountOutputType
|
|
@@ -46923,6 +47018,7 @@ export namespace Prisma {
|
|
|
46923
47018
|
productListItems?: boolean | OptIn$productListItemsArgs<ExtArgs>
|
|
46924
47019
|
ExternalAffiliateClick?: boolean | OptIn$ExternalAffiliateClickArgs<ExtArgs>
|
|
46925
47020
|
ImpactRadiusEvent?: boolean | OptIn$ImpactRadiusEventArgs<ExtArgs>
|
|
47021
|
+
ShareASaleEvents?: boolean | OptIn$ShareASaleEventsArgs<ExtArgs>
|
|
46926
47022
|
_count?: boolean | OptInCountOutputTypeDefaultArgs<ExtArgs>
|
|
46927
47023
|
}, ExtArgs["result"]["optIn"]>
|
|
46928
47024
|
|
|
@@ -46984,6 +47080,7 @@ export namespace Prisma {
|
|
|
46984
47080
|
productListItems?: boolean | OptIn$productListItemsArgs<ExtArgs>
|
|
46985
47081
|
ExternalAffiliateClick?: boolean | OptIn$ExternalAffiliateClickArgs<ExtArgs>
|
|
46986
47082
|
ImpactRadiusEvent?: boolean | OptIn$ImpactRadiusEventArgs<ExtArgs>
|
|
47083
|
+
ShareASaleEvents?: boolean | OptIn$ShareASaleEventsArgs<ExtArgs>
|
|
46987
47084
|
_count?: boolean | OptInCountOutputTypeDefaultArgs<ExtArgs>
|
|
46988
47085
|
}
|
|
46989
47086
|
export type OptInIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -47007,6 +47104,7 @@ export namespace Prisma {
|
|
|
47007
47104
|
productListItems: Prisma.$OptinToProductListItemPayload<ExtArgs>[]
|
|
47008
47105
|
ExternalAffiliateClick: Prisma.$ExternalAffiliateClickPayload<ExtArgs>[]
|
|
47009
47106
|
ImpactRadiusEvent: Prisma.$ImpactRadiusEventPayload<ExtArgs>[]
|
|
47107
|
+
ShareASaleEvents: Prisma.$ShareASaleEventPayload<ExtArgs>[]
|
|
47010
47108
|
}
|
|
47011
47109
|
scalars: $Extensions.GetPayloadResult<{
|
|
47012
47110
|
id: number
|
|
@@ -47441,6 +47539,8 @@ export namespace Prisma {
|
|
|
47441
47539
|
|
|
47442
47540
|
ImpactRadiusEvent<T extends OptIn$ImpactRadiusEventArgs<ExtArgs> = {}>(args?: Subset<T, OptIn$ImpactRadiusEventArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ImpactRadiusEventPayload<ExtArgs>, T, 'findMany'> | Null>;
|
|
47443
47541
|
|
|
47542
|
+
ShareASaleEvents<T extends OptIn$ShareASaleEventsArgs<ExtArgs> = {}>(args?: Subset<T, OptIn$ShareASaleEventsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ShareASaleEventPayload<ExtArgs>, T, 'findMany'> | Null>;
|
|
47543
|
+
|
|
47444
47544
|
/**
|
|
47445
47545
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
47446
47546
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -47994,6 +48094,26 @@ export namespace Prisma {
|
|
|
47994
48094
|
distinct?: ImpactRadiusEventScalarFieldEnum | ImpactRadiusEventScalarFieldEnum[]
|
|
47995
48095
|
}
|
|
47996
48096
|
|
|
48097
|
+
/**
|
|
48098
|
+
* OptIn.ShareASaleEvents
|
|
48099
|
+
*/
|
|
48100
|
+
export type OptIn$ShareASaleEventsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
48101
|
+
/**
|
|
48102
|
+
* Select specific fields to fetch from the ShareASaleEvent
|
|
48103
|
+
*/
|
|
48104
|
+
select?: ShareASaleEventSelect<ExtArgs> | null
|
|
48105
|
+
/**
|
|
48106
|
+
* Choose, which related nodes to fetch as well
|
|
48107
|
+
*/
|
|
48108
|
+
include?: ShareASaleEventInclude<ExtArgs> | null
|
|
48109
|
+
where?: ShareASaleEventWhereInput
|
|
48110
|
+
orderBy?: ShareASaleEventOrderByWithRelationAndSearchRelevanceInput | ShareASaleEventOrderByWithRelationAndSearchRelevanceInput[]
|
|
48111
|
+
cursor?: ShareASaleEventWhereUniqueInput
|
|
48112
|
+
take?: number
|
|
48113
|
+
skip?: number
|
|
48114
|
+
distinct?: ShareASaleEventScalarFieldEnum | ShareASaleEventScalarFieldEnum[]
|
|
48115
|
+
}
|
|
48116
|
+
|
|
47997
48117
|
/**
|
|
47998
48118
|
* OptIn without action
|
|
47999
48119
|
*/
|
|
@@ -76154,396 +76274,415 @@ export namespace Prisma {
|
|
|
76154
76274
|
|
|
76155
76275
|
|
|
76156
76276
|
/**
|
|
76157
|
-
* Model
|
|
76277
|
+
* Model ShareASaleEvent
|
|
76158
76278
|
*/
|
|
76159
76279
|
|
|
76160
|
-
export type
|
|
76161
|
-
_count:
|
|
76162
|
-
_avg:
|
|
76163
|
-
_sum:
|
|
76164
|
-
_min:
|
|
76165
|
-
_max:
|
|
76280
|
+
export type AggregateShareASaleEvent = {
|
|
76281
|
+
_count: ShareASaleEventCountAggregateOutputType | null
|
|
76282
|
+
_avg: ShareASaleEventAvgAggregateOutputType | null
|
|
76283
|
+
_sum: ShareASaleEventSumAggregateOutputType | null
|
|
76284
|
+
_min: ShareASaleEventMinAggregateOutputType | null
|
|
76285
|
+
_max: ShareASaleEventMaxAggregateOutputType | null
|
|
76166
76286
|
}
|
|
76167
76287
|
|
|
76168
|
-
export type
|
|
76288
|
+
export type ShareASaleEventAvgAggregateOutputType = {
|
|
76169
76289
|
id: number | null
|
|
76170
|
-
|
|
76290
|
+
saleAmount: Decimal | null
|
|
76291
|
+
commission: Decimal | null
|
|
76292
|
+
optInId: number | null
|
|
76171
76293
|
}
|
|
76172
76294
|
|
|
76173
|
-
export type
|
|
76295
|
+
export type ShareASaleEventSumAggregateOutputType = {
|
|
76174
76296
|
id: number | null
|
|
76175
|
-
|
|
76297
|
+
saleAmount: Decimal | null
|
|
76298
|
+
commission: Decimal | null
|
|
76299
|
+
optInId: number | null
|
|
76176
76300
|
}
|
|
76177
76301
|
|
|
76178
|
-
export type
|
|
76302
|
+
export type ShareASaleEventMinAggregateOutputType = {
|
|
76179
76303
|
id: number | null
|
|
76180
|
-
|
|
76181
|
-
|
|
76182
|
-
|
|
76183
|
-
|
|
76304
|
+
transactionId: string | null
|
|
76305
|
+
created: Date | null
|
|
76306
|
+
saleAmount: Decimal | null
|
|
76307
|
+
commission: Decimal | null
|
|
76308
|
+
optInId: number | null
|
|
76184
76309
|
}
|
|
76185
76310
|
|
|
76186
|
-
export type
|
|
76311
|
+
export type ShareASaleEventMaxAggregateOutputType = {
|
|
76187
76312
|
id: number | null
|
|
76188
|
-
|
|
76189
|
-
|
|
76190
|
-
|
|
76191
|
-
|
|
76313
|
+
transactionId: string | null
|
|
76314
|
+
created: Date | null
|
|
76315
|
+
saleAmount: Decimal | null
|
|
76316
|
+
commission: Decimal | null
|
|
76317
|
+
optInId: number | null
|
|
76192
76318
|
}
|
|
76193
76319
|
|
|
76194
|
-
export type
|
|
76320
|
+
export type ShareASaleEventCountAggregateOutputType = {
|
|
76195
76321
|
id: number
|
|
76196
|
-
|
|
76197
|
-
|
|
76198
|
-
|
|
76199
|
-
|
|
76200
|
-
|
|
76322
|
+
transactionId: number
|
|
76323
|
+
created: number
|
|
76324
|
+
saleAmount: number
|
|
76325
|
+
commission: number
|
|
76326
|
+
metaData: number
|
|
76327
|
+
optInId: number
|
|
76201
76328
|
_all: number
|
|
76202
76329
|
}
|
|
76203
76330
|
|
|
76204
76331
|
|
|
76205
|
-
export type
|
|
76332
|
+
export type ShareASaleEventAvgAggregateInputType = {
|
|
76206
76333
|
id?: true
|
|
76207
|
-
|
|
76334
|
+
saleAmount?: true
|
|
76335
|
+
commission?: true
|
|
76336
|
+
optInId?: true
|
|
76208
76337
|
}
|
|
76209
76338
|
|
|
76210
|
-
export type
|
|
76339
|
+
export type ShareASaleEventSumAggregateInputType = {
|
|
76211
76340
|
id?: true
|
|
76212
|
-
|
|
76341
|
+
saleAmount?: true
|
|
76342
|
+
commission?: true
|
|
76343
|
+
optInId?: true
|
|
76213
76344
|
}
|
|
76214
76345
|
|
|
76215
|
-
export type
|
|
76346
|
+
export type ShareASaleEventMinAggregateInputType = {
|
|
76216
76347
|
id?: true
|
|
76217
|
-
|
|
76218
|
-
|
|
76219
|
-
|
|
76220
|
-
|
|
76348
|
+
transactionId?: true
|
|
76349
|
+
created?: true
|
|
76350
|
+
saleAmount?: true
|
|
76351
|
+
commission?: true
|
|
76352
|
+
optInId?: true
|
|
76221
76353
|
}
|
|
76222
76354
|
|
|
76223
|
-
export type
|
|
76355
|
+
export type ShareASaleEventMaxAggregateInputType = {
|
|
76224
76356
|
id?: true
|
|
76225
|
-
|
|
76226
|
-
|
|
76227
|
-
|
|
76228
|
-
|
|
76357
|
+
transactionId?: true
|
|
76358
|
+
created?: true
|
|
76359
|
+
saleAmount?: true
|
|
76360
|
+
commission?: true
|
|
76361
|
+
optInId?: true
|
|
76229
76362
|
}
|
|
76230
76363
|
|
|
76231
|
-
export type
|
|
76364
|
+
export type ShareASaleEventCountAggregateInputType = {
|
|
76232
76365
|
id?: true
|
|
76233
|
-
|
|
76234
|
-
|
|
76235
|
-
|
|
76236
|
-
|
|
76237
|
-
|
|
76366
|
+
transactionId?: true
|
|
76367
|
+
created?: true
|
|
76368
|
+
saleAmount?: true
|
|
76369
|
+
commission?: true
|
|
76370
|
+
metaData?: true
|
|
76371
|
+
optInId?: true
|
|
76238
76372
|
_all?: true
|
|
76239
76373
|
}
|
|
76240
76374
|
|
|
76241
|
-
export type
|
|
76375
|
+
export type ShareASaleEventAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76242
76376
|
/**
|
|
76243
|
-
* Filter which
|
|
76377
|
+
* Filter which ShareASaleEvent to aggregate.
|
|
76244
76378
|
*/
|
|
76245
|
-
where?:
|
|
76379
|
+
where?: ShareASaleEventWhereInput
|
|
76246
76380
|
/**
|
|
76247
76381
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
76248
76382
|
*
|
|
76249
|
-
* Determine the order of
|
|
76383
|
+
* Determine the order of ShareASaleEvents to fetch.
|
|
76250
76384
|
*/
|
|
76251
|
-
orderBy?:
|
|
76385
|
+
orderBy?: ShareASaleEventOrderByWithRelationAndSearchRelevanceInput | ShareASaleEventOrderByWithRelationAndSearchRelevanceInput[]
|
|
76252
76386
|
/**
|
|
76253
76387
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
76254
76388
|
*
|
|
76255
76389
|
* Sets the start position
|
|
76256
76390
|
*/
|
|
76257
|
-
cursor?:
|
|
76391
|
+
cursor?: ShareASaleEventWhereUniqueInput
|
|
76258
76392
|
/**
|
|
76259
76393
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
76260
76394
|
*
|
|
76261
|
-
* Take `±n`
|
|
76395
|
+
* Take `±n` ShareASaleEvents from the position of the cursor.
|
|
76262
76396
|
*/
|
|
76263
76397
|
take?: number
|
|
76264
76398
|
/**
|
|
76265
76399
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
76266
76400
|
*
|
|
76267
|
-
* Skip the first `n`
|
|
76401
|
+
* Skip the first `n` ShareASaleEvents.
|
|
76268
76402
|
*/
|
|
76269
76403
|
skip?: number
|
|
76270
76404
|
/**
|
|
76271
76405
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
76272
76406
|
*
|
|
76273
|
-
* Count returned
|
|
76407
|
+
* Count returned ShareASaleEvents
|
|
76274
76408
|
**/
|
|
76275
|
-
_count?: true |
|
|
76409
|
+
_count?: true | ShareASaleEventCountAggregateInputType
|
|
76276
76410
|
/**
|
|
76277
76411
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
76278
76412
|
*
|
|
76279
76413
|
* Select which fields to average
|
|
76280
76414
|
**/
|
|
76281
|
-
_avg?:
|
|
76415
|
+
_avg?: ShareASaleEventAvgAggregateInputType
|
|
76282
76416
|
/**
|
|
76283
76417
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
76284
76418
|
*
|
|
76285
76419
|
* Select which fields to sum
|
|
76286
76420
|
**/
|
|
76287
|
-
_sum?:
|
|
76421
|
+
_sum?: ShareASaleEventSumAggregateInputType
|
|
76288
76422
|
/**
|
|
76289
76423
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
76290
76424
|
*
|
|
76291
76425
|
* Select which fields to find the minimum value
|
|
76292
76426
|
**/
|
|
76293
|
-
_min?:
|
|
76427
|
+
_min?: ShareASaleEventMinAggregateInputType
|
|
76294
76428
|
/**
|
|
76295
76429
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
76296
76430
|
*
|
|
76297
76431
|
* Select which fields to find the maximum value
|
|
76298
76432
|
**/
|
|
76299
|
-
_max?:
|
|
76433
|
+
_max?: ShareASaleEventMaxAggregateInputType
|
|
76300
76434
|
}
|
|
76301
76435
|
|
|
76302
|
-
export type
|
|
76303
|
-
[P in keyof T & keyof
|
|
76436
|
+
export type GetShareASaleEventAggregateType<T extends ShareASaleEventAggregateArgs> = {
|
|
76437
|
+
[P in keyof T & keyof AggregateShareASaleEvent]: P extends '_count' | 'count'
|
|
76304
76438
|
? T[P] extends true
|
|
76305
76439
|
? number
|
|
76306
|
-
: GetScalarType<T[P],
|
|
76307
|
-
: GetScalarType<T[P],
|
|
76440
|
+
: GetScalarType<T[P], AggregateShareASaleEvent[P]>
|
|
76441
|
+
: GetScalarType<T[P], AggregateShareASaleEvent[P]>
|
|
76308
76442
|
}
|
|
76309
76443
|
|
|
76310
76444
|
|
|
76311
76445
|
|
|
76312
76446
|
|
|
76313
|
-
export type
|
|
76314
|
-
where?:
|
|
76315
|
-
orderBy?:
|
|
76316
|
-
by:
|
|
76317
|
-
having?:
|
|
76447
|
+
export type ShareASaleEventGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76448
|
+
where?: ShareASaleEventWhereInput
|
|
76449
|
+
orderBy?: ShareASaleEventOrderByWithAggregationInput | ShareASaleEventOrderByWithAggregationInput[]
|
|
76450
|
+
by: ShareASaleEventScalarFieldEnum[] | ShareASaleEventScalarFieldEnum
|
|
76451
|
+
having?: ShareASaleEventScalarWhereWithAggregatesInput
|
|
76318
76452
|
take?: number
|
|
76319
76453
|
skip?: number
|
|
76320
|
-
_count?:
|
|
76321
|
-
_avg?:
|
|
76322
|
-
_sum?:
|
|
76323
|
-
_min?:
|
|
76324
|
-
_max?:
|
|
76454
|
+
_count?: ShareASaleEventCountAggregateInputType | true
|
|
76455
|
+
_avg?: ShareASaleEventAvgAggregateInputType
|
|
76456
|
+
_sum?: ShareASaleEventSumAggregateInputType
|
|
76457
|
+
_min?: ShareASaleEventMinAggregateInputType
|
|
76458
|
+
_max?: ShareASaleEventMaxAggregateInputType
|
|
76325
76459
|
}
|
|
76326
76460
|
|
|
76327
|
-
export type
|
|
76461
|
+
export type ShareASaleEventGroupByOutputType = {
|
|
76328
76462
|
id: number
|
|
76329
|
-
|
|
76330
|
-
|
|
76331
|
-
|
|
76332
|
-
|
|
76333
|
-
|
|
76334
|
-
|
|
76335
|
-
|
|
76336
|
-
|
|
76337
|
-
|
|
76338
|
-
|
|
76463
|
+
transactionId: string | null
|
|
76464
|
+
created: Date
|
|
76465
|
+
saleAmount: Decimal | null
|
|
76466
|
+
commission: Decimal | null
|
|
76467
|
+
metaData: JsonValue
|
|
76468
|
+
optInId: number | null
|
|
76469
|
+
_count: ShareASaleEventCountAggregateOutputType | null
|
|
76470
|
+
_avg: ShareASaleEventAvgAggregateOutputType | null
|
|
76471
|
+
_sum: ShareASaleEventSumAggregateOutputType | null
|
|
76472
|
+
_min: ShareASaleEventMinAggregateOutputType | null
|
|
76473
|
+
_max: ShareASaleEventMaxAggregateOutputType | null
|
|
76339
76474
|
}
|
|
76340
76475
|
|
|
76341
|
-
type
|
|
76476
|
+
type GetShareASaleEventGroupByPayload<T extends ShareASaleEventGroupByArgs> = Prisma.PrismaPromise<
|
|
76342
76477
|
Array<
|
|
76343
|
-
PickEnumerable<
|
|
76478
|
+
PickEnumerable<ShareASaleEventGroupByOutputType, T['by']> &
|
|
76344
76479
|
{
|
|
76345
|
-
[P in ((keyof T) & (keyof
|
|
76480
|
+
[P in ((keyof T) & (keyof ShareASaleEventGroupByOutputType))]: P extends '_count'
|
|
76346
76481
|
? T[P] extends boolean
|
|
76347
76482
|
? number
|
|
76348
|
-
: GetScalarType<T[P],
|
|
76349
|
-
: GetScalarType<T[P],
|
|
76483
|
+
: GetScalarType<T[P], ShareASaleEventGroupByOutputType[P]>
|
|
76484
|
+
: GetScalarType<T[P], ShareASaleEventGroupByOutputType[P]>
|
|
76350
76485
|
}
|
|
76351
76486
|
>
|
|
76352
76487
|
>
|
|
76353
76488
|
|
|
76354
76489
|
|
|
76355
|
-
export type
|
|
76490
|
+
export type ShareASaleEventSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
76356
76491
|
id?: boolean
|
|
76357
|
-
|
|
76358
|
-
|
|
76359
|
-
|
|
76360
|
-
|
|
76361
|
-
|
|
76362
|
-
|
|
76363
|
-
|
|
76492
|
+
transactionId?: boolean
|
|
76493
|
+
created?: boolean
|
|
76494
|
+
saleAmount?: boolean
|
|
76495
|
+
commission?: boolean
|
|
76496
|
+
metaData?: boolean
|
|
76497
|
+
optInId?: boolean
|
|
76498
|
+
optIn?: boolean | ShareASaleEvent$optInArgs<ExtArgs>
|
|
76499
|
+
}, ExtArgs["result"]["shareASaleEvent"]>
|
|
76364
76500
|
|
|
76365
|
-
export type
|
|
76501
|
+
export type ShareASaleEventSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
76366
76502
|
id?: boolean
|
|
76367
|
-
|
|
76368
|
-
|
|
76369
|
-
|
|
76370
|
-
|
|
76371
|
-
|
|
76372
|
-
|
|
76373
|
-
|
|
76503
|
+
transactionId?: boolean
|
|
76504
|
+
created?: boolean
|
|
76505
|
+
saleAmount?: boolean
|
|
76506
|
+
commission?: boolean
|
|
76507
|
+
metaData?: boolean
|
|
76508
|
+
optInId?: boolean
|
|
76509
|
+
optIn?: boolean | ShareASaleEvent$optInArgs<ExtArgs>
|
|
76510
|
+
}, ExtArgs["result"]["shareASaleEvent"]>
|
|
76374
76511
|
|
|
76375
|
-
export type
|
|
76512
|
+
export type ShareASaleEventSelectScalar = {
|
|
76376
76513
|
id?: boolean
|
|
76377
|
-
|
|
76378
|
-
|
|
76379
|
-
|
|
76380
|
-
|
|
76381
|
-
|
|
76514
|
+
transactionId?: boolean
|
|
76515
|
+
created?: boolean
|
|
76516
|
+
saleAmount?: boolean
|
|
76517
|
+
commission?: boolean
|
|
76518
|
+
metaData?: boolean
|
|
76519
|
+
optInId?: boolean
|
|
76382
76520
|
}
|
|
76383
76521
|
|
|
76384
|
-
export type
|
|
76385
|
-
|
|
76522
|
+
export type ShareASaleEventInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76523
|
+
optIn?: boolean | ShareASaleEvent$optInArgs<ExtArgs>
|
|
76386
76524
|
}
|
|
76387
|
-
export type
|
|
76388
|
-
|
|
76525
|
+
export type ShareASaleEventIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76526
|
+
optIn?: boolean | ShareASaleEvent$optInArgs<ExtArgs>
|
|
76389
76527
|
}
|
|
76390
76528
|
|
|
76391
|
-
export type $
|
|
76392
|
-
name: "
|
|
76529
|
+
export type $ShareASaleEventPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76530
|
+
name: "ShareASaleEvent"
|
|
76393
76531
|
objects: {
|
|
76394
|
-
|
|
76532
|
+
optIn: Prisma.$OptInPayload<ExtArgs> | null
|
|
76395
76533
|
}
|
|
76396
76534
|
scalars: $Extensions.GetPayloadResult<{
|
|
76397
76535
|
id: number
|
|
76398
|
-
|
|
76399
|
-
|
|
76400
|
-
|
|
76401
|
-
|
|
76402
|
-
|
|
76403
|
-
|
|
76536
|
+
transactionId: string | null
|
|
76537
|
+
created: Date
|
|
76538
|
+
saleAmount: Prisma.Decimal | null
|
|
76539
|
+
commission: Prisma.Decimal | null
|
|
76540
|
+
metaData: Prisma.JsonValue
|
|
76541
|
+
optInId: number | null
|
|
76542
|
+
}, ExtArgs["result"]["shareASaleEvent"]>
|
|
76404
76543
|
composites: {}
|
|
76405
76544
|
}
|
|
76406
76545
|
|
|
76407
|
-
type
|
|
76546
|
+
type ShareASaleEventGetPayload<S extends boolean | null | undefined | ShareASaleEventDefaultArgs> = $Result.GetResult<Prisma.$ShareASaleEventPayload, S>
|
|
76408
76547
|
|
|
76409
|
-
type
|
|
76410
|
-
Omit<
|
|
76411
|
-
select?:
|
|
76548
|
+
type ShareASaleEventCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
76549
|
+
Omit<ShareASaleEventFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
76550
|
+
select?: ShareASaleEventCountAggregateInputType | true
|
|
76412
76551
|
}
|
|
76413
76552
|
|
|
76414
|
-
export interface
|
|
76415
|
-
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['
|
|
76553
|
+
export interface ShareASaleEventDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
76554
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['ShareASaleEvent'], meta: { name: 'ShareASaleEvent' } }
|
|
76416
76555
|
/**
|
|
76417
|
-
* Find zero or one
|
|
76418
|
-
* @param {
|
|
76556
|
+
* Find zero or one ShareASaleEvent that matches the filter.
|
|
76557
|
+
* @param {ShareASaleEventFindUniqueArgs} args - Arguments to find a ShareASaleEvent
|
|
76419
76558
|
* @example
|
|
76420
|
-
* // Get one
|
|
76421
|
-
* const
|
|
76559
|
+
* // Get one ShareASaleEvent
|
|
76560
|
+
* const shareASaleEvent = await prisma.shareASaleEvent.findUnique({
|
|
76422
76561
|
* where: {
|
|
76423
76562
|
* // ... provide filter here
|
|
76424
76563
|
* }
|
|
76425
76564
|
* })
|
|
76426
76565
|
**/
|
|
76427
|
-
findUnique<T extends
|
|
76428
|
-
args: SelectSubset<T,
|
|
76429
|
-
):
|
|
76566
|
+
findUnique<T extends ShareASaleEventFindUniqueArgs<ExtArgs>>(
|
|
76567
|
+
args: SelectSubset<T, ShareASaleEventFindUniqueArgs<ExtArgs>>
|
|
76568
|
+
): Prisma__ShareASaleEventClient<$Result.GetResult<Prisma.$ShareASaleEventPayload<ExtArgs>, T, 'findUnique'> | null, null, ExtArgs>
|
|
76430
76569
|
|
|
76431
76570
|
/**
|
|
76432
|
-
* Find one
|
|
76571
|
+
* Find one ShareASaleEvent that matches the filter or throw an error with `error.code='P2025'`
|
|
76433
76572
|
* if no matches were found.
|
|
76434
|
-
* @param {
|
|
76573
|
+
* @param {ShareASaleEventFindUniqueOrThrowArgs} args - Arguments to find a ShareASaleEvent
|
|
76435
76574
|
* @example
|
|
76436
|
-
* // Get one
|
|
76437
|
-
* const
|
|
76575
|
+
* // Get one ShareASaleEvent
|
|
76576
|
+
* const shareASaleEvent = await prisma.shareASaleEvent.findUniqueOrThrow({
|
|
76438
76577
|
* where: {
|
|
76439
76578
|
* // ... provide filter here
|
|
76440
76579
|
* }
|
|
76441
76580
|
* })
|
|
76442
76581
|
**/
|
|
76443
|
-
findUniqueOrThrow<T extends
|
|
76444
|
-
args?: SelectSubset<T,
|
|
76445
|
-
):
|
|
76582
|
+
findUniqueOrThrow<T extends ShareASaleEventFindUniqueOrThrowArgs<ExtArgs>>(
|
|
76583
|
+
args?: SelectSubset<T, ShareASaleEventFindUniqueOrThrowArgs<ExtArgs>>
|
|
76584
|
+
): Prisma__ShareASaleEventClient<$Result.GetResult<Prisma.$ShareASaleEventPayload<ExtArgs>, T, 'findUniqueOrThrow'>, never, ExtArgs>
|
|
76446
76585
|
|
|
76447
76586
|
/**
|
|
76448
|
-
* Find the first
|
|
76587
|
+
* Find the first ShareASaleEvent that matches the filter.
|
|
76449
76588
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
76450
76589
|
* Read more here: https://pris.ly/d/null-undefined
|
|
76451
|
-
* @param {
|
|
76590
|
+
* @param {ShareASaleEventFindFirstArgs} args - Arguments to find a ShareASaleEvent
|
|
76452
76591
|
* @example
|
|
76453
|
-
* // Get one
|
|
76454
|
-
* const
|
|
76592
|
+
* // Get one ShareASaleEvent
|
|
76593
|
+
* const shareASaleEvent = await prisma.shareASaleEvent.findFirst({
|
|
76455
76594
|
* where: {
|
|
76456
76595
|
* // ... provide filter here
|
|
76457
76596
|
* }
|
|
76458
76597
|
* })
|
|
76459
76598
|
**/
|
|
76460
|
-
findFirst<T extends
|
|
76461
|
-
args?: SelectSubset<T,
|
|
76462
|
-
):
|
|
76599
|
+
findFirst<T extends ShareASaleEventFindFirstArgs<ExtArgs>>(
|
|
76600
|
+
args?: SelectSubset<T, ShareASaleEventFindFirstArgs<ExtArgs>>
|
|
76601
|
+
): Prisma__ShareASaleEventClient<$Result.GetResult<Prisma.$ShareASaleEventPayload<ExtArgs>, T, 'findFirst'> | null, null, ExtArgs>
|
|
76463
76602
|
|
|
76464
76603
|
/**
|
|
76465
|
-
* Find the first
|
|
76604
|
+
* Find the first ShareASaleEvent that matches the filter or
|
|
76466
76605
|
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
76467
76606
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
76468
76607
|
* Read more here: https://pris.ly/d/null-undefined
|
|
76469
|
-
* @param {
|
|
76608
|
+
* @param {ShareASaleEventFindFirstOrThrowArgs} args - Arguments to find a ShareASaleEvent
|
|
76470
76609
|
* @example
|
|
76471
|
-
* // Get one
|
|
76472
|
-
* const
|
|
76610
|
+
* // Get one ShareASaleEvent
|
|
76611
|
+
* const shareASaleEvent = await prisma.shareASaleEvent.findFirstOrThrow({
|
|
76473
76612
|
* where: {
|
|
76474
76613
|
* // ... provide filter here
|
|
76475
76614
|
* }
|
|
76476
76615
|
* })
|
|
76477
76616
|
**/
|
|
76478
|
-
findFirstOrThrow<T extends
|
|
76479
|
-
args?: SelectSubset<T,
|
|
76480
|
-
):
|
|
76617
|
+
findFirstOrThrow<T extends ShareASaleEventFindFirstOrThrowArgs<ExtArgs>>(
|
|
76618
|
+
args?: SelectSubset<T, ShareASaleEventFindFirstOrThrowArgs<ExtArgs>>
|
|
76619
|
+
): Prisma__ShareASaleEventClient<$Result.GetResult<Prisma.$ShareASaleEventPayload<ExtArgs>, T, 'findFirstOrThrow'>, never, ExtArgs>
|
|
76481
76620
|
|
|
76482
76621
|
/**
|
|
76483
|
-
* Find zero or more
|
|
76622
|
+
* Find zero or more ShareASaleEvents that matches the filter.
|
|
76484
76623
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
76485
76624
|
* Read more here: https://pris.ly/d/null-undefined
|
|
76486
|
-
* @param {
|
|
76625
|
+
* @param {ShareASaleEventFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
76487
76626
|
* @example
|
|
76488
|
-
* // Get all
|
|
76489
|
-
* const
|
|
76627
|
+
* // Get all ShareASaleEvents
|
|
76628
|
+
* const shareASaleEvents = await prisma.shareASaleEvent.findMany()
|
|
76490
76629
|
*
|
|
76491
|
-
* // Get first 10
|
|
76492
|
-
* const
|
|
76630
|
+
* // Get first 10 ShareASaleEvents
|
|
76631
|
+
* const shareASaleEvents = await prisma.shareASaleEvent.findMany({ take: 10 })
|
|
76493
76632
|
*
|
|
76494
76633
|
* // Only select the `id`
|
|
76495
|
-
* const
|
|
76634
|
+
* const shareASaleEventWithIdOnly = await prisma.shareASaleEvent.findMany({ select: { id: true } })
|
|
76496
76635
|
*
|
|
76497
76636
|
**/
|
|
76498
|
-
findMany<T extends
|
|
76499
|
-
args?: SelectSubset<T,
|
|
76500
|
-
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$
|
|
76637
|
+
findMany<T extends ShareASaleEventFindManyArgs<ExtArgs>>(
|
|
76638
|
+
args?: SelectSubset<T, ShareASaleEventFindManyArgs<ExtArgs>>
|
|
76639
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ShareASaleEventPayload<ExtArgs>, T, 'findMany'>>
|
|
76501
76640
|
|
|
76502
76641
|
/**
|
|
76503
|
-
* Create a
|
|
76504
|
-
* @param {
|
|
76642
|
+
* Create a ShareASaleEvent.
|
|
76643
|
+
* @param {ShareASaleEventCreateArgs} args - Arguments to create a ShareASaleEvent.
|
|
76505
76644
|
* @example
|
|
76506
|
-
* // Create one
|
|
76507
|
-
* const
|
|
76645
|
+
* // Create one ShareASaleEvent
|
|
76646
|
+
* const ShareASaleEvent = await prisma.shareASaleEvent.create({
|
|
76508
76647
|
* data: {
|
|
76509
|
-
* // ... data to create a
|
|
76648
|
+
* // ... data to create a ShareASaleEvent
|
|
76510
76649
|
* }
|
|
76511
76650
|
* })
|
|
76512
76651
|
*
|
|
76513
76652
|
**/
|
|
76514
|
-
create<T extends
|
|
76515
|
-
args: SelectSubset<T,
|
|
76516
|
-
):
|
|
76653
|
+
create<T extends ShareASaleEventCreateArgs<ExtArgs>>(
|
|
76654
|
+
args: SelectSubset<T, ShareASaleEventCreateArgs<ExtArgs>>
|
|
76655
|
+
): Prisma__ShareASaleEventClient<$Result.GetResult<Prisma.$ShareASaleEventPayload<ExtArgs>, T, 'create'>, never, ExtArgs>
|
|
76517
76656
|
|
|
76518
76657
|
/**
|
|
76519
|
-
* Create many
|
|
76520
|
-
* @param {
|
|
76658
|
+
* Create many ShareASaleEvents.
|
|
76659
|
+
* @param {ShareASaleEventCreateManyArgs} args - Arguments to create many ShareASaleEvents.
|
|
76521
76660
|
* @example
|
|
76522
|
-
* // Create many
|
|
76523
|
-
* const
|
|
76661
|
+
* // Create many ShareASaleEvents
|
|
76662
|
+
* const shareASaleEvent = await prisma.shareASaleEvent.createMany({
|
|
76524
76663
|
* data: [
|
|
76525
76664
|
* // ... provide data here
|
|
76526
76665
|
* ]
|
|
76527
76666
|
* })
|
|
76528
76667
|
*
|
|
76529
76668
|
**/
|
|
76530
|
-
createMany<T extends
|
|
76531
|
-
args?: SelectSubset<T,
|
|
76669
|
+
createMany<T extends ShareASaleEventCreateManyArgs<ExtArgs>>(
|
|
76670
|
+
args?: SelectSubset<T, ShareASaleEventCreateManyArgs<ExtArgs>>
|
|
76532
76671
|
): Prisma.PrismaPromise<BatchPayload>
|
|
76533
76672
|
|
|
76534
76673
|
/**
|
|
76535
|
-
* Create many
|
|
76536
|
-
* @param {
|
|
76674
|
+
* Create many ShareASaleEvents and returns the data saved in the database.
|
|
76675
|
+
* @param {ShareASaleEventCreateManyAndReturnArgs} args - Arguments to create many ShareASaleEvents.
|
|
76537
76676
|
* @example
|
|
76538
|
-
* // Create many
|
|
76539
|
-
* const
|
|
76677
|
+
* // Create many ShareASaleEvents
|
|
76678
|
+
* const shareASaleEvent = await prisma.shareASaleEvent.createManyAndReturn({
|
|
76540
76679
|
* data: [
|
|
76541
76680
|
* // ... provide data here
|
|
76542
76681
|
* ]
|
|
76543
76682
|
* })
|
|
76544
76683
|
*
|
|
76545
|
-
* // Create many
|
|
76546
|
-
* const
|
|
76684
|
+
* // Create many ShareASaleEvents and only return the `id`
|
|
76685
|
+
* const shareASaleEventWithIdOnly = await prisma.shareASaleEvent.createManyAndReturn({
|
|
76547
76686
|
* select: { id: true },
|
|
76548
76687
|
* data: [
|
|
76549
76688
|
* // ... provide data here
|
|
@@ -76553,32 +76692,32 @@ export namespace Prisma {
|
|
|
76553
76692
|
* Read more here: https://pris.ly/d/null-undefined
|
|
76554
76693
|
*
|
|
76555
76694
|
**/
|
|
76556
|
-
createManyAndReturn<T extends
|
|
76557
|
-
args?: SelectSubset<T,
|
|
76558
|
-
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$
|
|
76695
|
+
createManyAndReturn<T extends ShareASaleEventCreateManyAndReturnArgs<ExtArgs>>(
|
|
76696
|
+
args?: SelectSubset<T, ShareASaleEventCreateManyAndReturnArgs<ExtArgs>>
|
|
76697
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ShareASaleEventPayload<ExtArgs>, T, 'createManyAndReturn'>>
|
|
76559
76698
|
|
|
76560
76699
|
/**
|
|
76561
|
-
* Delete a
|
|
76562
|
-
* @param {
|
|
76700
|
+
* Delete a ShareASaleEvent.
|
|
76701
|
+
* @param {ShareASaleEventDeleteArgs} args - Arguments to delete one ShareASaleEvent.
|
|
76563
76702
|
* @example
|
|
76564
|
-
* // Delete one
|
|
76565
|
-
* const
|
|
76703
|
+
* // Delete one ShareASaleEvent
|
|
76704
|
+
* const ShareASaleEvent = await prisma.shareASaleEvent.delete({
|
|
76566
76705
|
* where: {
|
|
76567
|
-
* // ... filter to delete one
|
|
76706
|
+
* // ... filter to delete one ShareASaleEvent
|
|
76568
76707
|
* }
|
|
76569
76708
|
* })
|
|
76570
76709
|
*
|
|
76571
76710
|
**/
|
|
76572
|
-
delete<T extends
|
|
76573
|
-
args: SelectSubset<T,
|
|
76574
|
-
):
|
|
76711
|
+
delete<T extends ShareASaleEventDeleteArgs<ExtArgs>>(
|
|
76712
|
+
args: SelectSubset<T, ShareASaleEventDeleteArgs<ExtArgs>>
|
|
76713
|
+
): Prisma__ShareASaleEventClient<$Result.GetResult<Prisma.$ShareASaleEventPayload<ExtArgs>, T, 'delete'>, never, ExtArgs>
|
|
76575
76714
|
|
|
76576
76715
|
/**
|
|
76577
|
-
* Update one
|
|
76578
|
-
* @param {
|
|
76716
|
+
* Update one ShareASaleEvent.
|
|
76717
|
+
* @param {ShareASaleEventUpdateArgs} args - Arguments to update one ShareASaleEvent.
|
|
76579
76718
|
* @example
|
|
76580
|
-
* // Update one
|
|
76581
|
-
* const
|
|
76719
|
+
* // Update one ShareASaleEvent
|
|
76720
|
+
* const shareASaleEvent = await prisma.shareASaleEvent.update({
|
|
76582
76721
|
* where: {
|
|
76583
76722
|
* // ... provide filter here
|
|
76584
76723
|
* },
|
|
@@ -76588,34 +76727,34 @@ export namespace Prisma {
|
|
|
76588
76727
|
* })
|
|
76589
76728
|
*
|
|
76590
76729
|
**/
|
|
76591
|
-
update<T extends
|
|
76592
|
-
args: SelectSubset<T,
|
|
76593
|
-
):
|
|
76730
|
+
update<T extends ShareASaleEventUpdateArgs<ExtArgs>>(
|
|
76731
|
+
args: SelectSubset<T, ShareASaleEventUpdateArgs<ExtArgs>>
|
|
76732
|
+
): Prisma__ShareASaleEventClient<$Result.GetResult<Prisma.$ShareASaleEventPayload<ExtArgs>, T, 'update'>, never, ExtArgs>
|
|
76594
76733
|
|
|
76595
76734
|
/**
|
|
76596
|
-
* Delete zero or more
|
|
76597
|
-
* @param {
|
|
76735
|
+
* Delete zero or more ShareASaleEvents.
|
|
76736
|
+
* @param {ShareASaleEventDeleteManyArgs} args - Arguments to filter ShareASaleEvents to delete.
|
|
76598
76737
|
* @example
|
|
76599
|
-
* // Delete a few
|
|
76600
|
-
* const { count } = await prisma.
|
|
76738
|
+
* // Delete a few ShareASaleEvents
|
|
76739
|
+
* const { count } = await prisma.shareASaleEvent.deleteMany({
|
|
76601
76740
|
* where: {
|
|
76602
76741
|
* // ... provide filter here
|
|
76603
76742
|
* }
|
|
76604
76743
|
* })
|
|
76605
76744
|
*
|
|
76606
76745
|
**/
|
|
76607
|
-
deleteMany<T extends
|
|
76608
|
-
args?: SelectSubset<T,
|
|
76746
|
+
deleteMany<T extends ShareASaleEventDeleteManyArgs<ExtArgs>>(
|
|
76747
|
+
args?: SelectSubset<T, ShareASaleEventDeleteManyArgs<ExtArgs>>
|
|
76609
76748
|
): Prisma.PrismaPromise<BatchPayload>
|
|
76610
76749
|
|
|
76611
76750
|
/**
|
|
76612
|
-
* Update zero or more
|
|
76751
|
+
* Update zero or more ShareASaleEvents.
|
|
76613
76752
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
76614
76753
|
* Read more here: https://pris.ly/d/null-undefined
|
|
76615
|
-
* @param {
|
|
76754
|
+
* @param {ShareASaleEventUpdateManyArgs} args - Arguments to update one or more rows.
|
|
76616
76755
|
* @example
|
|
76617
|
-
* // Update many
|
|
76618
|
-
* const
|
|
76756
|
+
* // Update many ShareASaleEvents
|
|
76757
|
+
* const shareASaleEvent = await prisma.shareASaleEvent.updateMany({
|
|
76619
76758
|
* where: {
|
|
76620
76759
|
* // ... provide filter here
|
|
76621
76760
|
* },
|
|
@@ -76625,59 +76764,59 @@ export namespace Prisma {
|
|
|
76625
76764
|
* })
|
|
76626
76765
|
*
|
|
76627
76766
|
**/
|
|
76628
|
-
updateMany<T extends
|
|
76629
|
-
args: SelectSubset<T,
|
|
76767
|
+
updateMany<T extends ShareASaleEventUpdateManyArgs<ExtArgs>>(
|
|
76768
|
+
args: SelectSubset<T, ShareASaleEventUpdateManyArgs<ExtArgs>>
|
|
76630
76769
|
): Prisma.PrismaPromise<BatchPayload>
|
|
76631
76770
|
|
|
76632
76771
|
/**
|
|
76633
|
-
* Create or update one
|
|
76634
|
-
* @param {
|
|
76772
|
+
* Create or update one ShareASaleEvent.
|
|
76773
|
+
* @param {ShareASaleEventUpsertArgs} args - Arguments to update or create a ShareASaleEvent.
|
|
76635
76774
|
* @example
|
|
76636
|
-
* // Update or create a
|
|
76637
|
-
* const
|
|
76775
|
+
* // Update or create a ShareASaleEvent
|
|
76776
|
+
* const shareASaleEvent = await prisma.shareASaleEvent.upsert({
|
|
76638
76777
|
* create: {
|
|
76639
|
-
* // ... data to create a
|
|
76778
|
+
* // ... data to create a ShareASaleEvent
|
|
76640
76779
|
* },
|
|
76641
76780
|
* update: {
|
|
76642
76781
|
* // ... in case it already exists, update
|
|
76643
76782
|
* },
|
|
76644
76783
|
* where: {
|
|
76645
|
-
* // ... the filter for the
|
|
76784
|
+
* // ... the filter for the ShareASaleEvent we want to update
|
|
76646
76785
|
* }
|
|
76647
76786
|
* })
|
|
76648
76787
|
**/
|
|
76649
|
-
upsert<T extends
|
|
76650
|
-
args: SelectSubset<T,
|
|
76651
|
-
):
|
|
76788
|
+
upsert<T extends ShareASaleEventUpsertArgs<ExtArgs>>(
|
|
76789
|
+
args: SelectSubset<T, ShareASaleEventUpsertArgs<ExtArgs>>
|
|
76790
|
+
): Prisma__ShareASaleEventClient<$Result.GetResult<Prisma.$ShareASaleEventPayload<ExtArgs>, T, 'upsert'>, never, ExtArgs>
|
|
76652
76791
|
|
|
76653
76792
|
/**
|
|
76654
|
-
* Count the number of
|
|
76793
|
+
* Count the number of ShareASaleEvents.
|
|
76655
76794
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
76656
76795
|
* Read more here: https://pris.ly/d/null-undefined
|
|
76657
|
-
* @param {
|
|
76796
|
+
* @param {ShareASaleEventCountArgs} args - Arguments to filter ShareASaleEvents to count.
|
|
76658
76797
|
* @example
|
|
76659
|
-
* // Count the number of
|
|
76660
|
-
* const count = await prisma.
|
|
76798
|
+
* // Count the number of ShareASaleEvents
|
|
76799
|
+
* const count = await prisma.shareASaleEvent.count({
|
|
76661
76800
|
* where: {
|
|
76662
|
-
* // ... the filter for the
|
|
76801
|
+
* // ... the filter for the ShareASaleEvents we want to count
|
|
76663
76802
|
* }
|
|
76664
76803
|
* })
|
|
76665
76804
|
**/
|
|
76666
|
-
count<T extends
|
|
76667
|
-
args?: Subset<T,
|
|
76805
|
+
count<T extends ShareASaleEventCountArgs>(
|
|
76806
|
+
args?: Subset<T, ShareASaleEventCountArgs>,
|
|
76668
76807
|
): Prisma.PrismaPromise<
|
|
76669
76808
|
T extends $Utils.Record<'select', any>
|
|
76670
76809
|
? T['select'] extends true
|
|
76671
76810
|
? number
|
|
76672
|
-
: GetScalarType<T['select'],
|
|
76811
|
+
: GetScalarType<T['select'], ShareASaleEventCountAggregateOutputType>
|
|
76673
76812
|
: number
|
|
76674
76813
|
>
|
|
76675
76814
|
|
|
76676
76815
|
/**
|
|
76677
|
-
* Allows you to perform aggregations operations on a
|
|
76816
|
+
* Allows you to perform aggregations operations on a ShareASaleEvent.
|
|
76678
76817
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
76679
76818
|
* Read more here: https://pris.ly/d/null-undefined
|
|
76680
|
-
* @param {
|
|
76819
|
+
* @param {ShareASaleEventAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
76681
76820
|
* @example
|
|
76682
76821
|
* // Ordered by age ascending
|
|
76683
76822
|
* // Where email contains prisma.io
|
|
@@ -76697,13 +76836,13 @@ export namespace Prisma {
|
|
|
76697
76836
|
* take: 10,
|
|
76698
76837
|
* })
|
|
76699
76838
|
**/
|
|
76700
|
-
aggregate<T extends
|
|
76839
|
+
aggregate<T extends ShareASaleEventAggregateArgs>(args: Subset<T, ShareASaleEventAggregateArgs>): Prisma.PrismaPromise<GetShareASaleEventAggregateType<T>>
|
|
76701
76840
|
|
|
76702
76841
|
/**
|
|
76703
|
-
* Group by
|
|
76842
|
+
* Group by ShareASaleEvent.
|
|
76704
76843
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
76705
76844
|
* Read more here: https://pris.ly/d/null-undefined
|
|
76706
|
-
* @param {
|
|
76845
|
+
* @param {ShareASaleEventGroupByArgs} args - Group by arguments.
|
|
76707
76846
|
* @example
|
|
76708
76847
|
* // Group by city, order by createdAt, get count
|
|
76709
76848
|
* const result = await prisma.user.groupBy({
|
|
@@ -76718,14 +76857,1035 @@ export namespace Prisma {
|
|
|
76718
76857
|
*
|
|
76719
76858
|
**/
|
|
76720
76859
|
groupBy<
|
|
76721
|
-
T extends
|
|
76860
|
+
T extends ShareASaleEventGroupByArgs,
|
|
76722
76861
|
HasSelectOrTake extends Or<
|
|
76723
76862
|
Extends<'skip', Keys<T>>,
|
|
76724
76863
|
Extends<'take', Keys<T>>
|
|
76725
76864
|
>,
|
|
76726
76865
|
OrderByArg extends True extends HasSelectOrTake
|
|
76727
|
-
? { orderBy:
|
|
76728
|
-
: { orderBy?:
|
|
76866
|
+
? { orderBy: ShareASaleEventGroupByArgs['orderBy'] }
|
|
76867
|
+
: { orderBy?: ShareASaleEventGroupByArgs['orderBy'] },
|
|
76868
|
+
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
76869
|
+
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
76870
|
+
ByValid extends Has<ByFields, OrderFields>,
|
|
76871
|
+
HavingFields extends GetHavingFields<T['having']>,
|
|
76872
|
+
HavingValid extends Has<ByFields, HavingFields>,
|
|
76873
|
+
ByEmpty extends T['by'] extends never[] ? True : False,
|
|
76874
|
+
InputErrors extends ByEmpty extends True
|
|
76875
|
+
? `Error: "by" must not be empty.`
|
|
76876
|
+
: HavingValid extends False
|
|
76877
|
+
? {
|
|
76878
|
+
[P in HavingFields]: P extends ByFields
|
|
76879
|
+
? never
|
|
76880
|
+
: P extends string
|
|
76881
|
+
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
|
76882
|
+
: [
|
|
76883
|
+
Error,
|
|
76884
|
+
'Field ',
|
|
76885
|
+
P,
|
|
76886
|
+
` in "having" needs to be provided in "by"`,
|
|
76887
|
+
]
|
|
76888
|
+
}[HavingFields]
|
|
76889
|
+
: 'take' extends Keys<T>
|
|
76890
|
+
? 'orderBy' extends Keys<T>
|
|
76891
|
+
? ByValid extends True
|
|
76892
|
+
? {}
|
|
76893
|
+
: {
|
|
76894
|
+
[P in OrderFields]: P extends ByFields
|
|
76895
|
+
? never
|
|
76896
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
76897
|
+
}[OrderFields]
|
|
76898
|
+
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
|
76899
|
+
: 'skip' extends Keys<T>
|
|
76900
|
+
? 'orderBy' extends Keys<T>
|
|
76901
|
+
? ByValid extends True
|
|
76902
|
+
? {}
|
|
76903
|
+
: {
|
|
76904
|
+
[P in OrderFields]: P extends ByFields
|
|
76905
|
+
? never
|
|
76906
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
76907
|
+
}[OrderFields]
|
|
76908
|
+
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
|
76909
|
+
: ByValid extends True
|
|
76910
|
+
? {}
|
|
76911
|
+
: {
|
|
76912
|
+
[P in OrderFields]: P extends ByFields
|
|
76913
|
+
? never
|
|
76914
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
76915
|
+
}[OrderFields]
|
|
76916
|
+
>(args: SubsetIntersection<T, ShareASaleEventGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetShareASaleEventGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
76917
|
+
/**
|
|
76918
|
+
* Fields of the ShareASaleEvent model
|
|
76919
|
+
*/
|
|
76920
|
+
readonly fields: ShareASaleEventFieldRefs;
|
|
76921
|
+
}
|
|
76922
|
+
|
|
76923
|
+
/**
|
|
76924
|
+
* The delegate class that acts as a "Promise-like" for ShareASaleEvent.
|
|
76925
|
+
* Why is this prefixed with `Prisma__`?
|
|
76926
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
76927
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
76928
|
+
*/
|
|
76929
|
+
export interface Prisma__ShareASaleEventClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
76930
|
+
readonly [Symbol.toStringTag]: 'PrismaPromise';
|
|
76931
|
+
|
|
76932
|
+
optIn<T extends ShareASaleEvent$optInArgs<ExtArgs> = {}>(args?: Subset<T, ShareASaleEvent$optInArgs<ExtArgs>>): Prisma__OptInClient<$Result.GetResult<Prisma.$OptInPayload<ExtArgs>, T, 'findUniqueOrThrow'> | null, null, ExtArgs>;
|
|
76933
|
+
|
|
76934
|
+
/**
|
|
76935
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
76936
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
76937
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
76938
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
76939
|
+
*/
|
|
76940
|
+
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>;
|
|
76941
|
+
/**
|
|
76942
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
76943
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
76944
|
+
* @returns A Promise for the completion of the callback.
|
|
76945
|
+
*/
|
|
76946
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>;
|
|
76947
|
+
/**
|
|
76948
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
76949
|
+
* resolved value cannot be modified from the callback.
|
|
76950
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
76951
|
+
* @returns A Promise for the completion of the callback.
|
|
76952
|
+
*/
|
|
76953
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>;
|
|
76954
|
+
}
|
|
76955
|
+
|
|
76956
|
+
|
|
76957
|
+
|
|
76958
|
+
/**
|
|
76959
|
+
* Fields of the ShareASaleEvent model
|
|
76960
|
+
*/
|
|
76961
|
+
interface ShareASaleEventFieldRefs {
|
|
76962
|
+
readonly id: FieldRef<"ShareASaleEvent", 'Int'>
|
|
76963
|
+
readonly transactionId: FieldRef<"ShareASaleEvent", 'String'>
|
|
76964
|
+
readonly created: FieldRef<"ShareASaleEvent", 'DateTime'>
|
|
76965
|
+
readonly saleAmount: FieldRef<"ShareASaleEvent", 'Decimal'>
|
|
76966
|
+
readonly commission: FieldRef<"ShareASaleEvent", 'Decimal'>
|
|
76967
|
+
readonly metaData: FieldRef<"ShareASaleEvent", 'Json'>
|
|
76968
|
+
readonly optInId: FieldRef<"ShareASaleEvent", 'Int'>
|
|
76969
|
+
}
|
|
76970
|
+
|
|
76971
|
+
|
|
76972
|
+
// Custom InputTypes
|
|
76973
|
+
/**
|
|
76974
|
+
* ShareASaleEvent findUnique
|
|
76975
|
+
*/
|
|
76976
|
+
export type ShareASaleEventFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76977
|
+
/**
|
|
76978
|
+
* Select specific fields to fetch from the ShareASaleEvent
|
|
76979
|
+
*/
|
|
76980
|
+
select?: ShareASaleEventSelect<ExtArgs> | null
|
|
76981
|
+
/**
|
|
76982
|
+
* Choose, which related nodes to fetch as well
|
|
76983
|
+
*/
|
|
76984
|
+
include?: ShareASaleEventInclude<ExtArgs> | null
|
|
76985
|
+
/**
|
|
76986
|
+
* Filter, which ShareASaleEvent to fetch.
|
|
76987
|
+
*/
|
|
76988
|
+
where: ShareASaleEventWhereUniqueInput
|
|
76989
|
+
}
|
|
76990
|
+
|
|
76991
|
+
/**
|
|
76992
|
+
* ShareASaleEvent findUniqueOrThrow
|
|
76993
|
+
*/
|
|
76994
|
+
export type ShareASaleEventFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76995
|
+
/**
|
|
76996
|
+
* Select specific fields to fetch from the ShareASaleEvent
|
|
76997
|
+
*/
|
|
76998
|
+
select?: ShareASaleEventSelect<ExtArgs> | null
|
|
76999
|
+
/**
|
|
77000
|
+
* Choose, which related nodes to fetch as well
|
|
77001
|
+
*/
|
|
77002
|
+
include?: ShareASaleEventInclude<ExtArgs> | null
|
|
77003
|
+
/**
|
|
77004
|
+
* Filter, which ShareASaleEvent to fetch.
|
|
77005
|
+
*/
|
|
77006
|
+
where: ShareASaleEventWhereUniqueInput
|
|
77007
|
+
}
|
|
77008
|
+
|
|
77009
|
+
/**
|
|
77010
|
+
* ShareASaleEvent findFirst
|
|
77011
|
+
*/
|
|
77012
|
+
export type ShareASaleEventFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
77013
|
+
/**
|
|
77014
|
+
* Select specific fields to fetch from the ShareASaleEvent
|
|
77015
|
+
*/
|
|
77016
|
+
select?: ShareASaleEventSelect<ExtArgs> | null
|
|
77017
|
+
/**
|
|
77018
|
+
* Choose, which related nodes to fetch as well
|
|
77019
|
+
*/
|
|
77020
|
+
include?: ShareASaleEventInclude<ExtArgs> | null
|
|
77021
|
+
/**
|
|
77022
|
+
* Filter, which ShareASaleEvent to fetch.
|
|
77023
|
+
*/
|
|
77024
|
+
where?: ShareASaleEventWhereInput
|
|
77025
|
+
/**
|
|
77026
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
77027
|
+
*
|
|
77028
|
+
* Determine the order of ShareASaleEvents to fetch.
|
|
77029
|
+
*/
|
|
77030
|
+
orderBy?: ShareASaleEventOrderByWithRelationAndSearchRelevanceInput | ShareASaleEventOrderByWithRelationAndSearchRelevanceInput[]
|
|
77031
|
+
/**
|
|
77032
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
77033
|
+
*
|
|
77034
|
+
* Sets the position for searching for ShareASaleEvents.
|
|
77035
|
+
*/
|
|
77036
|
+
cursor?: ShareASaleEventWhereUniqueInput
|
|
77037
|
+
/**
|
|
77038
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
77039
|
+
*
|
|
77040
|
+
* Take `±n` ShareASaleEvents from the position of the cursor.
|
|
77041
|
+
*/
|
|
77042
|
+
take?: number
|
|
77043
|
+
/**
|
|
77044
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
77045
|
+
*
|
|
77046
|
+
* Skip the first `n` ShareASaleEvents.
|
|
77047
|
+
*/
|
|
77048
|
+
skip?: number
|
|
77049
|
+
/**
|
|
77050
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
77051
|
+
*
|
|
77052
|
+
* Filter by unique combinations of ShareASaleEvents.
|
|
77053
|
+
*/
|
|
77054
|
+
distinct?: ShareASaleEventScalarFieldEnum | ShareASaleEventScalarFieldEnum[]
|
|
77055
|
+
}
|
|
77056
|
+
|
|
77057
|
+
/**
|
|
77058
|
+
* ShareASaleEvent findFirstOrThrow
|
|
77059
|
+
*/
|
|
77060
|
+
export type ShareASaleEventFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
77061
|
+
/**
|
|
77062
|
+
* Select specific fields to fetch from the ShareASaleEvent
|
|
77063
|
+
*/
|
|
77064
|
+
select?: ShareASaleEventSelect<ExtArgs> | null
|
|
77065
|
+
/**
|
|
77066
|
+
* Choose, which related nodes to fetch as well
|
|
77067
|
+
*/
|
|
77068
|
+
include?: ShareASaleEventInclude<ExtArgs> | null
|
|
77069
|
+
/**
|
|
77070
|
+
* Filter, which ShareASaleEvent to fetch.
|
|
77071
|
+
*/
|
|
77072
|
+
where?: ShareASaleEventWhereInput
|
|
77073
|
+
/**
|
|
77074
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
77075
|
+
*
|
|
77076
|
+
* Determine the order of ShareASaleEvents to fetch.
|
|
77077
|
+
*/
|
|
77078
|
+
orderBy?: ShareASaleEventOrderByWithRelationAndSearchRelevanceInput | ShareASaleEventOrderByWithRelationAndSearchRelevanceInput[]
|
|
77079
|
+
/**
|
|
77080
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
77081
|
+
*
|
|
77082
|
+
* Sets the position for searching for ShareASaleEvents.
|
|
77083
|
+
*/
|
|
77084
|
+
cursor?: ShareASaleEventWhereUniqueInput
|
|
77085
|
+
/**
|
|
77086
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
77087
|
+
*
|
|
77088
|
+
* Take `±n` ShareASaleEvents from the position of the cursor.
|
|
77089
|
+
*/
|
|
77090
|
+
take?: number
|
|
77091
|
+
/**
|
|
77092
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
77093
|
+
*
|
|
77094
|
+
* Skip the first `n` ShareASaleEvents.
|
|
77095
|
+
*/
|
|
77096
|
+
skip?: number
|
|
77097
|
+
/**
|
|
77098
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
77099
|
+
*
|
|
77100
|
+
* Filter by unique combinations of ShareASaleEvents.
|
|
77101
|
+
*/
|
|
77102
|
+
distinct?: ShareASaleEventScalarFieldEnum | ShareASaleEventScalarFieldEnum[]
|
|
77103
|
+
}
|
|
77104
|
+
|
|
77105
|
+
/**
|
|
77106
|
+
* ShareASaleEvent findMany
|
|
77107
|
+
*/
|
|
77108
|
+
export type ShareASaleEventFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
77109
|
+
/**
|
|
77110
|
+
* Select specific fields to fetch from the ShareASaleEvent
|
|
77111
|
+
*/
|
|
77112
|
+
select?: ShareASaleEventSelect<ExtArgs> | null
|
|
77113
|
+
/**
|
|
77114
|
+
* Choose, which related nodes to fetch as well
|
|
77115
|
+
*/
|
|
77116
|
+
include?: ShareASaleEventInclude<ExtArgs> | null
|
|
77117
|
+
/**
|
|
77118
|
+
* Filter, which ShareASaleEvents to fetch.
|
|
77119
|
+
*/
|
|
77120
|
+
where?: ShareASaleEventWhereInput
|
|
77121
|
+
/**
|
|
77122
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
77123
|
+
*
|
|
77124
|
+
* Determine the order of ShareASaleEvents to fetch.
|
|
77125
|
+
*/
|
|
77126
|
+
orderBy?: ShareASaleEventOrderByWithRelationAndSearchRelevanceInput | ShareASaleEventOrderByWithRelationAndSearchRelevanceInput[]
|
|
77127
|
+
/**
|
|
77128
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
77129
|
+
*
|
|
77130
|
+
* Sets the position for listing ShareASaleEvents.
|
|
77131
|
+
*/
|
|
77132
|
+
cursor?: ShareASaleEventWhereUniqueInput
|
|
77133
|
+
/**
|
|
77134
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
77135
|
+
*
|
|
77136
|
+
* Take `±n` ShareASaleEvents from the position of the cursor.
|
|
77137
|
+
*/
|
|
77138
|
+
take?: number
|
|
77139
|
+
/**
|
|
77140
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
77141
|
+
*
|
|
77142
|
+
* Skip the first `n` ShareASaleEvents.
|
|
77143
|
+
*/
|
|
77144
|
+
skip?: number
|
|
77145
|
+
distinct?: ShareASaleEventScalarFieldEnum | ShareASaleEventScalarFieldEnum[]
|
|
77146
|
+
}
|
|
77147
|
+
|
|
77148
|
+
/**
|
|
77149
|
+
* ShareASaleEvent create
|
|
77150
|
+
*/
|
|
77151
|
+
export type ShareASaleEventCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
77152
|
+
/**
|
|
77153
|
+
* Select specific fields to fetch from the ShareASaleEvent
|
|
77154
|
+
*/
|
|
77155
|
+
select?: ShareASaleEventSelect<ExtArgs> | null
|
|
77156
|
+
/**
|
|
77157
|
+
* Choose, which related nodes to fetch as well
|
|
77158
|
+
*/
|
|
77159
|
+
include?: ShareASaleEventInclude<ExtArgs> | null
|
|
77160
|
+
/**
|
|
77161
|
+
* The data needed to create a ShareASaleEvent.
|
|
77162
|
+
*/
|
|
77163
|
+
data?: XOR<ShareASaleEventCreateInput, ShareASaleEventUncheckedCreateInput>
|
|
77164
|
+
}
|
|
77165
|
+
|
|
77166
|
+
/**
|
|
77167
|
+
* ShareASaleEvent createMany
|
|
77168
|
+
*/
|
|
77169
|
+
export type ShareASaleEventCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
77170
|
+
/**
|
|
77171
|
+
* The data used to create many ShareASaleEvents.
|
|
77172
|
+
*/
|
|
77173
|
+
data: ShareASaleEventCreateManyInput | ShareASaleEventCreateManyInput[]
|
|
77174
|
+
skipDuplicates?: boolean
|
|
77175
|
+
}
|
|
77176
|
+
|
|
77177
|
+
/**
|
|
77178
|
+
* ShareASaleEvent createManyAndReturn
|
|
77179
|
+
*/
|
|
77180
|
+
export type ShareASaleEventCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
77181
|
+
/**
|
|
77182
|
+
* Select specific fields to fetch from the ShareASaleEvent
|
|
77183
|
+
*/
|
|
77184
|
+
select?: ShareASaleEventSelectCreateManyAndReturn<ExtArgs> | null
|
|
77185
|
+
/**
|
|
77186
|
+
* The data used to create many ShareASaleEvents.
|
|
77187
|
+
*/
|
|
77188
|
+
data: ShareASaleEventCreateManyInput | ShareASaleEventCreateManyInput[]
|
|
77189
|
+
skipDuplicates?: boolean
|
|
77190
|
+
/**
|
|
77191
|
+
* Choose, which related nodes to fetch as well
|
|
77192
|
+
*/
|
|
77193
|
+
include?: ShareASaleEventIncludeCreateManyAndReturn<ExtArgs> | null
|
|
77194
|
+
}
|
|
77195
|
+
|
|
77196
|
+
/**
|
|
77197
|
+
* ShareASaleEvent update
|
|
77198
|
+
*/
|
|
77199
|
+
export type ShareASaleEventUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
77200
|
+
/**
|
|
77201
|
+
* Select specific fields to fetch from the ShareASaleEvent
|
|
77202
|
+
*/
|
|
77203
|
+
select?: ShareASaleEventSelect<ExtArgs> | null
|
|
77204
|
+
/**
|
|
77205
|
+
* Choose, which related nodes to fetch as well
|
|
77206
|
+
*/
|
|
77207
|
+
include?: ShareASaleEventInclude<ExtArgs> | null
|
|
77208
|
+
/**
|
|
77209
|
+
* The data needed to update a ShareASaleEvent.
|
|
77210
|
+
*/
|
|
77211
|
+
data: XOR<ShareASaleEventUpdateInput, ShareASaleEventUncheckedUpdateInput>
|
|
77212
|
+
/**
|
|
77213
|
+
* Choose, which ShareASaleEvent to update.
|
|
77214
|
+
*/
|
|
77215
|
+
where: ShareASaleEventWhereUniqueInput
|
|
77216
|
+
}
|
|
77217
|
+
|
|
77218
|
+
/**
|
|
77219
|
+
* ShareASaleEvent updateMany
|
|
77220
|
+
*/
|
|
77221
|
+
export type ShareASaleEventUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
77222
|
+
/**
|
|
77223
|
+
* The data used to update ShareASaleEvents.
|
|
77224
|
+
*/
|
|
77225
|
+
data: XOR<ShareASaleEventUpdateManyMutationInput, ShareASaleEventUncheckedUpdateManyInput>
|
|
77226
|
+
/**
|
|
77227
|
+
* Filter which ShareASaleEvents to update
|
|
77228
|
+
*/
|
|
77229
|
+
where?: ShareASaleEventWhereInput
|
|
77230
|
+
}
|
|
77231
|
+
|
|
77232
|
+
/**
|
|
77233
|
+
* ShareASaleEvent upsert
|
|
77234
|
+
*/
|
|
77235
|
+
export type ShareASaleEventUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
77236
|
+
/**
|
|
77237
|
+
* Select specific fields to fetch from the ShareASaleEvent
|
|
77238
|
+
*/
|
|
77239
|
+
select?: ShareASaleEventSelect<ExtArgs> | null
|
|
77240
|
+
/**
|
|
77241
|
+
* Choose, which related nodes to fetch as well
|
|
77242
|
+
*/
|
|
77243
|
+
include?: ShareASaleEventInclude<ExtArgs> | null
|
|
77244
|
+
/**
|
|
77245
|
+
* The filter to search for the ShareASaleEvent to update in case it exists.
|
|
77246
|
+
*/
|
|
77247
|
+
where: ShareASaleEventWhereUniqueInput
|
|
77248
|
+
/**
|
|
77249
|
+
* In case the ShareASaleEvent found by the `where` argument doesn't exist, create a new ShareASaleEvent with this data.
|
|
77250
|
+
*/
|
|
77251
|
+
create: XOR<ShareASaleEventCreateInput, ShareASaleEventUncheckedCreateInput>
|
|
77252
|
+
/**
|
|
77253
|
+
* In case the ShareASaleEvent was found with the provided `where` argument, update it with this data.
|
|
77254
|
+
*/
|
|
77255
|
+
update: XOR<ShareASaleEventUpdateInput, ShareASaleEventUncheckedUpdateInput>
|
|
77256
|
+
}
|
|
77257
|
+
|
|
77258
|
+
/**
|
|
77259
|
+
* ShareASaleEvent delete
|
|
77260
|
+
*/
|
|
77261
|
+
export type ShareASaleEventDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
77262
|
+
/**
|
|
77263
|
+
* Select specific fields to fetch from the ShareASaleEvent
|
|
77264
|
+
*/
|
|
77265
|
+
select?: ShareASaleEventSelect<ExtArgs> | null
|
|
77266
|
+
/**
|
|
77267
|
+
* Choose, which related nodes to fetch as well
|
|
77268
|
+
*/
|
|
77269
|
+
include?: ShareASaleEventInclude<ExtArgs> | null
|
|
77270
|
+
/**
|
|
77271
|
+
* Filter which ShareASaleEvent to delete.
|
|
77272
|
+
*/
|
|
77273
|
+
where: ShareASaleEventWhereUniqueInput
|
|
77274
|
+
}
|
|
77275
|
+
|
|
77276
|
+
/**
|
|
77277
|
+
* ShareASaleEvent deleteMany
|
|
77278
|
+
*/
|
|
77279
|
+
export type ShareASaleEventDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
77280
|
+
/**
|
|
77281
|
+
* Filter which ShareASaleEvents to delete
|
|
77282
|
+
*/
|
|
77283
|
+
where?: ShareASaleEventWhereInput
|
|
77284
|
+
}
|
|
77285
|
+
|
|
77286
|
+
/**
|
|
77287
|
+
* ShareASaleEvent.optIn
|
|
77288
|
+
*/
|
|
77289
|
+
export type ShareASaleEvent$optInArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
77290
|
+
/**
|
|
77291
|
+
* Select specific fields to fetch from the OptIn
|
|
77292
|
+
*/
|
|
77293
|
+
select?: OptInSelect<ExtArgs> | null
|
|
77294
|
+
/**
|
|
77295
|
+
* Choose, which related nodes to fetch as well
|
|
77296
|
+
*/
|
|
77297
|
+
include?: OptInInclude<ExtArgs> | null
|
|
77298
|
+
where?: OptInWhereInput
|
|
77299
|
+
}
|
|
77300
|
+
|
|
77301
|
+
/**
|
|
77302
|
+
* ShareASaleEvent without action
|
|
77303
|
+
*/
|
|
77304
|
+
export type ShareASaleEventDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
77305
|
+
/**
|
|
77306
|
+
* Select specific fields to fetch from the ShareASaleEvent
|
|
77307
|
+
*/
|
|
77308
|
+
select?: ShareASaleEventSelect<ExtArgs> | null
|
|
77309
|
+
/**
|
|
77310
|
+
* Choose, which related nodes to fetch as well
|
|
77311
|
+
*/
|
|
77312
|
+
include?: ShareASaleEventInclude<ExtArgs> | null
|
|
77313
|
+
}
|
|
77314
|
+
|
|
77315
|
+
|
|
77316
|
+
/**
|
|
77317
|
+
* Model CreatorSearchFilter
|
|
77318
|
+
*/
|
|
77319
|
+
|
|
77320
|
+
export type AggregateCreatorSearchFilter = {
|
|
77321
|
+
_count: CreatorSearchFilterCountAggregateOutputType | null
|
|
77322
|
+
_avg: CreatorSearchFilterAvgAggregateOutputType | null
|
|
77323
|
+
_sum: CreatorSearchFilterSumAggregateOutputType | null
|
|
77324
|
+
_min: CreatorSearchFilterMinAggregateOutputType | null
|
|
77325
|
+
_max: CreatorSearchFilterMaxAggregateOutputType | null
|
|
77326
|
+
}
|
|
77327
|
+
|
|
77328
|
+
export type CreatorSearchFilterAvgAggregateOutputType = {
|
|
77329
|
+
id: number | null
|
|
77330
|
+
brandId: number | null
|
|
77331
|
+
}
|
|
77332
|
+
|
|
77333
|
+
export type CreatorSearchFilterSumAggregateOutputType = {
|
|
77334
|
+
id: number | null
|
|
77335
|
+
brandId: number | null
|
|
77336
|
+
}
|
|
77337
|
+
|
|
77338
|
+
export type CreatorSearchFilterMinAggregateOutputType = {
|
|
77339
|
+
id: number | null
|
|
77340
|
+
brandId: number | null
|
|
77341
|
+
title: string | null
|
|
77342
|
+
createdAt: Date | null
|
|
77343
|
+
updatedAt: Date | null
|
|
77344
|
+
}
|
|
77345
|
+
|
|
77346
|
+
export type CreatorSearchFilterMaxAggregateOutputType = {
|
|
77347
|
+
id: number | null
|
|
77348
|
+
brandId: number | null
|
|
77349
|
+
title: string | null
|
|
77350
|
+
createdAt: Date | null
|
|
77351
|
+
updatedAt: Date | null
|
|
77352
|
+
}
|
|
77353
|
+
|
|
77354
|
+
export type CreatorSearchFilterCountAggregateOutputType = {
|
|
77355
|
+
id: number
|
|
77356
|
+
brandId: number
|
|
77357
|
+
title: number
|
|
77358
|
+
filters: number
|
|
77359
|
+
createdAt: number
|
|
77360
|
+
updatedAt: number
|
|
77361
|
+
_all: number
|
|
77362
|
+
}
|
|
77363
|
+
|
|
77364
|
+
|
|
77365
|
+
export type CreatorSearchFilterAvgAggregateInputType = {
|
|
77366
|
+
id?: true
|
|
77367
|
+
brandId?: true
|
|
77368
|
+
}
|
|
77369
|
+
|
|
77370
|
+
export type CreatorSearchFilterSumAggregateInputType = {
|
|
77371
|
+
id?: true
|
|
77372
|
+
brandId?: true
|
|
77373
|
+
}
|
|
77374
|
+
|
|
77375
|
+
export type CreatorSearchFilterMinAggregateInputType = {
|
|
77376
|
+
id?: true
|
|
77377
|
+
brandId?: true
|
|
77378
|
+
title?: true
|
|
77379
|
+
createdAt?: true
|
|
77380
|
+
updatedAt?: true
|
|
77381
|
+
}
|
|
77382
|
+
|
|
77383
|
+
export type CreatorSearchFilterMaxAggregateInputType = {
|
|
77384
|
+
id?: true
|
|
77385
|
+
brandId?: true
|
|
77386
|
+
title?: true
|
|
77387
|
+
createdAt?: true
|
|
77388
|
+
updatedAt?: true
|
|
77389
|
+
}
|
|
77390
|
+
|
|
77391
|
+
export type CreatorSearchFilterCountAggregateInputType = {
|
|
77392
|
+
id?: true
|
|
77393
|
+
brandId?: true
|
|
77394
|
+
title?: true
|
|
77395
|
+
filters?: true
|
|
77396
|
+
createdAt?: true
|
|
77397
|
+
updatedAt?: true
|
|
77398
|
+
_all?: true
|
|
77399
|
+
}
|
|
77400
|
+
|
|
77401
|
+
export type CreatorSearchFilterAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
77402
|
+
/**
|
|
77403
|
+
* Filter which CreatorSearchFilter to aggregate.
|
|
77404
|
+
*/
|
|
77405
|
+
where?: CreatorSearchFilterWhereInput
|
|
77406
|
+
/**
|
|
77407
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
77408
|
+
*
|
|
77409
|
+
* Determine the order of CreatorSearchFilters to fetch.
|
|
77410
|
+
*/
|
|
77411
|
+
orderBy?: CreatorSearchFilterOrderByWithRelationAndSearchRelevanceInput | CreatorSearchFilterOrderByWithRelationAndSearchRelevanceInput[]
|
|
77412
|
+
/**
|
|
77413
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
77414
|
+
*
|
|
77415
|
+
* Sets the start position
|
|
77416
|
+
*/
|
|
77417
|
+
cursor?: CreatorSearchFilterWhereUniqueInput
|
|
77418
|
+
/**
|
|
77419
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
77420
|
+
*
|
|
77421
|
+
* Take `±n` CreatorSearchFilters from the position of the cursor.
|
|
77422
|
+
*/
|
|
77423
|
+
take?: number
|
|
77424
|
+
/**
|
|
77425
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
77426
|
+
*
|
|
77427
|
+
* Skip the first `n` CreatorSearchFilters.
|
|
77428
|
+
*/
|
|
77429
|
+
skip?: number
|
|
77430
|
+
/**
|
|
77431
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
77432
|
+
*
|
|
77433
|
+
* Count returned CreatorSearchFilters
|
|
77434
|
+
**/
|
|
77435
|
+
_count?: true | CreatorSearchFilterCountAggregateInputType
|
|
77436
|
+
/**
|
|
77437
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
77438
|
+
*
|
|
77439
|
+
* Select which fields to average
|
|
77440
|
+
**/
|
|
77441
|
+
_avg?: CreatorSearchFilterAvgAggregateInputType
|
|
77442
|
+
/**
|
|
77443
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
77444
|
+
*
|
|
77445
|
+
* Select which fields to sum
|
|
77446
|
+
**/
|
|
77447
|
+
_sum?: CreatorSearchFilterSumAggregateInputType
|
|
77448
|
+
/**
|
|
77449
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
77450
|
+
*
|
|
77451
|
+
* Select which fields to find the minimum value
|
|
77452
|
+
**/
|
|
77453
|
+
_min?: CreatorSearchFilterMinAggregateInputType
|
|
77454
|
+
/**
|
|
77455
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
77456
|
+
*
|
|
77457
|
+
* Select which fields to find the maximum value
|
|
77458
|
+
**/
|
|
77459
|
+
_max?: CreatorSearchFilterMaxAggregateInputType
|
|
77460
|
+
}
|
|
77461
|
+
|
|
77462
|
+
export type GetCreatorSearchFilterAggregateType<T extends CreatorSearchFilterAggregateArgs> = {
|
|
77463
|
+
[P in keyof T & keyof AggregateCreatorSearchFilter]: P extends '_count' | 'count'
|
|
77464
|
+
? T[P] extends true
|
|
77465
|
+
? number
|
|
77466
|
+
: GetScalarType<T[P], AggregateCreatorSearchFilter[P]>
|
|
77467
|
+
: GetScalarType<T[P], AggregateCreatorSearchFilter[P]>
|
|
77468
|
+
}
|
|
77469
|
+
|
|
77470
|
+
|
|
77471
|
+
|
|
77472
|
+
|
|
77473
|
+
export type CreatorSearchFilterGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
77474
|
+
where?: CreatorSearchFilterWhereInput
|
|
77475
|
+
orderBy?: CreatorSearchFilterOrderByWithAggregationInput | CreatorSearchFilterOrderByWithAggregationInput[]
|
|
77476
|
+
by: CreatorSearchFilterScalarFieldEnum[] | CreatorSearchFilterScalarFieldEnum
|
|
77477
|
+
having?: CreatorSearchFilterScalarWhereWithAggregatesInput
|
|
77478
|
+
take?: number
|
|
77479
|
+
skip?: number
|
|
77480
|
+
_count?: CreatorSearchFilterCountAggregateInputType | true
|
|
77481
|
+
_avg?: CreatorSearchFilterAvgAggregateInputType
|
|
77482
|
+
_sum?: CreatorSearchFilterSumAggregateInputType
|
|
77483
|
+
_min?: CreatorSearchFilterMinAggregateInputType
|
|
77484
|
+
_max?: CreatorSearchFilterMaxAggregateInputType
|
|
77485
|
+
}
|
|
77486
|
+
|
|
77487
|
+
export type CreatorSearchFilterGroupByOutputType = {
|
|
77488
|
+
id: number
|
|
77489
|
+
brandId: number
|
|
77490
|
+
title: string
|
|
77491
|
+
filters: JsonValue
|
|
77492
|
+
createdAt: Date
|
|
77493
|
+
updatedAt: Date | null
|
|
77494
|
+
_count: CreatorSearchFilterCountAggregateOutputType | null
|
|
77495
|
+
_avg: CreatorSearchFilterAvgAggregateOutputType | null
|
|
77496
|
+
_sum: CreatorSearchFilterSumAggregateOutputType | null
|
|
77497
|
+
_min: CreatorSearchFilterMinAggregateOutputType | null
|
|
77498
|
+
_max: CreatorSearchFilterMaxAggregateOutputType | null
|
|
77499
|
+
}
|
|
77500
|
+
|
|
77501
|
+
type GetCreatorSearchFilterGroupByPayload<T extends CreatorSearchFilterGroupByArgs> = Prisma.PrismaPromise<
|
|
77502
|
+
Array<
|
|
77503
|
+
PickEnumerable<CreatorSearchFilterGroupByOutputType, T['by']> &
|
|
77504
|
+
{
|
|
77505
|
+
[P in ((keyof T) & (keyof CreatorSearchFilterGroupByOutputType))]: P extends '_count'
|
|
77506
|
+
? T[P] extends boolean
|
|
77507
|
+
? number
|
|
77508
|
+
: GetScalarType<T[P], CreatorSearchFilterGroupByOutputType[P]>
|
|
77509
|
+
: GetScalarType<T[P], CreatorSearchFilterGroupByOutputType[P]>
|
|
77510
|
+
}
|
|
77511
|
+
>
|
|
77512
|
+
>
|
|
77513
|
+
|
|
77514
|
+
|
|
77515
|
+
export type CreatorSearchFilterSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
77516
|
+
id?: boolean
|
|
77517
|
+
brandId?: boolean
|
|
77518
|
+
title?: boolean
|
|
77519
|
+
filters?: boolean
|
|
77520
|
+
createdAt?: boolean
|
|
77521
|
+
updatedAt?: boolean
|
|
77522
|
+
brand?: boolean | BrandDefaultArgs<ExtArgs>
|
|
77523
|
+
}, ExtArgs["result"]["creatorSearchFilter"]>
|
|
77524
|
+
|
|
77525
|
+
export type CreatorSearchFilterSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
77526
|
+
id?: boolean
|
|
77527
|
+
brandId?: boolean
|
|
77528
|
+
title?: boolean
|
|
77529
|
+
filters?: boolean
|
|
77530
|
+
createdAt?: boolean
|
|
77531
|
+
updatedAt?: boolean
|
|
77532
|
+
brand?: boolean | BrandDefaultArgs<ExtArgs>
|
|
77533
|
+
}, ExtArgs["result"]["creatorSearchFilter"]>
|
|
77534
|
+
|
|
77535
|
+
export type CreatorSearchFilterSelectScalar = {
|
|
77536
|
+
id?: boolean
|
|
77537
|
+
brandId?: boolean
|
|
77538
|
+
title?: boolean
|
|
77539
|
+
filters?: boolean
|
|
77540
|
+
createdAt?: boolean
|
|
77541
|
+
updatedAt?: boolean
|
|
77542
|
+
}
|
|
77543
|
+
|
|
77544
|
+
export type CreatorSearchFilterInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
77545
|
+
brand?: boolean | BrandDefaultArgs<ExtArgs>
|
|
77546
|
+
}
|
|
77547
|
+
export type CreatorSearchFilterIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
77548
|
+
brand?: boolean | BrandDefaultArgs<ExtArgs>
|
|
77549
|
+
}
|
|
77550
|
+
|
|
77551
|
+
export type $CreatorSearchFilterPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
77552
|
+
name: "CreatorSearchFilter"
|
|
77553
|
+
objects: {
|
|
77554
|
+
brand: Prisma.$BrandPayload<ExtArgs>
|
|
77555
|
+
}
|
|
77556
|
+
scalars: $Extensions.GetPayloadResult<{
|
|
77557
|
+
id: number
|
|
77558
|
+
brandId: number
|
|
77559
|
+
title: string
|
|
77560
|
+
filters: Prisma.JsonValue
|
|
77561
|
+
createdAt: Date
|
|
77562
|
+
updatedAt: Date | null
|
|
77563
|
+
}, ExtArgs["result"]["creatorSearchFilter"]>
|
|
77564
|
+
composites: {}
|
|
77565
|
+
}
|
|
77566
|
+
|
|
77567
|
+
type CreatorSearchFilterGetPayload<S extends boolean | null | undefined | CreatorSearchFilterDefaultArgs> = $Result.GetResult<Prisma.$CreatorSearchFilterPayload, S>
|
|
77568
|
+
|
|
77569
|
+
type CreatorSearchFilterCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
77570
|
+
Omit<CreatorSearchFilterFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
77571
|
+
select?: CreatorSearchFilterCountAggregateInputType | true
|
|
77572
|
+
}
|
|
77573
|
+
|
|
77574
|
+
export interface CreatorSearchFilterDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
77575
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['CreatorSearchFilter'], meta: { name: 'CreatorSearchFilter' } }
|
|
77576
|
+
/**
|
|
77577
|
+
* Find zero or one CreatorSearchFilter that matches the filter.
|
|
77578
|
+
* @param {CreatorSearchFilterFindUniqueArgs} args - Arguments to find a CreatorSearchFilter
|
|
77579
|
+
* @example
|
|
77580
|
+
* // Get one CreatorSearchFilter
|
|
77581
|
+
* const creatorSearchFilter = await prisma.creatorSearchFilter.findUnique({
|
|
77582
|
+
* where: {
|
|
77583
|
+
* // ... provide filter here
|
|
77584
|
+
* }
|
|
77585
|
+
* })
|
|
77586
|
+
**/
|
|
77587
|
+
findUnique<T extends CreatorSearchFilterFindUniqueArgs<ExtArgs>>(
|
|
77588
|
+
args: SelectSubset<T, CreatorSearchFilterFindUniqueArgs<ExtArgs>>
|
|
77589
|
+
): Prisma__CreatorSearchFilterClient<$Result.GetResult<Prisma.$CreatorSearchFilterPayload<ExtArgs>, T, 'findUnique'> | null, null, ExtArgs>
|
|
77590
|
+
|
|
77591
|
+
/**
|
|
77592
|
+
* Find one CreatorSearchFilter that matches the filter or throw an error with `error.code='P2025'`
|
|
77593
|
+
* if no matches were found.
|
|
77594
|
+
* @param {CreatorSearchFilterFindUniqueOrThrowArgs} args - Arguments to find a CreatorSearchFilter
|
|
77595
|
+
* @example
|
|
77596
|
+
* // Get one CreatorSearchFilter
|
|
77597
|
+
* const creatorSearchFilter = await prisma.creatorSearchFilter.findUniqueOrThrow({
|
|
77598
|
+
* where: {
|
|
77599
|
+
* // ... provide filter here
|
|
77600
|
+
* }
|
|
77601
|
+
* })
|
|
77602
|
+
**/
|
|
77603
|
+
findUniqueOrThrow<T extends CreatorSearchFilterFindUniqueOrThrowArgs<ExtArgs>>(
|
|
77604
|
+
args?: SelectSubset<T, CreatorSearchFilterFindUniqueOrThrowArgs<ExtArgs>>
|
|
77605
|
+
): Prisma__CreatorSearchFilterClient<$Result.GetResult<Prisma.$CreatorSearchFilterPayload<ExtArgs>, T, 'findUniqueOrThrow'>, never, ExtArgs>
|
|
77606
|
+
|
|
77607
|
+
/**
|
|
77608
|
+
* Find the first CreatorSearchFilter that matches the filter.
|
|
77609
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
77610
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
77611
|
+
* @param {CreatorSearchFilterFindFirstArgs} args - Arguments to find a CreatorSearchFilter
|
|
77612
|
+
* @example
|
|
77613
|
+
* // Get one CreatorSearchFilter
|
|
77614
|
+
* const creatorSearchFilter = await prisma.creatorSearchFilter.findFirst({
|
|
77615
|
+
* where: {
|
|
77616
|
+
* // ... provide filter here
|
|
77617
|
+
* }
|
|
77618
|
+
* })
|
|
77619
|
+
**/
|
|
77620
|
+
findFirst<T extends CreatorSearchFilterFindFirstArgs<ExtArgs>>(
|
|
77621
|
+
args?: SelectSubset<T, CreatorSearchFilterFindFirstArgs<ExtArgs>>
|
|
77622
|
+
): Prisma__CreatorSearchFilterClient<$Result.GetResult<Prisma.$CreatorSearchFilterPayload<ExtArgs>, T, 'findFirst'> | null, null, ExtArgs>
|
|
77623
|
+
|
|
77624
|
+
/**
|
|
77625
|
+
* Find the first CreatorSearchFilter that matches the filter or
|
|
77626
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
77627
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
77628
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
77629
|
+
* @param {CreatorSearchFilterFindFirstOrThrowArgs} args - Arguments to find a CreatorSearchFilter
|
|
77630
|
+
* @example
|
|
77631
|
+
* // Get one CreatorSearchFilter
|
|
77632
|
+
* const creatorSearchFilter = await prisma.creatorSearchFilter.findFirstOrThrow({
|
|
77633
|
+
* where: {
|
|
77634
|
+
* // ... provide filter here
|
|
77635
|
+
* }
|
|
77636
|
+
* })
|
|
77637
|
+
**/
|
|
77638
|
+
findFirstOrThrow<T extends CreatorSearchFilterFindFirstOrThrowArgs<ExtArgs>>(
|
|
77639
|
+
args?: SelectSubset<T, CreatorSearchFilterFindFirstOrThrowArgs<ExtArgs>>
|
|
77640
|
+
): Prisma__CreatorSearchFilterClient<$Result.GetResult<Prisma.$CreatorSearchFilterPayload<ExtArgs>, T, 'findFirstOrThrow'>, never, ExtArgs>
|
|
77641
|
+
|
|
77642
|
+
/**
|
|
77643
|
+
* Find zero or more CreatorSearchFilters that matches the filter.
|
|
77644
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
77645
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
77646
|
+
* @param {CreatorSearchFilterFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
77647
|
+
* @example
|
|
77648
|
+
* // Get all CreatorSearchFilters
|
|
77649
|
+
* const creatorSearchFilters = await prisma.creatorSearchFilter.findMany()
|
|
77650
|
+
*
|
|
77651
|
+
* // Get first 10 CreatorSearchFilters
|
|
77652
|
+
* const creatorSearchFilters = await prisma.creatorSearchFilter.findMany({ take: 10 })
|
|
77653
|
+
*
|
|
77654
|
+
* // Only select the `id`
|
|
77655
|
+
* const creatorSearchFilterWithIdOnly = await prisma.creatorSearchFilter.findMany({ select: { id: true } })
|
|
77656
|
+
*
|
|
77657
|
+
**/
|
|
77658
|
+
findMany<T extends CreatorSearchFilterFindManyArgs<ExtArgs>>(
|
|
77659
|
+
args?: SelectSubset<T, CreatorSearchFilterFindManyArgs<ExtArgs>>
|
|
77660
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CreatorSearchFilterPayload<ExtArgs>, T, 'findMany'>>
|
|
77661
|
+
|
|
77662
|
+
/**
|
|
77663
|
+
* Create a CreatorSearchFilter.
|
|
77664
|
+
* @param {CreatorSearchFilterCreateArgs} args - Arguments to create a CreatorSearchFilter.
|
|
77665
|
+
* @example
|
|
77666
|
+
* // Create one CreatorSearchFilter
|
|
77667
|
+
* const CreatorSearchFilter = await prisma.creatorSearchFilter.create({
|
|
77668
|
+
* data: {
|
|
77669
|
+
* // ... data to create a CreatorSearchFilter
|
|
77670
|
+
* }
|
|
77671
|
+
* })
|
|
77672
|
+
*
|
|
77673
|
+
**/
|
|
77674
|
+
create<T extends CreatorSearchFilterCreateArgs<ExtArgs>>(
|
|
77675
|
+
args: SelectSubset<T, CreatorSearchFilterCreateArgs<ExtArgs>>
|
|
77676
|
+
): Prisma__CreatorSearchFilterClient<$Result.GetResult<Prisma.$CreatorSearchFilterPayload<ExtArgs>, T, 'create'>, never, ExtArgs>
|
|
77677
|
+
|
|
77678
|
+
/**
|
|
77679
|
+
* Create many CreatorSearchFilters.
|
|
77680
|
+
* @param {CreatorSearchFilterCreateManyArgs} args - Arguments to create many CreatorSearchFilters.
|
|
77681
|
+
* @example
|
|
77682
|
+
* // Create many CreatorSearchFilters
|
|
77683
|
+
* const creatorSearchFilter = await prisma.creatorSearchFilter.createMany({
|
|
77684
|
+
* data: [
|
|
77685
|
+
* // ... provide data here
|
|
77686
|
+
* ]
|
|
77687
|
+
* })
|
|
77688
|
+
*
|
|
77689
|
+
**/
|
|
77690
|
+
createMany<T extends CreatorSearchFilterCreateManyArgs<ExtArgs>>(
|
|
77691
|
+
args?: SelectSubset<T, CreatorSearchFilterCreateManyArgs<ExtArgs>>
|
|
77692
|
+
): Prisma.PrismaPromise<BatchPayload>
|
|
77693
|
+
|
|
77694
|
+
/**
|
|
77695
|
+
* Create many CreatorSearchFilters and returns the data saved in the database.
|
|
77696
|
+
* @param {CreatorSearchFilterCreateManyAndReturnArgs} args - Arguments to create many CreatorSearchFilters.
|
|
77697
|
+
* @example
|
|
77698
|
+
* // Create many CreatorSearchFilters
|
|
77699
|
+
* const creatorSearchFilter = await prisma.creatorSearchFilter.createManyAndReturn({
|
|
77700
|
+
* data: [
|
|
77701
|
+
* // ... provide data here
|
|
77702
|
+
* ]
|
|
77703
|
+
* })
|
|
77704
|
+
*
|
|
77705
|
+
* // Create many CreatorSearchFilters and only return the `id`
|
|
77706
|
+
* const creatorSearchFilterWithIdOnly = await prisma.creatorSearchFilter.createManyAndReturn({
|
|
77707
|
+
* select: { id: true },
|
|
77708
|
+
* data: [
|
|
77709
|
+
* // ... provide data here
|
|
77710
|
+
* ]
|
|
77711
|
+
* })
|
|
77712
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
77713
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
77714
|
+
*
|
|
77715
|
+
**/
|
|
77716
|
+
createManyAndReturn<T extends CreatorSearchFilterCreateManyAndReturnArgs<ExtArgs>>(
|
|
77717
|
+
args?: SelectSubset<T, CreatorSearchFilterCreateManyAndReturnArgs<ExtArgs>>
|
|
77718
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CreatorSearchFilterPayload<ExtArgs>, T, 'createManyAndReturn'>>
|
|
77719
|
+
|
|
77720
|
+
/**
|
|
77721
|
+
* Delete a CreatorSearchFilter.
|
|
77722
|
+
* @param {CreatorSearchFilterDeleteArgs} args - Arguments to delete one CreatorSearchFilter.
|
|
77723
|
+
* @example
|
|
77724
|
+
* // Delete one CreatorSearchFilter
|
|
77725
|
+
* const CreatorSearchFilter = await prisma.creatorSearchFilter.delete({
|
|
77726
|
+
* where: {
|
|
77727
|
+
* // ... filter to delete one CreatorSearchFilter
|
|
77728
|
+
* }
|
|
77729
|
+
* })
|
|
77730
|
+
*
|
|
77731
|
+
**/
|
|
77732
|
+
delete<T extends CreatorSearchFilterDeleteArgs<ExtArgs>>(
|
|
77733
|
+
args: SelectSubset<T, CreatorSearchFilterDeleteArgs<ExtArgs>>
|
|
77734
|
+
): Prisma__CreatorSearchFilterClient<$Result.GetResult<Prisma.$CreatorSearchFilterPayload<ExtArgs>, T, 'delete'>, never, ExtArgs>
|
|
77735
|
+
|
|
77736
|
+
/**
|
|
77737
|
+
* Update one CreatorSearchFilter.
|
|
77738
|
+
* @param {CreatorSearchFilterUpdateArgs} args - Arguments to update one CreatorSearchFilter.
|
|
77739
|
+
* @example
|
|
77740
|
+
* // Update one CreatorSearchFilter
|
|
77741
|
+
* const creatorSearchFilter = await prisma.creatorSearchFilter.update({
|
|
77742
|
+
* where: {
|
|
77743
|
+
* // ... provide filter here
|
|
77744
|
+
* },
|
|
77745
|
+
* data: {
|
|
77746
|
+
* // ... provide data here
|
|
77747
|
+
* }
|
|
77748
|
+
* })
|
|
77749
|
+
*
|
|
77750
|
+
**/
|
|
77751
|
+
update<T extends CreatorSearchFilterUpdateArgs<ExtArgs>>(
|
|
77752
|
+
args: SelectSubset<T, CreatorSearchFilterUpdateArgs<ExtArgs>>
|
|
77753
|
+
): Prisma__CreatorSearchFilterClient<$Result.GetResult<Prisma.$CreatorSearchFilterPayload<ExtArgs>, T, 'update'>, never, ExtArgs>
|
|
77754
|
+
|
|
77755
|
+
/**
|
|
77756
|
+
* Delete zero or more CreatorSearchFilters.
|
|
77757
|
+
* @param {CreatorSearchFilterDeleteManyArgs} args - Arguments to filter CreatorSearchFilters to delete.
|
|
77758
|
+
* @example
|
|
77759
|
+
* // Delete a few CreatorSearchFilters
|
|
77760
|
+
* const { count } = await prisma.creatorSearchFilter.deleteMany({
|
|
77761
|
+
* where: {
|
|
77762
|
+
* // ... provide filter here
|
|
77763
|
+
* }
|
|
77764
|
+
* })
|
|
77765
|
+
*
|
|
77766
|
+
**/
|
|
77767
|
+
deleteMany<T extends CreatorSearchFilterDeleteManyArgs<ExtArgs>>(
|
|
77768
|
+
args?: SelectSubset<T, CreatorSearchFilterDeleteManyArgs<ExtArgs>>
|
|
77769
|
+
): Prisma.PrismaPromise<BatchPayload>
|
|
77770
|
+
|
|
77771
|
+
/**
|
|
77772
|
+
* Update zero or more CreatorSearchFilters.
|
|
77773
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
77774
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
77775
|
+
* @param {CreatorSearchFilterUpdateManyArgs} args - Arguments to update one or more rows.
|
|
77776
|
+
* @example
|
|
77777
|
+
* // Update many CreatorSearchFilters
|
|
77778
|
+
* const creatorSearchFilter = await prisma.creatorSearchFilter.updateMany({
|
|
77779
|
+
* where: {
|
|
77780
|
+
* // ... provide filter here
|
|
77781
|
+
* },
|
|
77782
|
+
* data: {
|
|
77783
|
+
* // ... provide data here
|
|
77784
|
+
* }
|
|
77785
|
+
* })
|
|
77786
|
+
*
|
|
77787
|
+
**/
|
|
77788
|
+
updateMany<T extends CreatorSearchFilterUpdateManyArgs<ExtArgs>>(
|
|
77789
|
+
args: SelectSubset<T, CreatorSearchFilterUpdateManyArgs<ExtArgs>>
|
|
77790
|
+
): Prisma.PrismaPromise<BatchPayload>
|
|
77791
|
+
|
|
77792
|
+
/**
|
|
77793
|
+
* Create or update one CreatorSearchFilter.
|
|
77794
|
+
* @param {CreatorSearchFilterUpsertArgs} args - Arguments to update or create a CreatorSearchFilter.
|
|
77795
|
+
* @example
|
|
77796
|
+
* // Update or create a CreatorSearchFilter
|
|
77797
|
+
* const creatorSearchFilter = await prisma.creatorSearchFilter.upsert({
|
|
77798
|
+
* create: {
|
|
77799
|
+
* // ... data to create a CreatorSearchFilter
|
|
77800
|
+
* },
|
|
77801
|
+
* update: {
|
|
77802
|
+
* // ... in case it already exists, update
|
|
77803
|
+
* },
|
|
77804
|
+
* where: {
|
|
77805
|
+
* // ... the filter for the CreatorSearchFilter we want to update
|
|
77806
|
+
* }
|
|
77807
|
+
* })
|
|
77808
|
+
**/
|
|
77809
|
+
upsert<T extends CreatorSearchFilterUpsertArgs<ExtArgs>>(
|
|
77810
|
+
args: SelectSubset<T, CreatorSearchFilterUpsertArgs<ExtArgs>>
|
|
77811
|
+
): Prisma__CreatorSearchFilterClient<$Result.GetResult<Prisma.$CreatorSearchFilterPayload<ExtArgs>, T, 'upsert'>, never, ExtArgs>
|
|
77812
|
+
|
|
77813
|
+
/**
|
|
77814
|
+
* Count the number of CreatorSearchFilters.
|
|
77815
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
77816
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
77817
|
+
* @param {CreatorSearchFilterCountArgs} args - Arguments to filter CreatorSearchFilters to count.
|
|
77818
|
+
* @example
|
|
77819
|
+
* // Count the number of CreatorSearchFilters
|
|
77820
|
+
* const count = await prisma.creatorSearchFilter.count({
|
|
77821
|
+
* where: {
|
|
77822
|
+
* // ... the filter for the CreatorSearchFilters we want to count
|
|
77823
|
+
* }
|
|
77824
|
+
* })
|
|
77825
|
+
**/
|
|
77826
|
+
count<T extends CreatorSearchFilterCountArgs>(
|
|
77827
|
+
args?: Subset<T, CreatorSearchFilterCountArgs>,
|
|
77828
|
+
): Prisma.PrismaPromise<
|
|
77829
|
+
T extends $Utils.Record<'select', any>
|
|
77830
|
+
? T['select'] extends true
|
|
77831
|
+
? number
|
|
77832
|
+
: GetScalarType<T['select'], CreatorSearchFilterCountAggregateOutputType>
|
|
77833
|
+
: number
|
|
77834
|
+
>
|
|
77835
|
+
|
|
77836
|
+
/**
|
|
77837
|
+
* Allows you to perform aggregations operations on a CreatorSearchFilter.
|
|
77838
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
77839
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
77840
|
+
* @param {CreatorSearchFilterAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
77841
|
+
* @example
|
|
77842
|
+
* // Ordered by age ascending
|
|
77843
|
+
* // Where email contains prisma.io
|
|
77844
|
+
* // Limited to the 10 users
|
|
77845
|
+
* const aggregations = await prisma.user.aggregate({
|
|
77846
|
+
* _avg: {
|
|
77847
|
+
* age: true,
|
|
77848
|
+
* },
|
|
77849
|
+
* where: {
|
|
77850
|
+
* email: {
|
|
77851
|
+
* contains: "prisma.io",
|
|
77852
|
+
* },
|
|
77853
|
+
* },
|
|
77854
|
+
* orderBy: {
|
|
77855
|
+
* age: "asc",
|
|
77856
|
+
* },
|
|
77857
|
+
* take: 10,
|
|
77858
|
+
* })
|
|
77859
|
+
**/
|
|
77860
|
+
aggregate<T extends CreatorSearchFilterAggregateArgs>(args: Subset<T, CreatorSearchFilterAggregateArgs>): Prisma.PrismaPromise<GetCreatorSearchFilterAggregateType<T>>
|
|
77861
|
+
|
|
77862
|
+
/**
|
|
77863
|
+
* Group by CreatorSearchFilter.
|
|
77864
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
77865
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
77866
|
+
* @param {CreatorSearchFilterGroupByArgs} args - Group by arguments.
|
|
77867
|
+
* @example
|
|
77868
|
+
* // Group by city, order by createdAt, get count
|
|
77869
|
+
* const result = await prisma.user.groupBy({
|
|
77870
|
+
* by: ['city', 'createdAt'],
|
|
77871
|
+
* orderBy: {
|
|
77872
|
+
* createdAt: true
|
|
77873
|
+
* },
|
|
77874
|
+
* _count: {
|
|
77875
|
+
* _all: true
|
|
77876
|
+
* },
|
|
77877
|
+
* })
|
|
77878
|
+
*
|
|
77879
|
+
**/
|
|
77880
|
+
groupBy<
|
|
77881
|
+
T extends CreatorSearchFilterGroupByArgs,
|
|
77882
|
+
HasSelectOrTake extends Or<
|
|
77883
|
+
Extends<'skip', Keys<T>>,
|
|
77884
|
+
Extends<'take', Keys<T>>
|
|
77885
|
+
>,
|
|
77886
|
+
OrderByArg extends True extends HasSelectOrTake
|
|
77887
|
+
? { orderBy: CreatorSearchFilterGroupByArgs['orderBy'] }
|
|
77888
|
+
: { orderBy?: CreatorSearchFilterGroupByArgs['orderBy'] },
|
|
76729
77889
|
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
76730
77890
|
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
76731
77891
|
ByValid extends Has<ByFields, OrderFields>,
|
|
@@ -87490,6 +88650,19 @@ export namespace Prisma {
|
|
|
87490
88650
|
export type ImpactRadiusEventScalarFieldEnum = (typeof ImpactRadiusEventScalarFieldEnum)[keyof typeof ImpactRadiusEventScalarFieldEnum]
|
|
87491
88651
|
|
|
87492
88652
|
|
|
88653
|
+
export const ShareASaleEventScalarFieldEnum: {
|
|
88654
|
+
id: 'id',
|
|
88655
|
+
transactionId: 'transactionId',
|
|
88656
|
+
created: 'created',
|
|
88657
|
+
saleAmount: 'saleAmount',
|
|
88658
|
+
commission: 'commission',
|
|
88659
|
+
metaData: 'metaData',
|
|
88660
|
+
optInId: 'optInId'
|
|
88661
|
+
};
|
|
88662
|
+
|
|
88663
|
+
export type ShareASaleEventScalarFieldEnum = (typeof ShareASaleEventScalarFieldEnum)[keyof typeof ShareASaleEventScalarFieldEnum]
|
|
88664
|
+
|
|
88665
|
+
|
|
87493
88666
|
export const CreatorSearchFilterScalarFieldEnum: {
|
|
87494
88667
|
id: 'id',
|
|
87495
88668
|
brandId: 'brandId',
|
|
@@ -88116,6 +89289,13 @@ export namespace Prisma {
|
|
|
88116
89289
|
export type ImpactRadiusEventOrderByRelevanceFieldEnum = (typeof ImpactRadiusEventOrderByRelevanceFieldEnum)[keyof typeof ImpactRadiusEventOrderByRelevanceFieldEnum]
|
|
88117
89290
|
|
|
88118
89291
|
|
|
89292
|
+
export const ShareASaleEventOrderByRelevanceFieldEnum: {
|
|
89293
|
+
transactionId: 'transactionId'
|
|
89294
|
+
};
|
|
89295
|
+
|
|
89296
|
+
export type ShareASaleEventOrderByRelevanceFieldEnum = (typeof ShareASaleEventOrderByRelevanceFieldEnum)[keyof typeof ShareASaleEventOrderByRelevanceFieldEnum]
|
|
89297
|
+
|
|
89298
|
+
|
|
88119
89299
|
export const CreatorSearchFilterOrderByRelevanceFieldEnum: {
|
|
88120
89300
|
title: 'title'
|
|
88121
89301
|
};
|
|
@@ -88268,6 +89448,20 @@ export namespace Prisma {
|
|
|
88268
89448
|
|
|
88269
89449
|
|
|
88270
89450
|
|
|
89451
|
+
/**
|
|
89452
|
+
* Reference to a field of type 'Decimal'
|
|
89453
|
+
*/
|
|
89454
|
+
export type DecimalFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Decimal'>
|
|
89455
|
+
|
|
89456
|
+
|
|
89457
|
+
|
|
89458
|
+
/**
|
|
89459
|
+
* Reference to a field of type 'Decimal[]'
|
|
89460
|
+
*/
|
|
89461
|
+
export type ListDecimalFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Decimal[]'>
|
|
89462
|
+
|
|
89463
|
+
|
|
89464
|
+
|
|
88271
89465
|
/**
|
|
88272
89466
|
* Reference to a field of type 'ShopifyStoreSyncStatus'
|
|
88273
89467
|
*/
|
|
@@ -91336,6 +92530,7 @@ export namespace Prisma {
|
|
|
91336
92530
|
productListItems?: OptinToProductListItemListRelationFilter
|
|
91337
92531
|
ExternalAffiliateClick?: ExternalAffiliateClickListRelationFilter
|
|
91338
92532
|
ImpactRadiusEvent?: ImpactRadiusEventListRelationFilter
|
|
92533
|
+
ShareASaleEvents?: ShareASaleEventListRelationFilter
|
|
91339
92534
|
}
|
|
91340
92535
|
|
|
91341
92536
|
export type OptInOrderByWithRelationAndSearchRelevanceInput = {
|
|
@@ -91369,6 +92564,7 @@ export namespace Prisma {
|
|
|
91369
92564
|
productListItems?: OptinToProductListItemOrderByRelationAggregateInput
|
|
91370
92565
|
ExternalAffiliateClick?: ExternalAffiliateClickOrderByRelationAggregateInput
|
|
91371
92566
|
ImpactRadiusEvent?: ImpactRadiusEventOrderByRelationAggregateInput
|
|
92567
|
+
ShareASaleEvents?: ShareASaleEventOrderByRelationAggregateInput
|
|
91372
92568
|
_relevance?: OptInOrderByRelevanceInput
|
|
91373
92569
|
}
|
|
91374
92570
|
|
|
@@ -91406,6 +92602,7 @@ export namespace Prisma {
|
|
|
91406
92602
|
productListItems?: OptinToProductListItemListRelationFilter
|
|
91407
92603
|
ExternalAffiliateClick?: ExternalAffiliateClickListRelationFilter
|
|
91408
92604
|
ImpactRadiusEvent?: ImpactRadiusEventListRelationFilter
|
|
92605
|
+
ShareASaleEvents?: ShareASaleEventListRelationFilter
|
|
91409
92606
|
}, "id">
|
|
91410
92607
|
|
|
91411
92608
|
export type OptInOrderByWithAggregationInput = {
|
|
@@ -93597,6 +94794,74 @@ export namespace Prisma {
|
|
|
93597
94794
|
optInId?: IntNullableWithAggregatesFilter<"ImpactRadiusEvent"> | number | null
|
|
93598
94795
|
}
|
|
93599
94796
|
|
|
94797
|
+
export type ShareASaleEventWhereInput = {
|
|
94798
|
+
AND?: ShareASaleEventWhereInput | ShareASaleEventWhereInput[]
|
|
94799
|
+
OR?: ShareASaleEventWhereInput[]
|
|
94800
|
+
NOT?: ShareASaleEventWhereInput | ShareASaleEventWhereInput[]
|
|
94801
|
+
id?: IntFilter<"ShareASaleEvent"> | number
|
|
94802
|
+
transactionId?: StringNullableFilter<"ShareASaleEvent"> | string | null
|
|
94803
|
+
created?: DateTimeFilter<"ShareASaleEvent"> | Date | string
|
|
94804
|
+
saleAmount?: DecimalNullableFilter<"ShareASaleEvent"> | Decimal | DecimalJsLike | number | string | null
|
|
94805
|
+
commission?: DecimalNullableFilter<"ShareASaleEvent"> | Decimal | DecimalJsLike | number | string | null
|
|
94806
|
+
metaData?: JsonFilter<"ShareASaleEvent">
|
|
94807
|
+
optInId?: IntNullableFilter<"ShareASaleEvent"> | number | null
|
|
94808
|
+
optIn?: XOR<OptInNullableRelationFilter, OptInWhereInput> | null
|
|
94809
|
+
}
|
|
94810
|
+
|
|
94811
|
+
export type ShareASaleEventOrderByWithRelationAndSearchRelevanceInput = {
|
|
94812
|
+
id?: SortOrder
|
|
94813
|
+
transactionId?: SortOrderInput | SortOrder
|
|
94814
|
+
created?: SortOrder
|
|
94815
|
+
saleAmount?: SortOrderInput | SortOrder
|
|
94816
|
+
commission?: SortOrderInput | SortOrder
|
|
94817
|
+
metaData?: SortOrder
|
|
94818
|
+
optInId?: SortOrderInput | SortOrder
|
|
94819
|
+
optIn?: OptInOrderByWithRelationAndSearchRelevanceInput
|
|
94820
|
+
_relevance?: ShareASaleEventOrderByRelevanceInput
|
|
94821
|
+
}
|
|
94822
|
+
|
|
94823
|
+
export type ShareASaleEventWhereUniqueInput = Prisma.AtLeast<{
|
|
94824
|
+
id?: number
|
|
94825
|
+
transactionId?: string
|
|
94826
|
+
AND?: ShareASaleEventWhereInput | ShareASaleEventWhereInput[]
|
|
94827
|
+
OR?: ShareASaleEventWhereInput[]
|
|
94828
|
+
NOT?: ShareASaleEventWhereInput | ShareASaleEventWhereInput[]
|
|
94829
|
+
created?: DateTimeFilter<"ShareASaleEvent"> | Date | string
|
|
94830
|
+
saleAmount?: DecimalNullableFilter<"ShareASaleEvent"> | Decimal | DecimalJsLike | number | string | null
|
|
94831
|
+
commission?: DecimalNullableFilter<"ShareASaleEvent"> | Decimal | DecimalJsLike | number | string | null
|
|
94832
|
+
metaData?: JsonFilter<"ShareASaleEvent">
|
|
94833
|
+
optInId?: IntNullableFilter<"ShareASaleEvent"> | number | null
|
|
94834
|
+
optIn?: XOR<OptInNullableRelationFilter, OptInWhereInput> | null
|
|
94835
|
+
}, "id" | "transactionId">
|
|
94836
|
+
|
|
94837
|
+
export type ShareASaleEventOrderByWithAggregationInput = {
|
|
94838
|
+
id?: SortOrder
|
|
94839
|
+
transactionId?: SortOrderInput | SortOrder
|
|
94840
|
+
created?: SortOrder
|
|
94841
|
+
saleAmount?: SortOrderInput | SortOrder
|
|
94842
|
+
commission?: SortOrderInput | SortOrder
|
|
94843
|
+
metaData?: SortOrder
|
|
94844
|
+
optInId?: SortOrderInput | SortOrder
|
|
94845
|
+
_count?: ShareASaleEventCountOrderByAggregateInput
|
|
94846
|
+
_avg?: ShareASaleEventAvgOrderByAggregateInput
|
|
94847
|
+
_max?: ShareASaleEventMaxOrderByAggregateInput
|
|
94848
|
+
_min?: ShareASaleEventMinOrderByAggregateInput
|
|
94849
|
+
_sum?: ShareASaleEventSumOrderByAggregateInput
|
|
94850
|
+
}
|
|
94851
|
+
|
|
94852
|
+
export type ShareASaleEventScalarWhereWithAggregatesInput = {
|
|
94853
|
+
AND?: ShareASaleEventScalarWhereWithAggregatesInput | ShareASaleEventScalarWhereWithAggregatesInput[]
|
|
94854
|
+
OR?: ShareASaleEventScalarWhereWithAggregatesInput[]
|
|
94855
|
+
NOT?: ShareASaleEventScalarWhereWithAggregatesInput | ShareASaleEventScalarWhereWithAggregatesInput[]
|
|
94856
|
+
id?: IntWithAggregatesFilter<"ShareASaleEvent"> | number
|
|
94857
|
+
transactionId?: StringNullableWithAggregatesFilter<"ShareASaleEvent"> | string | null
|
|
94858
|
+
created?: DateTimeWithAggregatesFilter<"ShareASaleEvent"> | Date | string
|
|
94859
|
+
saleAmount?: DecimalNullableWithAggregatesFilter<"ShareASaleEvent"> | Decimal | DecimalJsLike | number | string | null
|
|
94860
|
+
commission?: DecimalNullableWithAggregatesFilter<"ShareASaleEvent"> | Decimal | DecimalJsLike | number | string | null
|
|
94861
|
+
metaData?: JsonWithAggregatesFilter<"ShareASaleEvent">
|
|
94862
|
+
optInId?: IntNullableWithAggregatesFilter<"ShareASaleEvent"> | number | null
|
|
94863
|
+
}
|
|
94864
|
+
|
|
93600
94865
|
export type CreatorSearchFilterWhereInput = {
|
|
93601
94866
|
AND?: CreatorSearchFilterWhereInput | CreatorSearchFilterWhereInput[]
|
|
93602
94867
|
OR?: CreatorSearchFilterWhereInput[]
|
|
@@ -97461,6 +98726,7 @@ export namespace Prisma {
|
|
|
97461
98726
|
productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
|
|
97462
98727
|
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
|
|
97463
98728
|
ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
|
|
98729
|
+
ShareASaleEvents?: ShareASaleEventCreateNestedManyWithoutOptInInput
|
|
97464
98730
|
}
|
|
97465
98731
|
|
|
97466
98732
|
export type OptInUncheckedCreateInput = {
|
|
@@ -97491,6 +98757,7 @@ export namespace Prisma {
|
|
|
97491
98757
|
productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
|
|
97492
98758
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
97493
98759
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
|
|
98760
|
+
ShareASaleEvents?: ShareASaleEventUncheckedCreateNestedManyWithoutOptInInput
|
|
97494
98761
|
}
|
|
97495
98762
|
|
|
97496
98763
|
export type OptInUpdateInput = {
|
|
@@ -97520,6 +98787,7 @@ export namespace Prisma {
|
|
|
97520
98787
|
productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
|
|
97521
98788
|
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
|
|
97522
98789
|
ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
|
|
98790
|
+
ShareASaleEvents?: ShareASaleEventUpdateManyWithoutOptInNestedInput
|
|
97523
98791
|
}
|
|
97524
98792
|
|
|
97525
98793
|
export type OptInUncheckedUpdateInput = {
|
|
@@ -97550,6 +98818,7 @@ export namespace Prisma {
|
|
|
97550
98818
|
productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
|
|
97551
98819
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
97552
98820
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
98821
|
+
ShareASaleEvents?: ShareASaleEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
97553
98822
|
}
|
|
97554
98823
|
|
|
97555
98824
|
export type OptInCreateManyInput = {
|
|
@@ -99775,6 +101044,72 @@ export namespace Prisma {
|
|
|
99775
101044
|
optInId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
99776
101045
|
}
|
|
99777
101046
|
|
|
101047
|
+
export type ShareASaleEventCreateInput = {
|
|
101048
|
+
transactionId?: string | null
|
|
101049
|
+
created?: Date | string
|
|
101050
|
+
saleAmount?: Decimal | DecimalJsLike | number | string | null
|
|
101051
|
+
commission?: Decimal | DecimalJsLike | number | string | null
|
|
101052
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
101053
|
+
optIn?: OptInCreateNestedOneWithoutShareASaleEventsInput
|
|
101054
|
+
}
|
|
101055
|
+
|
|
101056
|
+
export type ShareASaleEventUncheckedCreateInput = {
|
|
101057
|
+
id?: number
|
|
101058
|
+
transactionId?: string | null
|
|
101059
|
+
created?: Date | string
|
|
101060
|
+
saleAmount?: Decimal | DecimalJsLike | number | string | null
|
|
101061
|
+
commission?: Decimal | DecimalJsLike | number | string | null
|
|
101062
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
101063
|
+
optInId?: number | null
|
|
101064
|
+
}
|
|
101065
|
+
|
|
101066
|
+
export type ShareASaleEventUpdateInput = {
|
|
101067
|
+
transactionId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101068
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101069
|
+
saleAmount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
101070
|
+
commission?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
101071
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
101072
|
+
optIn?: OptInUpdateOneWithoutShareASaleEventsNestedInput
|
|
101073
|
+
}
|
|
101074
|
+
|
|
101075
|
+
export type ShareASaleEventUncheckedUpdateInput = {
|
|
101076
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
101077
|
+
transactionId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101078
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101079
|
+
saleAmount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
101080
|
+
commission?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
101081
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
101082
|
+
optInId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
101083
|
+
}
|
|
101084
|
+
|
|
101085
|
+
export type ShareASaleEventCreateManyInput = {
|
|
101086
|
+
id?: number
|
|
101087
|
+
transactionId?: string | null
|
|
101088
|
+
created?: Date | string
|
|
101089
|
+
saleAmount?: Decimal | DecimalJsLike | number | string | null
|
|
101090
|
+
commission?: Decimal | DecimalJsLike | number | string | null
|
|
101091
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
101092
|
+
optInId?: number | null
|
|
101093
|
+
}
|
|
101094
|
+
|
|
101095
|
+
export type ShareASaleEventUpdateManyMutationInput = {
|
|
101096
|
+
transactionId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101097
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101098
|
+
saleAmount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
101099
|
+
commission?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
101100
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
101101
|
+
}
|
|
101102
|
+
|
|
101103
|
+
export type ShareASaleEventUncheckedUpdateManyInput = {
|
|
101104
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
101105
|
+
transactionId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101106
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101107
|
+
saleAmount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
101108
|
+
commission?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
101109
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
101110
|
+
optInId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
101111
|
+
}
|
|
101112
|
+
|
|
99778
101113
|
export type CreatorSearchFilterCreateInput = {
|
|
99779
101114
|
title: string
|
|
99780
101115
|
filters?: JsonNullValueInput | InputJsonValue
|
|
@@ -103223,6 +104558,12 @@ export namespace Prisma {
|
|
|
103223
104558
|
none?: AffiliateClickWhereInput
|
|
103224
104559
|
}
|
|
103225
104560
|
|
|
104561
|
+
export type ShareASaleEventListRelationFilter = {
|
|
104562
|
+
every?: ShareASaleEventWhereInput
|
|
104563
|
+
some?: ShareASaleEventWhereInput
|
|
104564
|
+
none?: ShareASaleEventWhereInput
|
|
104565
|
+
}
|
|
104566
|
+
|
|
103226
104567
|
export type TrolleyPaymentOrderByRelationAggregateInput = {
|
|
103227
104568
|
_count?: SortOrder
|
|
103228
104569
|
}
|
|
@@ -103231,6 +104572,10 @@ export namespace Prisma {
|
|
|
103231
104572
|
_count?: SortOrder
|
|
103232
104573
|
}
|
|
103233
104574
|
|
|
104575
|
+
export type ShareASaleEventOrderByRelationAggregateInput = {
|
|
104576
|
+
_count?: SortOrder
|
|
104577
|
+
}
|
|
104578
|
+
|
|
103234
104579
|
export type OptInOrderByRelevanceInput = {
|
|
103235
104580
|
fields: OptInOrderByRelevanceFieldEnum | OptInOrderByRelevanceFieldEnum[]
|
|
103236
104581
|
sort: SortOrder
|
|
@@ -104910,6 +106255,81 @@ export namespace Prisma {
|
|
|
104910
106255
|
optInId?: SortOrder
|
|
104911
106256
|
}
|
|
104912
106257
|
|
|
106258
|
+
export type DecimalNullableFilter<$PrismaModel = never> = {
|
|
106259
|
+
equals?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel> | null
|
|
106260
|
+
in?: Decimal[] | DecimalJsLike[] | number[] | string[] | ListDecimalFieldRefInput<$PrismaModel> | null
|
|
106261
|
+
notIn?: Decimal[] | DecimalJsLike[] | number[] | string[] | ListDecimalFieldRefInput<$PrismaModel> | null
|
|
106262
|
+
lt?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
106263
|
+
lte?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
106264
|
+
gt?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
106265
|
+
gte?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
106266
|
+
not?: NestedDecimalNullableFilter<$PrismaModel> | Decimal | DecimalJsLike | number | string | null
|
|
106267
|
+
}
|
|
106268
|
+
|
|
106269
|
+
export type ShareASaleEventOrderByRelevanceInput = {
|
|
106270
|
+
fields: ShareASaleEventOrderByRelevanceFieldEnum | ShareASaleEventOrderByRelevanceFieldEnum[]
|
|
106271
|
+
sort: SortOrder
|
|
106272
|
+
search: string
|
|
106273
|
+
}
|
|
106274
|
+
|
|
106275
|
+
export type ShareASaleEventCountOrderByAggregateInput = {
|
|
106276
|
+
id?: SortOrder
|
|
106277
|
+
transactionId?: SortOrder
|
|
106278
|
+
created?: SortOrder
|
|
106279
|
+
saleAmount?: SortOrder
|
|
106280
|
+
commission?: SortOrder
|
|
106281
|
+
metaData?: SortOrder
|
|
106282
|
+
optInId?: SortOrder
|
|
106283
|
+
}
|
|
106284
|
+
|
|
106285
|
+
export type ShareASaleEventAvgOrderByAggregateInput = {
|
|
106286
|
+
id?: SortOrder
|
|
106287
|
+
saleAmount?: SortOrder
|
|
106288
|
+
commission?: SortOrder
|
|
106289
|
+
optInId?: SortOrder
|
|
106290
|
+
}
|
|
106291
|
+
|
|
106292
|
+
export type ShareASaleEventMaxOrderByAggregateInput = {
|
|
106293
|
+
id?: SortOrder
|
|
106294
|
+
transactionId?: SortOrder
|
|
106295
|
+
created?: SortOrder
|
|
106296
|
+
saleAmount?: SortOrder
|
|
106297
|
+
commission?: SortOrder
|
|
106298
|
+
optInId?: SortOrder
|
|
106299
|
+
}
|
|
106300
|
+
|
|
106301
|
+
export type ShareASaleEventMinOrderByAggregateInput = {
|
|
106302
|
+
id?: SortOrder
|
|
106303
|
+
transactionId?: SortOrder
|
|
106304
|
+
created?: SortOrder
|
|
106305
|
+
saleAmount?: SortOrder
|
|
106306
|
+
commission?: SortOrder
|
|
106307
|
+
optInId?: SortOrder
|
|
106308
|
+
}
|
|
106309
|
+
|
|
106310
|
+
export type ShareASaleEventSumOrderByAggregateInput = {
|
|
106311
|
+
id?: SortOrder
|
|
106312
|
+
saleAmount?: SortOrder
|
|
106313
|
+
commission?: SortOrder
|
|
106314
|
+
optInId?: SortOrder
|
|
106315
|
+
}
|
|
106316
|
+
|
|
106317
|
+
export type DecimalNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
106318
|
+
equals?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel> | null
|
|
106319
|
+
in?: Decimal[] | DecimalJsLike[] | number[] | string[] | ListDecimalFieldRefInput<$PrismaModel> | null
|
|
106320
|
+
notIn?: Decimal[] | DecimalJsLike[] | number[] | string[] | ListDecimalFieldRefInput<$PrismaModel> | null
|
|
106321
|
+
lt?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
106322
|
+
lte?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
106323
|
+
gt?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
106324
|
+
gte?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
106325
|
+
not?: NestedDecimalNullableWithAggregatesFilter<$PrismaModel> | Decimal | DecimalJsLike | number | string | null
|
|
106326
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
106327
|
+
_avg?: NestedDecimalNullableFilter<$PrismaModel>
|
|
106328
|
+
_sum?: NestedDecimalNullableFilter<$PrismaModel>
|
|
106329
|
+
_min?: NestedDecimalNullableFilter<$PrismaModel>
|
|
106330
|
+
_max?: NestedDecimalNullableFilter<$PrismaModel>
|
|
106331
|
+
}
|
|
106332
|
+
|
|
104913
106333
|
export type CreatorSearchFilterOrderByRelevanceInput = {
|
|
104914
106334
|
fields: CreatorSearchFilterOrderByRelevanceFieldEnum | CreatorSearchFilterOrderByRelevanceFieldEnum[]
|
|
104915
106335
|
sort: SortOrder
|
|
@@ -109386,6 +110806,13 @@ export namespace Prisma {
|
|
|
109386
110806
|
connect?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
109387
110807
|
}
|
|
109388
110808
|
|
|
110809
|
+
export type ShareASaleEventCreateNestedManyWithoutOptInInput = {
|
|
110810
|
+
create?: XOR<ShareASaleEventCreateWithoutOptInInput, ShareASaleEventUncheckedCreateWithoutOptInInput> | ShareASaleEventCreateWithoutOptInInput[] | ShareASaleEventUncheckedCreateWithoutOptInInput[]
|
|
110811
|
+
connectOrCreate?: ShareASaleEventCreateOrConnectWithoutOptInInput | ShareASaleEventCreateOrConnectWithoutOptInInput[]
|
|
110812
|
+
createMany?: ShareASaleEventCreateManyOptInInputEnvelope
|
|
110813
|
+
connect?: ShareASaleEventWhereUniqueInput | ShareASaleEventWhereUniqueInput[]
|
|
110814
|
+
}
|
|
110815
|
+
|
|
109389
110816
|
export type OptInVariableUncheckedCreateNestedManyWithoutOptInInput = {
|
|
109390
110817
|
create?: XOR<OptInVariableCreateWithoutOptInInput, OptInVariableUncheckedCreateWithoutOptInInput> | OptInVariableCreateWithoutOptInInput[] | OptInVariableUncheckedCreateWithoutOptInInput[]
|
|
109391
110818
|
connectOrCreate?: OptInVariableCreateOrConnectWithoutOptInInput | OptInVariableCreateOrConnectWithoutOptInInput[]
|
|
@@ -109448,6 +110875,13 @@ export namespace Prisma {
|
|
|
109448
110875
|
connect?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
109449
110876
|
}
|
|
109450
110877
|
|
|
110878
|
+
export type ShareASaleEventUncheckedCreateNestedManyWithoutOptInInput = {
|
|
110879
|
+
create?: XOR<ShareASaleEventCreateWithoutOptInInput, ShareASaleEventUncheckedCreateWithoutOptInInput> | ShareASaleEventCreateWithoutOptInInput[] | ShareASaleEventUncheckedCreateWithoutOptInInput[]
|
|
110880
|
+
connectOrCreate?: ShareASaleEventCreateOrConnectWithoutOptInInput | ShareASaleEventCreateOrConnectWithoutOptInInput[]
|
|
110881
|
+
createMany?: ShareASaleEventCreateManyOptInInputEnvelope
|
|
110882
|
+
connect?: ShareASaleEventWhereUniqueInput | ShareASaleEventWhereUniqueInput[]
|
|
110883
|
+
}
|
|
110884
|
+
|
|
109451
110885
|
export type UserUpdateOneRequiredWithoutOptInsNestedInput = {
|
|
109452
110886
|
create?: XOR<UserCreateWithoutOptInsInput, UserUncheckedCreateWithoutOptInsInput>
|
|
109453
110887
|
connectOrCreate?: UserCreateOrConnectWithoutOptInsInput
|
|
@@ -109596,6 +111030,20 @@ export namespace Prisma {
|
|
|
109596
111030
|
deleteMany?: ImpactRadiusEventScalarWhereInput | ImpactRadiusEventScalarWhereInput[]
|
|
109597
111031
|
}
|
|
109598
111032
|
|
|
111033
|
+
export type ShareASaleEventUpdateManyWithoutOptInNestedInput = {
|
|
111034
|
+
create?: XOR<ShareASaleEventCreateWithoutOptInInput, ShareASaleEventUncheckedCreateWithoutOptInInput> | ShareASaleEventCreateWithoutOptInInput[] | ShareASaleEventUncheckedCreateWithoutOptInInput[]
|
|
111035
|
+
connectOrCreate?: ShareASaleEventCreateOrConnectWithoutOptInInput | ShareASaleEventCreateOrConnectWithoutOptInInput[]
|
|
111036
|
+
upsert?: ShareASaleEventUpsertWithWhereUniqueWithoutOptInInput | ShareASaleEventUpsertWithWhereUniqueWithoutOptInInput[]
|
|
111037
|
+
createMany?: ShareASaleEventCreateManyOptInInputEnvelope
|
|
111038
|
+
set?: ShareASaleEventWhereUniqueInput | ShareASaleEventWhereUniqueInput[]
|
|
111039
|
+
disconnect?: ShareASaleEventWhereUniqueInput | ShareASaleEventWhereUniqueInput[]
|
|
111040
|
+
delete?: ShareASaleEventWhereUniqueInput | ShareASaleEventWhereUniqueInput[]
|
|
111041
|
+
connect?: ShareASaleEventWhereUniqueInput | ShareASaleEventWhereUniqueInput[]
|
|
111042
|
+
update?: ShareASaleEventUpdateWithWhereUniqueWithoutOptInInput | ShareASaleEventUpdateWithWhereUniqueWithoutOptInInput[]
|
|
111043
|
+
updateMany?: ShareASaleEventUpdateManyWithWhereWithoutOptInInput | ShareASaleEventUpdateManyWithWhereWithoutOptInInput[]
|
|
111044
|
+
deleteMany?: ShareASaleEventScalarWhereInput | ShareASaleEventScalarWhereInput[]
|
|
111045
|
+
}
|
|
111046
|
+
|
|
109599
111047
|
export type OptInVariableUncheckedUpdateManyWithoutOptInNestedInput = {
|
|
109600
111048
|
create?: XOR<OptInVariableCreateWithoutOptInInput, OptInVariableUncheckedCreateWithoutOptInInput> | OptInVariableCreateWithoutOptInInput[] | OptInVariableUncheckedCreateWithoutOptInInput[]
|
|
109601
111049
|
connectOrCreate?: OptInVariableCreateOrConnectWithoutOptInInput | OptInVariableCreateOrConnectWithoutOptInInput[]
|
|
@@ -109718,6 +111166,20 @@ export namespace Prisma {
|
|
|
109718
111166
|
deleteMany?: ImpactRadiusEventScalarWhereInput | ImpactRadiusEventScalarWhereInput[]
|
|
109719
111167
|
}
|
|
109720
111168
|
|
|
111169
|
+
export type ShareASaleEventUncheckedUpdateManyWithoutOptInNestedInput = {
|
|
111170
|
+
create?: XOR<ShareASaleEventCreateWithoutOptInInput, ShareASaleEventUncheckedCreateWithoutOptInInput> | ShareASaleEventCreateWithoutOptInInput[] | ShareASaleEventUncheckedCreateWithoutOptInInput[]
|
|
111171
|
+
connectOrCreate?: ShareASaleEventCreateOrConnectWithoutOptInInput | ShareASaleEventCreateOrConnectWithoutOptInInput[]
|
|
111172
|
+
upsert?: ShareASaleEventUpsertWithWhereUniqueWithoutOptInInput | ShareASaleEventUpsertWithWhereUniqueWithoutOptInInput[]
|
|
111173
|
+
createMany?: ShareASaleEventCreateManyOptInInputEnvelope
|
|
111174
|
+
set?: ShareASaleEventWhereUniqueInput | ShareASaleEventWhereUniqueInput[]
|
|
111175
|
+
disconnect?: ShareASaleEventWhereUniqueInput | ShareASaleEventWhereUniqueInput[]
|
|
111176
|
+
delete?: ShareASaleEventWhereUniqueInput | ShareASaleEventWhereUniqueInput[]
|
|
111177
|
+
connect?: ShareASaleEventWhereUniqueInput | ShareASaleEventWhereUniqueInput[]
|
|
111178
|
+
update?: ShareASaleEventUpdateWithWhereUniqueWithoutOptInInput | ShareASaleEventUpdateWithWhereUniqueWithoutOptInInput[]
|
|
111179
|
+
updateMany?: ShareASaleEventUpdateManyWithWhereWithoutOptInInput | ShareASaleEventUpdateManyWithWhereWithoutOptInInput[]
|
|
111180
|
+
deleteMany?: ShareASaleEventScalarWhereInput | ShareASaleEventScalarWhereInput[]
|
|
111181
|
+
}
|
|
111182
|
+
|
|
109721
111183
|
export type OptInCreateNestedOneWithoutTrolleyPaymentsInput = {
|
|
109722
111184
|
create?: XOR<OptInCreateWithoutTrolleyPaymentsInput, OptInUncheckedCreateWithoutTrolleyPaymentsInput>
|
|
109723
111185
|
connectOrCreate?: OptInCreateOrConnectWithoutTrolleyPaymentsInput
|
|
@@ -111028,6 +112490,30 @@ export namespace Prisma {
|
|
|
111028
112490
|
update?: XOR<XOR<OptInUpdateToOneWithWhereWithoutImpactRadiusEventInput, OptInUpdateWithoutImpactRadiusEventInput>, OptInUncheckedUpdateWithoutImpactRadiusEventInput>
|
|
111029
112491
|
}
|
|
111030
112492
|
|
|
112493
|
+
export type OptInCreateNestedOneWithoutShareASaleEventsInput = {
|
|
112494
|
+
create?: XOR<OptInCreateWithoutShareASaleEventsInput, OptInUncheckedCreateWithoutShareASaleEventsInput>
|
|
112495
|
+
connectOrCreate?: OptInCreateOrConnectWithoutShareASaleEventsInput
|
|
112496
|
+
connect?: OptInWhereUniqueInput
|
|
112497
|
+
}
|
|
112498
|
+
|
|
112499
|
+
export type NullableDecimalFieldUpdateOperationsInput = {
|
|
112500
|
+
set?: Decimal | DecimalJsLike | number | string | null
|
|
112501
|
+
increment?: Decimal | DecimalJsLike | number | string
|
|
112502
|
+
decrement?: Decimal | DecimalJsLike | number | string
|
|
112503
|
+
multiply?: Decimal | DecimalJsLike | number | string
|
|
112504
|
+
divide?: Decimal | DecimalJsLike | number | string
|
|
112505
|
+
}
|
|
112506
|
+
|
|
112507
|
+
export type OptInUpdateOneWithoutShareASaleEventsNestedInput = {
|
|
112508
|
+
create?: XOR<OptInCreateWithoutShareASaleEventsInput, OptInUncheckedCreateWithoutShareASaleEventsInput>
|
|
112509
|
+
connectOrCreate?: OptInCreateOrConnectWithoutShareASaleEventsInput
|
|
112510
|
+
upsert?: OptInUpsertWithoutShareASaleEventsInput
|
|
112511
|
+
disconnect?: OptInWhereInput | boolean
|
|
112512
|
+
delete?: OptInWhereInput | boolean
|
|
112513
|
+
connect?: OptInWhereUniqueInput
|
|
112514
|
+
update?: XOR<XOR<OptInUpdateToOneWithWhereWithoutShareASaleEventsInput, OptInUpdateWithoutShareASaleEventsInput>, OptInUncheckedUpdateWithoutShareASaleEventsInput>
|
|
112515
|
+
}
|
|
112516
|
+
|
|
111031
112517
|
export type BrandCreateNestedOneWithoutCreatorsearchfilterInput = {
|
|
111032
112518
|
create?: XOR<BrandCreateWithoutCreatorsearchfilterInput, BrandUncheckedCreateWithoutCreatorsearchfilterInput>
|
|
111033
112519
|
connectOrCreate?: BrandCreateOrConnectWithoutCreatorsearchfilterInput
|
|
@@ -111950,6 +113436,33 @@ export namespace Prisma {
|
|
|
111950
113436
|
_max?: NestedEnumtrolleyPaymentStatusFilter<$PrismaModel>
|
|
111951
113437
|
}
|
|
111952
113438
|
|
|
113439
|
+
export type NestedDecimalNullableFilter<$PrismaModel = never> = {
|
|
113440
|
+
equals?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel> | null
|
|
113441
|
+
in?: Decimal[] | DecimalJsLike[] | number[] | string[] | ListDecimalFieldRefInput<$PrismaModel> | null
|
|
113442
|
+
notIn?: Decimal[] | DecimalJsLike[] | number[] | string[] | ListDecimalFieldRefInput<$PrismaModel> | null
|
|
113443
|
+
lt?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
113444
|
+
lte?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
113445
|
+
gt?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
113446
|
+
gte?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
113447
|
+
not?: NestedDecimalNullableFilter<$PrismaModel> | Decimal | DecimalJsLike | number | string | null
|
|
113448
|
+
}
|
|
113449
|
+
|
|
113450
|
+
export type NestedDecimalNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
113451
|
+
equals?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel> | null
|
|
113452
|
+
in?: Decimal[] | DecimalJsLike[] | number[] | string[] | ListDecimalFieldRefInput<$PrismaModel> | null
|
|
113453
|
+
notIn?: Decimal[] | DecimalJsLike[] | number[] | string[] | ListDecimalFieldRefInput<$PrismaModel> | null
|
|
113454
|
+
lt?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
113455
|
+
lte?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
113456
|
+
gt?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
113457
|
+
gte?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
113458
|
+
not?: NestedDecimalNullableWithAggregatesFilter<$PrismaModel> | Decimal | DecimalJsLike | number | string | null
|
|
113459
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
113460
|
+
_avg?: NestedDecimalNullableFilter<$PrismaModel>
|
|
113461
|
+
_sum?: NestedDecimalNullableFilter<$PrismaModel>
|
|
113462
|
+
_min?: NestedDecimalNullableFilter<$PrismaModel>
|
|
113463
|
+
_max?: NestedDecimalNullableFilter<$PrismaModel>
|
|
113464
|
+
}
|
|
113465
|
+
|
|
111953
113466
|
export type NestedEnumShopifyStoreSyncStatusFilter<$PrismaModel = never> = {
|
|
111954
113467
|
equals?: $Enums.ShopifyStoreSyncStatus | EnumShopifyStoreSyncStatusFieldRefInput<$PrismaModel>
|
|
111955
113468
|
in?: $Enums.ShopifyStoreSyncStatus[] | ListEnumShopifyStoreSyncStatusFieldRefInput<$PrismaModel>
|
|
@@ -112532,6 +114045,7 @@ export namespace Prisma {
|
|
|
112532
114045
|
productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
|
|
112533
114046
|
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
|
|
112534
114047
|
ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
|
|
114048
|
+
ShareASaleEvents?: ShareASaleEventCreateNestedManyWithoutOptInInput
|
|
112535
114049
|
}
|
|
112536
114050
|
|
|
112537
114051
|
export type OptInUncheckedCreateWithoutUserInput = {
|
|
@@ -112561,6 +114075,7 @@ export namespace Prisma {
|
|
|
112561
114075
|
productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
|
|
112562
114076
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
112563
114077
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
|
|
114078
|
+
ShareASaleEvents?: ShareASaleEventUncheckedCreateNestedManyWithoutOptInInput
|
|
112564
114079
|
}
|
|
112565
114080
|
|
|
112566
114081
|
export type OptInCreateOrConnectWithoutUserInput = {
|
|
@@ -119485,6 +121000,7 @@ export namespace Prisma {
|
|
|
119485
121000
|
productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
|
|
119486
121001
|
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
|
|
119487
121002
|
ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
|
|
121003
|
+
ShareASaleEvents?: ShareASaleEventCreateNestedManyWithoutOptInInput
|
|
119488
121004
|
}
|
|
119489
121005
|
|
|
119490
121006
|
export type OptInUncheckedCreateWithoutChatInput = {
|
|
@@ -119514,6 +121030,7 @@ export namespace Prisma {
|
|
|
119514
121030
|
productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
|
|
119515
121031
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
119516
121032
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
|
|
121033
|
+
ShareASaleEvents?: ShareASaleEventUncheckedCreateNestedManyWithoutOptInInput
|
|
119517
121034
|
}
|
|
119518
121035
|
|
|
119519
121036
|
export type OptInCreateOrConnectWithoutChatInput = {
|
|
@@ -119589,6 +121106,7 @@ export namespace Prisma {
|
|
|
119589
121106
|
productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
|
|
119590
121107
|
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
|
|
119591
121108
|
ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
|
|
121109
|
+
ShareASaleEvents?: ShareASaleEventUpdateManyWithoutOptInNestedInput
|
|
119592
121110
|
}
|
|
119593
121111
|
|
|
119594
121112
|
export type OptInUncheckedUpdateWithoutChatInput = {
|
|
@@ -119618,6 +121136,7 @@ export namespace Prisma {
|
|
|
119618
121136
|
productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
|
|
119619
121137
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
119620
121138
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
121139
|
+
ShareASaleEvents?: ShareASaleEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
119621
121140
|
}
|
|
119622
121141
|
|
|
119623
121142
|
export type MessageUpsertWithWhereUniqueWithoutChatInput = {
|
|
@@ -119949,6 +121468,7 @@ export namespace Prisma {
|
|
|
119949
121468
|
productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
|
|
119950
121469
|
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
|
|
119951
121470
|
ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
|
|
121471
|
+
ShareASaleEvents?: ShareASaleEventCreateNestedManyWithoutOptInInput
|
|
119952
121472
|
}
|
|
119953
121473
|
|
|
119954
121474
|
export type OptInUncheckedCreateWithoutCampaignInput = {
|
|
@@ -119978,6 +121498,7 @@ export namespace Prisma {
|
|
|
119978
121498
|
productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
|
|
119979
121499
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
119980
121500
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
|
|
121501
|
+
ShareASaleEvents?: ShareASaleEventUncheckedCreateNestedManyWithoutOptInInput
|
|
119981
121502
|
}
|
|
119982
121503
|
|
|
119983
121504
|
export type OptInCreateOrConnectWithoutCampaignInput = {
|
|
@@ -123500,6 +125021,7 @@ export namespace Prisma {
|
|
|
123500
125021
|
affiliateClicks?: AffiliateClickCreateNestedManyWithoutOptinInput
|
|
123501
125022
|
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
|
|
123502
125023
|
ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
|
|
125024
|
+
ShareASaleEvents?: ShareASaleEventCreateNestedManyWithoutOptInInput
|
|
123503
125025
|
}
|
|
123504
125026
|
|
|
123505
125027
|
export type OptInUncheckedCreateWithoutProductListItemsInput = {
|
|
@@ -123529,6 +125051,7 @@ export namespace Prisma {
|
|
|
123529
125051
|
affiliateClicks?: AffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
123530
125052
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
123531
125053
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
|
|
125054
|
+
ShareASaleEvents?: ShareASaleEventUncheckedCreateNestedManyWithoutOptInInput
|
|
123532
125055
|
}
|
|
123533
125056
|
|
|
123534
125057
|
export type OptInCreateOrConnectWithoutProductListItemsInput = {
|
|
@@ -123595,6 +125118,7 @@ export namespace Prisma {
|
|
|
123595
125118
|
affiliateClicks?: AffiliateClickUpdateManyWithoutOptinNestedInput
|
|
123596
125119
|
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
|
|
123597
125120
|
ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
|
|
125121
|
+
ShareASaleEvents?: ShareASaleEventUpdateManyWithoutOptInNestedInput
|
|
123598
125122
|
}
|
|
123599
125123
|
|
|
123600
125124
|
export type OptInUncheckedUpdateWithoutProductListItemsInput = {
|
|
@@ -123624,6 +125148,7 @@ export namespace Prisma {
|
|
|
123624
125148
|
affiliateClicks?: AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
123625
125149
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
123626
125150
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
125151
|
+
ShareASaleEvents?: ShareASaleEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
123627
125152
|
}
|
|
123628
125153
|
|
|
123629
125154
|
export type ProductListItemUpsertWithoutOptinsInput = {
|
|
@@ -124383,6 +125908,7 @@ export namespace Prisma {
|
|
|
124383
125908
|
productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
|
|
124384
125909
|
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
|
|
124385
125910
|
ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
|
|
125911
|
+
ShareASaleEvents?: ShareASaleEventCreateNestedManyWithoutOptInInput
|
|
124386
125912
|
}
|
|
124387
125913
|
|
|
124388
125914
|
export type OptInUncheckedCreateWithoutCurrentStepInput = {
|
|
@@ -124412,6 +125938,7 @@ export namespace Prisma {
|
|
|
124412
125938
|
productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
|
|
124413
125939
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
124414
125940
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
|
|
125941
|
+
ShareASaleEvents?: ShareASaleEventUncheckedCreateNestedManyWithoutOptInInput
|
|
124415
125942
|
}
|
|
124416
125943
|
|
|
124417
125944
|
export type OptInCreateOrConnectWithoutCurrentStepInput = {
|
|
@@ -124697,6 +126224,7 @@ export namespace Prisma {
|
|
|
124697
126224
|
productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
|
|
124698
126225
|
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
|
|
124699
126226
|
ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
|
|
126227
|
+
ShareASaleEvents?: ShareASaleEventCreateNestedManyWithoutOptInInput
|
|
124700
126228
|
}
|
|
124701
126229
|
|
|
124702
126230
|
export type OptInUncheckedCreateWithoutOptInStepsInput = {
|
|
@@ -124726,6 +126254,7 @@ export namespace Prisma {
|
|
|
124726
126254
|
productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
|
|
124727
126255
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
124728
126256
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
|
|
126257
|
+
ShareASaleEvents?: ShareASaleEventUncheckedCreateNestedManyWithoutOptInInput
|
|
124729
126258
|
}
|
|
124730
126259
|
|
|
124731
126260
|
export type OptInCreateOrConnectWithoutOptInStepsInput = {
|
|
@@ -124802,6 +126331,7 @@ export namespace Prisma {
|
|
|
124802
126331
|
productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
|
|
124803
126332
|
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
|
|
124804
126333
|
ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
|
|
126334
|
+
ShareASaleEvents?: ShareASaleEventUpdateManyWithoutOptInNestedInput
|
|
124805
126335
|
}
|
|
124806
126336
|
|
|
124807
126337
|
export type OptInUncheckedUpdateWithoutOptInStepsInput = {
|
|
@@ -124831,6 +126361,7 @@ export namespace Prisma {
|
|
|
124831
126361
|
productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
|
|
124832
126362
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
124833
126363
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
126364
|
+
ShareASaleEvents?: ShareASaleEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
124834
126365
|
}
|
|
124835
126366
|
|
|
124836
126367
|
export type CampaignStepUpsertWithoutOptInStepsInput = {
|
|
@@ -125476,6 +127007,33 @@ export namespace Prisma {
|
|
|
125476
127007
|
skipDuplicates?: boolean
|
|
125477
127008
|
}
|
|
125478
127009
|
|
|
127010
|
+
export type ShareASaleEventCreateWithoutOptInInput = {
|
|
127011
|
+
transactionId?: string | null
|
|
127012
|
+
created?: Date | string
|
|
127013
|
+
saleAmount?: Decimal | DecimalJsLike | number | string | null
|
|
127014
|
+
commission?: Decimal | DecimalJsLike | number | string | null
|
|
127015
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
127016
|
+
}
|
|
127017
|
+
|
|
127018
|
+
export type ShareASaleEventUncheckedCreateWithoutOptInInput = {
|
|
127019
|
+
id?: number
|
|
127020
|
+
transactionId?: string | null
|
|
127021
|
+
created?: Date | string
|
|
127022
|
+
saleAmount?: Decimal | DecimalJsLike | number | string | null
|
|
127023
|
+
commission?: Decimal | DecimalJsLike | number | string | null
|
|
127024
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
127025
|
+
}
|
|
127026
|
+
|
|
127027
|
+
export type ShareASaleEventCreateOrConnectWithoutOptInInput = {
|
|
127028
|
+
where: ShareASaleEventWhereUniqueInput
|
|
127029
|
+
create: XOR<ShareASaleEventCreateWithoutOptInInput, ShareASaleEventUncheckedCreateWithoutOptInInput>
|
|
127030
|
+
}
|
|
127031
|
+
|
|
127032
|
+
export type ShareASaleEventCreateManyOptInInputEnvelope = {
|
|
127033
|
+
data: ShareASaleEventCreateManyOptInInput | ShareASaleEventCreateManyOptInInput[]
|
|
127034
|
+
skipDuplicates?: boolean
|
|
127035
|
+
}
|
|
127036
|
+
|
|
125479
127037
|
export type UserUpsertWithoutOptInsInput = {
|
|
125480
127038
|
update: XOR<UserUpdateWithoutOptInsInput, UserUncheckedUpdateWithoutOptInsInput>
|
|
125481
127039
|
create: XOR<UserCreateWithoutOptInsInput, UserUncheckedCreateWithoutOptInsInput>
|
|
@@ -125942,6 +127500,35 @@ export namespace Prisma {
|
|
|
125942
127500
|
data: XOR<ImpactRadiusEventUpdateManyMutationInput, ImpactRadiusEventUncheckedUpdateManyWithoutOptInInput>
|
|
125943
127501
|
}
|
|
125944
127502
|
|
|
127503
|
+
export type ShareASaleEventUpsertWithWhereUniqueWithoutOptInInput = {
|
|
127504
|
+
where: ShareASaleEventWhereUniqueInput
|
|
127505
|
+
update: XOR<ShareASaleEventUpdateWithoutOptInInput, ShareASaleEventUncheckedUpdateWithoutOptInInput>
|
|
127506
|
+
create: XOR<ShareASaleEventCreateWithoutOptInInput, ShareASaleEventUncheckedCreateWithoutOptInInput>
|
|
127507
|
+
}
|
|
127508
|
+
|
|
127509
|
+
export type ShareASaleEventUpdateWithWhereUniqueWithoutOptInInput = {
|
|
127510
|
+
where: ShareASaleEventWhereUniqueInput
|
|
127511
|
+
data: XOR<ShareASaleEventUpdateWithoutOptInInput, ShareASaleEventUncheckedUpdateWithoutOptInInput>
|
|
127512
|
+
}
|
|
127513
|
+
|
|
127514
|
+
export type ShareASaleEventUpdateManyWithWhereWithoutOptInInput = {
|
|
127515
|
+
where: ShareASaleEventScalarWhereInput
|
|
127516
|
+
data: XOR<ShareASaleEventUpdateManyMutationInput, ShareASaleEventUncheckedUpdateManyWithoutOptInInput>
|
|
127517
|
+
}
|
|
127518
|
+
|
|
127519
|
+
export type ShareASaleEventScalarWhereInput = {
|
|
127520
|
+
AND?: ShareASaleEventScalarWhereInput | ShareASaleEventScalarWhereInput[]
|
|
127521
|
+
OR?: ShareASaleEventScalarWhereInput[]
|
|
127522
|
+
NOT?: ShareASaleEventScalarWhereInput | ShareASaleEventScalarWhereInput[]
|
|
127523
|
+
id?: IntFilter<"ShareASaleEvent"> | number
|
|
127524
|
+
transactionId?: StringNullableFilter<"ShareASaleEvent"> | string | null
|
|
127525
|
+
created?: DateTimeFilter<"ShareASaleEvent"> | Date | string
|
|
127526
|
+
saleAmount?: DecimalNullableFilter<"ShareASaleEvent"> | Decimal | DecimalJsLike | number | string | null
|
|
127527
|
+
commission?: DecimalNullableFilter<"ShareASaleEvent"> | Decimal | DecimalJsLike | number | string | null
|
|
127528
|
+
metaData?: JsonFilter<"ShareASaleEvent">
|
|
127529
|
+
optInId?: IntNullableFilter<"ShareASaleEvent"> | number | null
|
|
127530
|
+
}
|
|
127531
|
+
|
|
125945
127532
|
export type OptInCreateWithoutTrolleyPaymentsInput = {
|
|
125946
127533
|
status?: string
|
|
125947
127534
|
created?: Date | string
|
|
@@ -125968,6 +127555,7 @@ export namespace Prisma {
|
|
|
125968
127555
|
productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
|
|
125969
127556
|
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
|
|
125970
127557
|
ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
|
|
127558
|
+
ShareASaleEvents?: ShareASaleEventCreateNestedManyWithoutOptInInput
|
|
125971
127559
|
}
|
|
125972
127560
|
|
|
125973
127561
|
export type OptInUncheckedCreateWithoutTrolleyPaymentsInput = {
|
|
@@ -125997,6 +127585,7 @@ export namespace Prisma {
|
|
|
125997
127585
|
productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
|
|
125998
127586
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
125999
127587
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
|
|
127588
|
+
ShareASaleEvents?: ShareASaleEventUncheckedCreateNestedManyWithoutOptInInput
|
|
126000
127589
|
}
|
|
126001
127590
|
|
|
126002
127591
|
export type OptInCreateOrConnectWithoutTrolleyPaymentsInput = {
|
|
@@ -126041,6 +127630,7 @@ export namespace Prisma {
|
|
|
126041
127630
|
productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
|
|
126042
127631
|
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
|
|
126043
127632
|
ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
|
|
127633
|
+
ShareASaleEvents?: ShareASaleEventUpdateManyWithoutOptInNestedInput
|
|
126044
127634
|
}
|
|
126045
127635
|
|
|
126046
127636
|
export type OptInUncheckedUpdateWithoutTrolleyPaymentsInput = {
|
|
@@ -126070,6 +127660,7 @@ export namespace Prisma {
|
|
|
126070
127660
|
productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
|
|
126071
127661
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
126072
127662
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
127663
|
+
ShareASaleEvents?: ShareASaleEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
126073
127664
|
}
|
|
126074
127665
|
|
|
126075
127666
|
export type OptInCreateWithoutVariablesInput = {
|
|
@@ -126098,6 +127689,7 @@ export namespace Prisma {
|
|
|
126098
127689
|
productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
|
|
126099
127690
|
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
|
|
126100
127691
|
ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
|
|
127692
|
+
ShareASaleEvents?: ShareASaleEventCreateNestedManyWithoutOptInInput
|
|
126101
127693
|
}
|
|
126102
127694
|
|
|
126103
127695
|
export type OptInUncheckedCreateWithoutVariablesInput = {
|
|
@@ -126127,6 +127719,7 @@ export namespace Prisma {
|
|
|
126127
127719
|
productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
|
|
126128
127720
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
126129
127721
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
|
|
127722
|
+
ShareASaleEvents?: ShareASaleEventUncheckedCreateNestedManyWithoutOptInInput
|
|
126130
127723
|
}
|
|
126131
127724
|
|
|
126132
127725
|
export type OptInCreateOrConnectWithoutVariablesInput = {
|
|
@@ -126213,6 +127806,7 @@ export namespace Prisma {
|
|
|
126213
127806
|
productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
|
|
126214
127807
|
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
|
|
126215
127808
|
ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
|
|
127809
|
+
ShareASaleEvents?: ShareASaleEventUpdateManyWithoutOptInNestedInput
|
|
126216
127810
|
}
|
|
126217
127811
|
|
|
126218
127812
|
export type OptInUncheckedUpdateWithoutVariablesInput = {
|
|
@@ -126242,6 +127836,7 @@ export namespace Prisma {
|
|
|
126242
127836
|
productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
|
|
126243
127837
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
126244
127838
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
127839
|
+
ShareASaleEvents?: ShareASaleEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
126245
127840
|
}
|
|
126246
127841
|
|
|
126247
127842
|
export type VariableUpsertWithoutOptInVariablesInput = {
|
|
@@ -127551,6 +129146,7 @@ export namespace Prisma {
|
|
|
127551
129146
|
affiliateClicks?: AffiliateClickCreateNestedManyWithoutOptinInput
|
|
127552
129147
|
productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
|
|
127553
129148
|
ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
|
|
129149
|
+
ShareASaleEvents?: ShareASaleEventCreateNestedManyWithoutOptInInput
|
|
127554
129150
|
}
|
|
127555
129151
|
|
|
127556
129152
|
export type OptInUncheckedCreateWithoutExternalAffiliateClickInput = {
|
|
@@ -127580,6 +129176,7 @@ export namespace Prisma {
|
|
|
127580
129176
|
affiliateClicks?: AffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
127581
129177
|
productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
|
|
127582
129178
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
|
|
129179
|
+
ShareASaleEvents?: ShareASaleEventUncheckedCreateNestedManyWithoutOptInInput
|
|
127583
129180
|
}
|
|
127584
129181
|
|
|
127585
129182
|
export type OptInCreateOrConnectWithoutExternalAffiliateClickInput = {
|
|
@@ -127770,6 +129367,7 @@ export namespace Prisma {
|
|
|
127770
129367
|
affiliateClicks?: AffiliateClickUpdateManyWithoutOptinNestedInput
|
|
127771
129368
|
productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
|
|
127772
129369
|
ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
|
|
129370
|
+
ShareASaleEvents?: ShareASaleEventUpdateManyWithoutOptInNestedInput
|
|
127773
129371
|
}
|
|
127774
129372
|
|
|
127775
129373
|
export type OptInUncheckedUpdateWithoutExternalAffiliateClickInput = {
|
|
@@ -127799,6 +129397,7 @@ export namespace Prisma {
|
|
|
127799
129397
|
affiliateClicks?: AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
127800
129398
|
productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
|
|
127801
129399
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
129400
|
+
ShareASaleEvents?: ShareASaleEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
127802
129401
|
}
|
|
127803
129402
|
|
|
127804
129403
|
export type CampaignUpsertWithoutExternalAffiliateClickInput = {
|
|
@@ -128513,6 +130112,7 @@ export namespace Prisma {
|
|
|
128513
130112
|
productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
|
|
128514
130113
|
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
|
|
128515
130114
|
ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
|
|
130115
|
+
ShareASaleEvents?: ShareASaleEventCreateNestedManyWithoutOptInInput
|
|
128516
130116
|
}
|
|
128517
130117
|
|
|
128518
130118
|
export type OptInUncheckedCreateWithoutAffiliateClicksInput = {
|
|
@@ -128542,6 +130142,7 @@ export namespace Prisma {
|
|
|
128542
130142
|
productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
|
|
128543
130143
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
128544
130144
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
|
|
130145
|
+
ShareASaleEvents?: ShareASaleEventUncheckedCreateNestedManyWithoutOptInInput
|
|
128545
130146
|
}
|
|
128546
130147
|
|
|
128547
130148
|
export type OptInCreateOrConnectWithoutAffiliateClicksInput = {
|
|
@@ -128639,6 +130240,7 @@ export namespace Prisma {
|
|
|
128639
130240
|
productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
|
|
128640
130241
|
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
|
|
128641
130242
|
ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
|
|
130243
|
+
ShareASaleEvents?: ShareASaleEventUpdateManyWithoutOptInNestedInput
|
|
128642
130244
|
}
|
|
128643
130245
|
|
|
128644
130246
|
export type OptInUncheckedUpdateWithoutAffiliateClicksInput = {
|
|
@@ -128668,6 +130270,7 @@ export namespace Prisma {
|
|
|
128668
130270
|
productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
|
|
128669
130271
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
128670
130272
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
130273
|
+
ShareASaleEvents?: ShareASaleEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
128671
130274
|
}
|
|
128672
130275
|
|
|
128673
130276
|
export type AffiliateLinkUpsertWithoutAffiliateClicksInput = {
|
|
@@ -129254,6 +130857,7 @@ export namespace Prisma {
|
|
|
129254
130857
|
productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
|
|
129255
130858
|
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
|
|
129256
130859
|
ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
|
|
130860
|
+
ShareASaleEvents?: ShareASaleEventCreateNestedManyWithoutOptInInput
|
|
129257
130861
|
}
|
|
129258
130862
|
|
|
129259
130863
|
export type OptInUncheckedCreateWithoutCampaignInvitesInput = {
|
|
@@ -129283,6 +130887,7 @@ export namespace Prisma {
|
|
|
129283
130887
|
productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
|
|
129284
130888
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
129285
130889
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
|
|
130890
|
+
ShareASaleEvents?: ShareASaleEventUncheckedCreateNestedManyWithoutOptInInput
|
|
129286
130891
|
}
|
|
129287
130892
|
|
|
129288
130893
|
export type OptInCreateOrConnectWithoutCampaignInvitesInput = {
|
|
@@ -129621,6 +131226,7 @@ export namespace Prisma {
|
|
|
129621
131226
|
productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
|
|
129622
131227
|
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
|
|
129623
131228
|
ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
|
|
131229
|
+
ShareASaleEvents?: ShareASaleEventUpdateManyWithoutOptInNestedInput
|
|
129624
131230
|
}
|
|
129625
131231
|
|
|
129626
131232
|
export type OptInUncheckedUpdateWithoutCampaignInvitesInput = {
|
|
@@ -129650,6 +131256,7 @@ export namespace Prisma {
|
|
|
129650
131256
|
productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
|
|
129651
131257
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
129652
131258
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
131259
|
+
ShareASaleEvents?: ShareASaleEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
129653
131260
|
}
|
|
129654
131261
|
|
|
129655
131262
|
export type CreatorListItemCreateWithoutCreatorListInput = {
|
|
@@ -132345,6 +133952,7 @@ export namespace Prisma {
|
|
|
132345
133952
|
affiliateClicks?: AffiliateClickCreateNestedManyWithoutOptinInput
|
|
132346
133953
|
productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
|
|
132347
133954
|
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
|
|
133955
|
+
ShareASaleEvents?: ShareASaleEventCreateNestedManyWithoutOptInInput
|
|
132348
133956
|
}
|
|
132349
133957
|
|
|
132350
133958
|
export type OptInUncheckedCreateWithoutImpactRadiusEventInput = {
|
|
@@ -132374,6 +133982,7 @@ export namespace Prisma {
|
|
|
132374
133982
|
affiliateClicks?: AffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
132375
133983
|
productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
|
|
132376
133984
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
133985
|
+
ShareASaleEvents?: ShareASaleEventUncheckedCreateNestedManyWithoutOptInInput
|
|
132377
133986
|
}
|
|
132378
133987
|
|
|
132379
133988
|
export type OptInCreateOrConnectWithoutImpactRadiusEventInput = {
|
|
@@ -132602,6 +134211,7 @@ export namespace Prisma {
|
|
|
132602
134211
|
affiliateClicks?: AffiliateClickUpdateManyWithoutOptinNestedInput
|
|
132603
134212
|
productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
|
|
132604
134213
|
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
|
|
134214
|
+
ShareASaleEvents?: ShareASaleEventUpdateManyWithoutOptInNestedInput
|
|
132605
134215
|
}
|
|
132606
134216
|
|
|
132607
134217
|
export type OptInUncheckedUpdateWithoutImpactRadiusEventInput = {
|
|
@@ -132631,6 +134241,141 @@ export namespace Prisma {
|
|
|
132631
134241
|
affiliateClicks?: AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
132632
134242
|
productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
|
|
132633
134243
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
134244
|
+
ShareASaleEvents?: ShareASaleEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
134245
|
+
}
|
|
134246
|
+
|
|
134247
|
+
export type OptInCreateWithoutShareASaleEventsInput = {
|
|
134248
|
+
status?: string
|
|
134249
|
+
created?: Date | string
|
|
134250
|
+
activated?: Date | string | null
|
|
134251
|
+
completed?: Date | string | null
|
|
134252
|
+
cancelled?: Date | string | null
|
|
134253
|
+
cancelledData?: JsonNullValueInput | InputJsonValue
|
|
134254
|
+
cancelRequested?: Date | string | null
|
|
134255
|
+
reinvited?: Date | string | null
|
|
134256
|
+
seen?: boolean
|
|
134257
|
+
instructions?: string | null
|
|
134258
|
+
paymentAmount?: number | null
|
|
134259
|
+
paymentStatus?: string
|
|
134260
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
134261
|
+
favoritedDate?: Date | string | null
|
|
134262
|
+
user: UserCreateNestedOneWithoutOptInsInput
|
|
134263
|
+
campaign: CampaignCreateNestedOneWithoutOptInsInput
|
|
134264
|
+
currentStep?: CampaignStepCreateNestedOneWithoutCurrentOptInsInput
|
|
134265
|
+
variables?: OptInVariableCreateNestedManyWithoutOptInInput
|
|
134266
|
+
optInSteps?: OptInStepCreateNestedManyWithoutOptInInput
|
|
134267
|
+
chat?: ChatCreateNestedOneWithoutOptInInput
|
|
134268
|
+
campaignInvites?: CampaignInviteCreateNestedManyWithoutOptInInput
|
|
134269
|
+
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
|
|
134270
|
+
affiliateClicks?: AffiliateClickCreateNestedManyWithoutOptinInput
|
|
134271
|
+
productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
|
|
134272
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
|
|
134273
|
+
ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
|
|
134274
|
+
}
|
|
134275
|
+
|
|
134276
|
+
export type OptInUncheckedCreateWithoutShareASaleEventsInput = {
|
|
134277
|
+
id?: number
|
|
134278
|
+
status?: string
|
|
134279
|
+
created?: Date | string
|
|
134280
|
+
activated?: Date | string | null
|
|
134281
|
+
completed?: Date | string | null
|
|
134282
|
+
cancelled?: Date | string | null
|
|
134283
|
+
cancelledData?: JsonNullValueInput | InputJsonValue
|
|
134284
|
+
cancelRequested?: Date | string | null
|
|
134285
|
+
reinvited?: Date | string | null
|
|
134286
|
+
seen?: boolean
|
|
134287
|
+
instructions?: string | null
|
|
134288
|
+
paymentAmount?: number | null
|
|
134289
|
+
paymentStatus?: string
|
|
134290
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
134291
|
+
favoritedDate?: Date | string | null
|
|
134292
|
+
userId: number
|
|
134293
|
+
campaignId: number
|
|
134294
|
+
currentStepId?: number | null
|
|
134295
|
+
variables?: OptInVariableUncheckedCreateNestedManyWithoutOptInInput
|
|
134296
|
+
optInSteps?: OptInStepUncheckedCreateNestedManyWithoutOptInInput
|
|
134297
|
+
chat?: ChatUncheckedCreateNestedOneWithoutOptInInput
|
|
134298
|
+
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutOptInInput
|
|
134299
|
+
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
|
|
134300
|
+
affiliateClicks?: AffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
134301
|
+
productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
|
|
134302
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
134303
|
+
ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
|
|
134304
|
+
}
|
|
134305
|
+
|
|
134306
|
+
export type OptInCreateOrConnectWithoutShareASaleEventsInput = {
|
|
134307
|
+
where: OptInWhereUniqueInput
|
|
134308
|
+
create: XOR<OptInCreateWithoutShareASaleEventsInput, OptInUncheckedCreateWithoutShareASaleEventsInput>
|
|
134309
|
+
}
|
|
134310
|
+
|
|
134311
|
+
export type OptInUpsertWithoutShareASaleEventsInput = {
|
|
134312
|
+
update: XOR<OptInUpdateWithoutShareASaleEventsInput, OptInUncheckedUpdateWithoutShareASaleEventsInput>
|
|
134313
|
+
create: XOR<OptInCreateWithoutShareASaleEventsInput, OptInUncheckedCreateWithoutShareASaleEventsInput>
|
|
134314
|
+
where?: OptInWhereInput
|
|
134315
|
+
}
|
|
134316
|
+
|
|
134317
|
+
export type OptInUpdateToOneWithWhereWithoutShareASaleEventsInput = {
|
|
134318
|
+
where?: OptInWhereInput
|
|
134319
|
+
data: XOR<OptInUpdateWithoutShareASaleEventsInput, OptInUncheckedUpdateWithoutShareASaleEventsInput>
|
|
134320
|
+
}
|
|
134321
|
+
|
|
134322
|
+
export type OptInUpdateWithoutShareASaleEventsInput = {
|
|
134323
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
134324
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
134325
|
+
activated?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
134326
|
+
completed?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
134327
|
+
cancelled?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
134328
|
+
cancelledData?: JsonNullValueInput | InputJsonValue
|
|
134329
|
+
cancelRequested?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
134330
|
+
reinvited?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
134331
|
+
seen?: BoolFieldUpdateOperationsInput | boolean
|
|
134332
|
+
instructions?: NullableStringFieldUpdateOperationsInput | string | null
|
|
134333
|
+
paymentAmount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
134334
|
+
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
134335
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
134336
|
+
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
134337
|
+
user?: UserUpdateOneRequiredWithoutOptInsNestedInput
|
|
134338
|
+
campaign?: CampaignUpdateOneRequiredWithoutOptInsNestedInput
|
|
134339
|
+
currentStep?: CampaignStepUpdateOneWithoutCurrentOptInsNestedInput
|
|
134340
|
+
variables?: OptInVariableUpdateManyWithoutOptInNestedInput
|
|
134341
|
+
optInSteps?: OptInStepUpdateManyWithoutOptInNestedInput
|
|
134342
|
+
chat?: ChatUpdateOneWithoutOptInNestedInput
|
|
134343
|
+
campaignInvites?: CampaignInviteUpdateManyWithoutOptInNestedInput
|
|
134344
|
+
trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
|
|
134345
|
+
affiliateClicks?: AffiliateClickUpdateManyWithoutOptinNestedInput
|
|
134346
|
+
productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
|
|
134347
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
|
|
134348
|
+
ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
|
|
134349
|
+
}
|
|
134350
|
+
|
|
134351
|
+
export type OptInUncheckedUpdateWithoutShareASaleEventsInput = {
|
|
134352
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
134353
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
134354
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
134355
|
+
activated?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
134356
|
+
completed?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
134357
|
+
cancelled?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
134358
|
+
cancelledData?: JsonNullValueInput | InputJsonValue
|
|
134359
|
+
cancelRequested?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
134360
|
+
reinvited?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
134361
|
+
seen?: BoolFieldUpdateOperationsInput | boolean
|
|
134362
|
+
instructions?: NullableStringFieldUpdateOperationsInput | string | null
|
|
134363
|
+
paymentAmount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
134364
|
+
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
134365
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
134366
|
+
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
134367
|
+
userId?: IntFieldUpdateOperationsInput | number
|
|
134368
|
+
campaignId?: IntFieldUpdateOperationsInput | number
|
|
134369
|
+
currentStepId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
134370
|
+
variables?: OptInVariableUncheckedUpdateManyWithoutOptInNestedInput
|
|
134371
|
+
optInSteps?: OptInStepUncheckedUpdateManyWithoutOptInNestedInput
|
|
134372
|
+
chat?: ChatUncheckedUpdateOneWithoutOptInNestedInput
|
|
134373
|
+
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutOptInNestedInput
|
|
134374
|
+
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
|
|
134375
|
+
affiliateClicks?: AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
134376
|
+
productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
|
|
134377
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
134378
|
+
ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
132634
134379
|
}
|
|
132635
134380
|
|
|
132636
134381
|
export type BrandCreateWithoutCreatorsearchfilterInput = {
|
|
@@ -135265,6 +137010,7 @@ export namespace Prisma {
|
|
|
135265
137010
|
productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
|
|
135266
137011
|
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
|
|
135267
137012
|
ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
|
|
137013
|
+
ShareASaleEvents?: ShareASaleEventUpdateManyWithoutOptInNestedInput
|
|
135268
137014
|
}
|
|
135269
137015
|
|
|
135270
137016
|
export type OptInUncheckedUpdateWithoutUserInput = {
|
|
@@ -135294,6 +137040,7 @@ export namespace Prisma {
|
|
|
135294
137040
|
productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
|
|
135295
137041
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
135296
137042
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
137043
|
+
ShareASaleEvents?: ShareASaleEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
135297
137044
|
}
|
|
135298
137045
|
|
|
135299
137046
|
export type OptInUncheckedUpdateManyWithoutUserInput = {
|
|
@@ -137089,6 +138836,7 @@ export namespace Prisma {
|
|
|
137089
138836
|
productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
|
|
137090
138837
|
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
|
|
137091
138838
|
ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
|
|
138839
|
+
ShareASaleEvents?: ShareASaleEventUpdateManyWithoutOptInNestedInput
|
|
137092
138840
|
}
|
|
137093
138841
|
|
|
137094
138842
|
export type OptInUncheckedUpdateWithoutCampaignInput = {
|
|
@@ -137118,6 +138866,7 @@ export namespace Prisma {
|
|
|
137118
138866
|
productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
|
|
137119
138867
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
137120
138868
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
138869
|
+
ShareASaleEvents?: ShareASaleEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
137121
138870
|
}
|
|
137122
138871
|
|
|
137123
138872
|
export type OptInUncheckedUpdateManyWithoutCampaignInput = {
|
|
@@ -137773,6 +139522,7 @@ export namespace Prisma {
|
|
|
137773
139522
|
productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
|
|
137774
139523
|
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
|
|
137775
139524
|
ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
|
|
139525
|
+
ShareASaleEvents?: ShareASaleEventUpdateManyWithoutOptInNestedInput
|
|
137776
139526
|
}
|
|
137777
139527
|
|
|
137778
139528
|
export type OptInUncheckedUpdateWithoutCurrentStepInput = {
|
|
@@ -137802,6 +139552,7 @@ export namespace Prisma {
|
|
|
137802
139552
|
productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
|
|
137803
139553
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
137804
139554
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
139555
|
+
ShareASaleEvents?: ShareASaleEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
137805
139556
|
}
|
|
137806
139557
|
|
|
137807
139558
|
export type OptInUncheckedUpdateManyWithoutCurrentStepInput = {
|
|
@@ -137965,6 +139716,15 @@ export namespace Prisma {
|
|
|
137965
139716
|
brandId?: number | null
|
|
137966
139717
|
}
|
|
137967
139718
|
|
|
139719
|
+
export type ShareASaleEventCreateManyOptInInput = {
|
|
139720
|
+
id?: number
|
|
139721
|
+
transactionId?: string | null
|
|
139722
|
+
created?: Date | string
|
|
139723
|
+
saleAmount?: Decimal | DecimalJsLike | number | string | null
|
|
139724
|
+
commission?: Decimal | DecimalJsLike | number | string | null
|
|
139725
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
139726
|
+
}
|
|
139727
|
+
|
|
137968
139728
|
export type OptInVariableUpdateWithoutOptInInput = {
|
|
137969
139729
|
variable?: VariableUpdateOneRequiredWithoutOptInVariablesNestedInput
|
|
137970
139730
|
selectedOption?: VariableOptionUpdateOneRequiredWithoutOptInVariablesNestedInput
|
|
@@ -138170,6 +139930,32 @@ export namespace Prisma {
|
|
|
138170
139930
|
brandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
138171
139931
|
}
|
|
138172
139932
|
|
|
139933
|
+
export type ShareASaleEventUpdateWithoutOptInInput = {
|
|
139934
|
+
transactionId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
139935
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
139936
|
+
saleAmount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
139937
|
+
commission?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
139938
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
139939
|
+
}
|
|
139940
|
+
|
|
139941
|
+
export type ShareASaleEventUncheckedUpdateWithoutOptInInput = {
|
|
139942
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
139943
|
+
transactionId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
139944
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
139945
|
+
saleAmount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
139946
|
+
commission?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
139947
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
139948
|
+
}
|
|
139949
|
+
|
|
139950
|
+
export type ShareASaleEventUncheckedUpdateManyWithoutOptInInput = {
|
|
139951
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
139952
|
+
transactionId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
139953
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
139954
|
+
saleAmount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
139955
|
+
commission?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
139956
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
139957
|
+
}
|
|
139958
|
+
|
|
138173
139959
|
export type ListToSocialPostCreateManySocialPostInput = {
|
|
138174
139960
|
id?: number
|
|
138175
139961
|
listId: number
|
|
@@ -139284,6 +141070,10 @@ export namespace Prisma {
|
|
|
139284
141070
|
* @deprecated Use ImpactRadiusEventDefaultArgs instead
|
|
139285
141071
|
*/
|
|
139286
141072
|
export type ImpactRadiusEventArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = ImpactRadiusEventDefaultArgs<ExtArgs>
|
|
141073
|
+
/**
|
|
141074
|
+
* @deprecated Use ShareASaleEventDefaultArgs instead
|
|
141075
|
+
*/
|
|
141076
|
+
export type ShareASaleEventArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = ShareASaleEventDefaultArgs<ExtArgs>
|
|
139287
141077
|
/**
|
|
139288
141078
|
* @deprecated Use CreatorSearchFilterDefaultArgs instead
|
|
139289
141079
|
*/
|