@creator.co/creatorco-prisma-client 1.0.44 → 1.0.46-alpha-cbcafab
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/edge.js +20 -6
- package/index-browser.js +16 -2
- package/index.d.ts +2046 -149
- package/index.js +20 -6
- package/package.json +1 -1
- package/schema.prisma +18 -1
- package/wasm.js +16 -2
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
|
|
@@ -8497,6 +8592,8 @@ export namespace Prisma {
|
|
|
8497
8592
|
closedReason: string | null
|
|
8498
8593
|
usercomLastSynced: Date | null
|
|
8499
8594
|
referrerId: number | null
|
|
8595
|
+
fullName: string | null
|
|
8596
|
+
phoneNormalised: string | null
|
|
8500
8597
|
}
|
|
8501
8598
|
|
|
8502
8599
|
export type UserMaxAggregateOutputType = {
|
|
@@ -8518,6 +8615,8 @@ export namespace Prisma {
|
|
|
8518
8615
|
closedReason: string | null
|
|
8519
8616
|
usercomLastSynced: Date | null
|
|
8520
8617
|
referrerId: number | null
|
|
8618
|
+
fullName: string | null
|
|
8619
|
+
phoneNormalised: string | null
|
|
8521
8620
|
}
|
|
8522
8621
|
|
|
8523
8622
|
export type UserCountAggregateOutputType = {
|
|
@@ -8540,6 +8639,8 @@ export namespace Prisma {
|
|
|
8540
8639
|
usercomLastSynced: number
|
|
8541
8640
|
extraData: number
|
|
8542
8641
|
referrerId: number
|
|
8642
|
+
fullName: number
|
|
8643
|
+
phoneNormalised: number
|
|
8543
8644
|
_all: number
|
|
8544
8645
|
}
|
|
8545
8646
|
|
|
@@ -8575,6 +8676,8 @@ export namespace Prisma {
|
|
|
8575
8676
|
closedReason?: true
|
|
8576
8677
|
usercomLastSynced?: true
|
|
8577
8678
|
referrerId?: true
|
|
8679
|
+
fullName?: true
|
|
8680
|
+
phoneNormalised?: true
|
|
8578
8681
|
}
|
|
8579
8682
|
|
|
8580
8683
|
export type UserMaxAggregateInputType = {
|
|
@@ -8596,6 +8699,8 @@ export namespace Prisma {
|
|
|
8596
8699
|
closedReason?: true
|
|
8597
8700
|
usercomLastSynced?: true
|
|
8598
8701
|
referrerId?: true
|
|
8702
|
+
fullName?: true
|
|
8703
|
+
phoneNormalised?: true
|
|
8599
8704
|
}
|
|
8600
8705
|
|
|
8601
8706
|
export type UserCountAggregateInputType = {
|
|
@@ -8618,6 +8723,8 @@ export namespace Prisma {
|
|
|
8618
8723
|
usercomLastSynced?: true
|
|
8619
8724
|
extraData?: true
|
|
8620
8725
|
referrerId?: true
|
|
8726
|
+
fullName?: true
|
|
8727
|
+
phoneNormalised?: true
|
|
8621
8728
|
_all?: true
|
|
8622
8729
|
}
|
|
8623
8730
|
|
|
@@ -8727,6 +8834,8 @@ export namespace Prisma {
|
|
|
8727
8834
|
usercomLastSynced: Date | null
|
|
8728
8835
|
extraData: JsonValue
|
|
8729
8836
|
referrerId: number | null
|
|
8837
|
+
fullName: string | null
|
|
8838
|
+
phoneNormalised: string | null
|
|
8730
8839
|
_count: UserCountAggregateOutputType | null
|
|
8731
8840
|
_avg: UserAvgAggregateOutputType | null
|
|
8732
8841
|
_sum: UserSumAggregateOutputType | null
|
|
@@ -8768,6 +8877,8 @@ export namespace Prisma {
|
|
|
8768
8877
|
usercomLastSynced?: boolean
|
|
8769
8878
|
extraData?: boolean
|
|
8770
8879
|
referrerId?: boolean
|
|
8880
|
+
fullName?: boolean
|
|
8881
|
+
phoneNormalised?: boolean
|
|
8771
8882
|
referrer?: boolean | User$referrerArgs<ExtArgs>
|
|
8772
8883
|
referredUsers?: boolean | User$referredUsersArgs<ExtArgs>
|
|
8773
8884
|
logs?: boolean | User$logsArgs<ExtArgs>
|
|
@@ -8812,6 +8923,8 @@ export namespace Prisma {
|
|
|
8812
8923
|
usercomLastSynced?: boolean
|
|
8813
8924
|
extraData?: boolean
|
|
8814
8925
|
referrerId?: boolean
|
|
8926
|
+
fullName?: boolean
|
|
8927
|
+
phoneNormalised?: boolean
|
|
8815
8928
|
referrer?: boolean | User$referrerArgs<ExtArgs>
|
|
8816
8929
|
}, ExtArgs["result"]["user"]>
|
|
8817
8930
|
|
|
@@ -8835,6 +8948,8 @@ export namespace Prisma {
|
|
|
8835
8948
|
usercomLastSynced?: boolean
|
|
8836
8949
|
extraData?: boolean
|
|
8837
8950
|
referrerId?: boolean
|
|
8951
|
+
fullName?: boolean
|
|
8952
|
+
phoneNormalised?: boolean
|
|
8838
8953
|
}
|
|
8839
8954
|
|
|
8840
8955
|
export type UserInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -8910,6 +9025,8 @@ export namespace Prisma {
|
|
|
8910
9025
|
usercomLastSynced: Date | null
|
|
8911
9026
|
extraData: Prisma.JsonValue
|
|
8912
9027
|
referrerId: number | null
|
|
9028
|
+
fullName: string | null
|
|
9029
|
+
phoneNormalised: string | null
|
|
8913
9030
|
}, ExtArgs["result"]["user"]>
|
|
8914
9031
|
composites: {}
|
|
8915
9032
|
}
|
|
@@ -9389,6 +9506,8 @@ export namespace Prisma {
|
|
|
9389
9506
|
readonly usercomLastSynced: FieldRef<"User", 'DateTime'>
|
|
9390
9507
|
readonly extraData: FieldRef<"User", 'Json'>
|
|
9391
9508
|
readonly referrerId: FieldRef<"User", 'Int'>
|
|
9509
|
+
readonly fullName: FieldRef<"User", 'String'>
|
|
9510
|
+
readonly phoneNormalised: FieldRef<"User", 'String'>
|
|
9392
9511
|
}
|
|
9393
9512
|
|
|
9394
9513
|
|
|
@@ -46899,6 +47018,7 @@ export namespace Prisma {
|
|
|
46899
47018
|
productListItems?: boolean | OptIn$productListItemsArgs<ExtArgs>
|
|
46900
47019
|
ExternalAffiliateClick?: boolean | OptIn$ExternalAffiliateClickArgs<ExtArgs>
|
|
46901
47020
|
ImpactRadiusEvent?: boolean | OptIn$ImpactRadiusEventArgs<ExtArgs>
|
|
47021
|
+
ShareASaleEvents?: boolean | OptIn$ShareASaleEventsArgs<ExtArgs>
|
|
46902
47022
|
_count?: boolean | OptInCountOutputTypeDefaultArgs<ExtArgs>
|
|
46903
47023
|
}, ExtArgs["result"]["optIn"]>
|
|
46904
47024
|
|
|
@@ -46960,6 +47080,7 @@ export namespace Prisma {
|
|
|
46960
47080
|
productListItems?: boolean | OptIn$productListItemsArgs<ExtArgs>
|
|
46961
47081
|
ExternalAffiliateClick?: boolean | OptIn$ExternalAffiliateClickArgs<ExtArgs>
|
|
46962
47082
|
ImpactRadiusEvent?: boolean | OptIn$ImpactRadiusEventArgs<ExtArgs>
|
|
47083
|
+
ShareASaleEvents?: boolean | OptIn$ShareASaleEventsArgs<ExtArgs>
|
|
46963
47084
|
_count?: boolean | OptInCountOutputTypeDefaultArgs<ExtArgs>
|
|
46964
47085
|
}
|
|
46965
47086
|
export type OptInIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -46983,6 +47104,7 @@ export namespace Prisma {
|
|
|
46983
47104
|
productListItems: Prisma.$OptinToProductListItemPayload<ExtArgs>[]
|
|
46984
47105
|
ExternalAffiliateClick: Prisma.$ExternalAffiliateClickPayload<ExtArgs>[]
|
|
46985
47106
|
ImpactRadiusEvent: Prisma.$ImpactRadiusEventPayload<ExtArgs>[]
|
|
47107
|
+
ShareASaleEvents: Prisma.$ShareASaleEventPayload<ExtArgs>[]
|
|
46986
47108
|
}
|
|
46987
47109
|
scalars: $Extensions.GetPayloadResult<{
|
|
46988
47110
|
id: number
|
|
@@ -47417,6 +47539,8 @@ export namespace Prisma {
|
|
|
47417
47539
|
|
|
47418
47540
|
ImpactRadiusEvent<T extends OptIn$ImpactRadiusEventArgs<ExtArgs> = {}>(args?: Subset<T, OptIn$ImpactRadiusEventArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ImpactRadiusEventPayload<ExtArgs>, T, 'findMany'> | Null>;
|
|
47419
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
|
+
|
|
47420
47544
|
/**
|
|
47421
47545
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
47422
47546
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -47970,6 +48094,26 @@ export namespace Prisma {
|
|
|
47970
48094
|
distinct?: ImpactRadiusEventScalarFieldEnum | ImpactRadiusEventScalarFieldEnum[]
|
|
47971
48095
|
}
|
|
47972
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
|
+
|
|
47973
48117
|
/**
|
|
47974
48118
|
* OptIn without action
|
|
47975
48119
|
*/
|
|
@@ -75755,354 +75899,1382 @@ export namespace Prisma {
|
|
|
75755
75899
|
|
|
75756
75900
|
|
|
75757
75901
|
/**
|
|
75758
|
-
* Fields of the ImpactRadiusEvent model
|
|
75902
|
+
* Fields of the ImpactRadiusEvent model
|
|
75903
|
+
*/
|
|
75904
|
+
interface ImpactRadiusEventFieldRefs {
|
|
75905
|
+
readonly id: FieldRef<"ImpactRadiusEvent", 'Int'>
|
|
75906
|
+
readonly type: FieldRef<"ImpactRadiusEvent", 'String'>
|
|
75907
|
+
readonly created: FieldRef<"ImpactRadiusEvent", 'DateTime'>
|
|
75908
|
+
readonly amount: FieldRef<"ImpactRadiusEvent", 'Float'>
|
|
75909
|
+
readonly commission: FieldRef<"ImpactRadiusEvent", 'Float'>
|
|
75910
|
+
readonly metaData: FieldRef<"ImpactRadiusEvent", 'Json'>
|
|
75911
|
+
readonly userId: FieldRef<"ImpactRadiusEvent", 'Int'>
|
|
75912
|
+
readonly brandId: FieldRef<"ImpactRadiusEvent", 'Int'>
|
|
75913
|
+
readonly optInId: FieldRef<"ImpactRadiusEvent", 'Int'>
|
|
75914
|
+
}
|
|
75915
|
+
|
|
75916
|
+
|
|
75917
|
+
// Custom InputTypes
|
|
75918
|
+
/**
|
|
75919
|
+
* ImpactRadiusEvent findUnique
|
|
75920
|
+
*/
|
|
75921
|
+
export type ImpactRadiusEventFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
75922
|
+
/**
|
|
75923
|
+
* Select specific fields to fetch from the ImpactRadiusEvent
|
|
75924
|
+
*/
|
|
75925
|
+
select?: ImpactRadiusEventSelect<ExtArgs> | null
|
|
75926
|
+
/**
|
|
75927
|
+
* Choose, which related nodes to fetch as well
|
|
75928
|
+
*/
|
|
75929
|
+
include?: ImpactRadiusEventInclude<ExtArgs> | null
|
|
75930
|
+
/**
|
|
75931
|
+
* Filter, which ImpactRadiusEvent to fetch.
|
|
75932
|
+
*/
|
|
75933
|
+
where: ImpactRadiusEventWhereUniqueInput
|
|
75934
|
+
}
|
|
75935
|
+
|
|
75936
|
+
/**
|
|
75937
|
+
* ImpactRadiusEvent findUniqueOrThrow
|
|
75938
|
+
*/
|
|
75939
|
+
export type ImpactRadiusEventFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
75940
|
+
/**
|
|
75941
|
+
* Select specific fields to fetch from the ImpactRadiusEvent
|
|
75942
|
+
*/
|
|
75943
|
+
select?: ImpactRadiusEventSelect<ExtArgs> | null
|
|
75944
|
+
/**
|
|
75945
|
+
* Choose, which related nodes to fetch as well
|
|
75946
|
+
*/
|
|
75947
|
+
include?: ImpactRadiusEventInclude<ExtArgs> | null
|
|
75948
|
+
/**
|
|
75949
|
+
* Filter, which ImpactRadiusEvent to fetch.
|
|
75950
|
+
*/
|
|
75951
|
+
where: ImpactRadiusEventWhereUniqueInput
|
|
75952
|
+
}
|
|
75953
|
+
|
|
75954
|
+
/**
|
|
75955
|
+
* ImpactRadiusEvent findFirst
|
|
75956
|
+
*/
|
|
75957
|
+
export type ImpactRadiusEventFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
75958
|
+
/**
|
|
75959
|
+
* Select specific fields to fetch from the ImpactRadiusEvent
|
|
75960
|
+
*/
|
|
75961
|
+
select?: ImpactRadiusEventSelect<ExtArgs> | null
|
|
75962
|
+
/**
|
|
75963
|
+
* Choose, which related nodes to fetch as well
|
|
75964
|
+
*/
|
|
75965
|
+
include?: ImpactRadiusEventInclude<ExtArgs> | null
|
|
75966
|
+
/**
|
|
75967
|
+
* Filter, which ImpactRadiusEvent to fetch.
|
|
75968
|
+
*/
|
|
75969
|
+
where?: ImpactRadiusEventWhereInput
|
|
75970
|
+
/**
|
|
75971
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
75972
|
+
*
|
|
75973
|
+
* Determine the order of ImpactRadiusEvents to fetch.
|
|
75974
|
+
*/
|
|
75975
|
+
orderBy?: ImpactRadiusEventOrderByWithRelationAndSearchRelevanceInput | ImpactRadiusEventOrderByWithRelationAndSearchRelevanceInput[]
|
|
75976
|
+
/**
|
|
75977
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
75978
|
+
*
|
|
75979
|
+
* Sets the position for searching for ImpactRadiusEvents.
|
|
75980
|
+
*/
|
|
75981
|
+
cursor?: ImpactRadiusEventWhereUniqueInput
|
|
75982
|
+
/**
|
|
75983
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
75984
|
+
*
|
|
75985
|
+
* Take `±n` ImpactRadiusEvents from the position of the cursor.
|
|
75986
|
+
*/
|
|
75987
|
+
take?: number
|
|
75988
|
+
/**
|
|
75989
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
75990
|
+
*
|
|
75991
|
+
* Skip the first `n` ImpactRadiusEvents.
|
|
75992
|
+
*/
|
|
75993
|
+
skip?: number
|
|
75994
|
+
/**
|
|
75995
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
75996
|
+
*
|
|
75997
|
+
* Filter by unique combinations of ImpactRadiusEvents.
|
|
75998
|
+
*/
|
|
75999
|
+
distinct?: ImpactRadiusEventScalarFieldEnum | ImpactRadiusEventScalarFieldEnum[]
|
|
76000
|
+
}
|
|
76001
|
+
|
|
76002
|
+
/**
|
|
76003
|
+
* ImpactRadiusEvent findFirstOrThrow
|
|
76004
|
+
*/
|
|
76005
|
+
export type ImpactRadiusEventFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76006
|
+
/**
|
|
76007
|
+
* Select specific fields to fetch from the ImpactRadiusEvent
|
|
76008
|
+
*/
|
|
76009
|
+
select?: ImpactRadiusEventSelect<ExtArgs> | null
|
|
76010
|
+
/**
|
|
76011
|
+
* Choose, which related nodes to fetch as well
|
|
76012
|
+
*/
|
|
76013
|
+
include?: ImpactRadiusEventInclude<ExtArgs> | null
|
|
76014
|
+
/**
|
|
76015
|
+
* Filter, which ImpactRadiusEvent to fetch.
|
|
76016
|
+
*/
|
|
76017
|
+
where?: ImpactRadiusEventWhereInput
|
|
76018
|
+
/**
|
|
76019
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
76020
|
+
*
|
|
76021
|
+
* Determine the order of ImpactRadiusEvents to fetch.
|
|
76022
|
+
*/
|
|
76023
|
+
orderBy?: ImpactRadiusEventOrderByWithRelationAndSearchRelevanceInput | ImpactRadiusEventOrderByWithRelationAndSearchRelevanceInput[]
|
|
76024
|
+
/**
|
|
76025
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
76026
|
+
*
|
|
76027
|
+
* Sets the position for searching for ImpactRadiusEvents.
|
|
76028
|
+
*/
|
|
76029
|
+
cursor?: ImpactRadiusEventWhereUniqueInput
|
|
76030
|
+
/**
|
|
76031
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
76032
|
+
*
|
|
76033
|
+
* Take `±n` ImpactRadiusEvents from the position of the cursor.
|
|
76034
|
+
*/
|
|
76035
|
+
take?: number
|
|
76036
|
+
/**
|
|
76037
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
76038
|
+
*
|
|
76039
|
+
* Skip the first `n` ImpactRadiusEvents.
|
|
76040
|
+
*/
|
|
76041
|
+
skip?: number
|
|
76042
|
+
/**
|
|
76043
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
76044
|
+
*
|
|
76045
|
+
* Filter by unique combinations of ImpactRadiusEvents.
|
|
76046
|
+
*/
|
|
76047
|
+
distinct?: ImpactRadiusEventScalarFieldEnum | ImpactRadiusEventScalarFieldEnum[]
|
|
76048
|
+
}
|
|
76049
|
+
|
|
76050
|
+
/**
|
|
76051
|
+
* ImpactRadiusEvent findMany
|
|
76052
|
+
*/
|
|
76053
|
+
export type ImpactRadiusEventFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76054
|
+
/**
|
|
76055
|
+
* Select specific fields to fetch from the ImpactRadiusEvent
|
|
76056
|
+
*/
|
|
76057
|
+
select?: ImpactRadiusEventSelect<ExtArgs> | null
|
|
76058
|
+
/**
|
|
76059
|
+
* Choose, which related nodes to fetch as well
|
|
76060
|
+
*/
|
|
76061
|
+
include?: ImpactRadiusEventInclude<ExtArgs> | null
|
|
76062
|
+
/**
|
|
76063
|
+
* Filter, which ImpactRadiusEvents to fetch.
|
|
76064
|
+
*/
|
|
76065
|
+
where?: ImpactRadiusEventWhereInput
|
|
76066
|
+
/**
|
|
76067
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
76068
|
+
*
|
|
76069
|
+
* Determine the order of ImpactRadiusEvents to fetch.
|
|
76070
|
+
*/
|
|
76071
|
+
orderBy?: ImpactRadiusEventOrderByWithRelationAndSearchRelevanceInput | ImpactRadiusEventOrderByWithRelationAndSearchRelevanceInput[]
|
|
76072
|
+
/**
|
|
76073
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
76074
|
+
*
|
|
76075
|
+
* Sets the position for listing ImpactRadiusEvents.
|
|
76076
|
+
*/
|
|
76077
|
+
cursor?: ImpactRadiusEventWhereUniqueInput
|
|
76078
|
+
/**
|
|
76079
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
76080
|
+
*
|
|
76081
|
+
* Take `±n` ImpactRadiusEvents from the position of the cursor.
|
|
76082
|
+
*/
|
|
76083
|
+
take?: number
|
|
76084
|
+
/**
|
|
76085
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
76086
|
+
*
|
|
76087
|
+
* Skip the first `n` ImpactRadiusEvents.
|
|
76088
|
+
*/
|
|
76089
|
+
skip?: number
|
|
76090
|
+
distinct?: ImpactRadiusEventScalarFieldEnum | ImpactRadiusEventScalarFieldEnum[]
|
|
76091
|
+
}
|
|
76092
|
+
|
|
76093
|
+
/**
|
|
76094
|
+
* ImpactRadiusEvent create
|
|
76095
|
+
*/
|
|
76096
|
+
export type ImpactRadiusEventCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76097
|
+
/**
|
|
76098
|
+
* Select specific fields to fetch from the ImpactRadiusEvent
|
|
76099
|
+
*/
|
|
76100
|
+
select?: ImpactRadiusEventSelect<ExtArgs> | null
|
|
76101
|
+
/**
|
|
76102
|
+
* Choose, which related nodes to fetch as well
|
|
76103
|
+
*/
|
|
76104
|
+
include?: ImpactRadiusEventInclude<ExtArgs> | null
|
|
76105
|
+
/**
|
|
76106
|
+
* The data needed to create a ImpactRadiusEvent.
|
|
76107
|
+
*/
|
|
76108
|
+
data: XOR<ImpactRadiusEventCreateInput, ImpactRadiusEventUncheckedCreateInput>
|
|
76109
|
+
}
|
|
76110
|
+
|
|
76111
|
+
/**
|
|
76112
|
+
* ImpactRadiusEvent createMany
|
|
76113
|
+
*/
|
|
76114
|
+
export type ImpactRadiusEventCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76115
|
+
/**
|
|
76116
|
+
* The data used to create many ImpactRadiusEvents.
|
|
76117
|
+
*/
|
|
76118
|
+
data: ImpactRadiusEventCreateManyInput | ImpactRadiusEventCreateManyInput[]
|
|
76119
|
+
skipDuplicates?: boolean
|
|
76120
|
+
}
|
|
76121
|
+
|
|
76122
|
+
/**
|
|
76123
|
+
* ImpactRadiusEvent createManyAndReturn
|
|
76124
|
+
*/
|
|
76125
|
+
export type ImpactRadiusEventCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76126
|
+
/**
|
|
76127
|
+
* Select specific fields to fetch from the ImpactRadiusEvent
|
|
76128
|
+
*/
|
|
76129
|
+
select?: ImpactRadiusEventSelectCreateManyAndReturn<ExtArgs> | null
|
|
76130
|
+
/**
|
|
76131
|
+
* The data used to create many ImpactRadiusEvents.
|
|
76132
|
+
*/
|
|
76133
|
+
data: ImpactRadiusEventCreateManyInput | ImpactRadiusEventCreateManyInput[]
|
|
76134
|
+
skipDuplicates?: boolean
|
|
76135
|
+
/**
|
|
76136
|
+
* Choose, which related nodes to fetch as well
|
|
76137
|
+
*/
|
|
76138
|
+
include?: ImpactRadiusEventIncludeCreateManyAndReturn<ExtArgs> | null
|
|
76139
|
+
}
|
|
76140
|
+
|
|
76141
|
+
/**
|
|
76142
|
+
* ImpactRadiusEvent update
|
|
76143
|
+
*/
|
|
76144
|
+
export type ImpactRadiusEventUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76145
|
+
/**
|
|
76146
|
+
* Select specific fields to fetch from the ImpactRadiusEvent
|
|
76147
|
+
*/
|
|
76148
|
+
select?: ImpactRadiusEventSelect<ExtArgs> | null
|
|
76149
|
+
/**
|
|
76150
|
+
* Choose, which related nodes to fetch as well
|
|
76151
|
+
*/
|
|
76152
|
+
include?: ImpactRadiusEventInclude<ExtArgs> | null
|
|
76153
|
+
/**
|
|
76154
|
+
* The data needed to update a ImpactRadiusEvent.
|
|
76155
|
+
*/
|
|
76156
|
+
data: XOR<ImpactRadiusEventUpdateInput, ImpactRadiusEventUncheckedUpdateInput>
|
|
76157
|
+
/**
|
|
76158
|
+
* Choose, which ImpactRadiusEvent to update.
|
|
76159
|
+
*/
|
|
76160
|
+
where: ImpactRadiusEventWhereUniqueInput
|
|
76161
|
+
}
|
|
76162
|
+
|
|
76163
|
+
/**
|
|
76164
|
+
* ImpactRadiusEvent updateMany
|
|
76165
|
+
*/
|
|
76166
|
+
export type ImpactRadiusEventUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76167
|
+
/**
|
|
76168
|
+
* The data used to update ImpactRadiusEvents.
|
|
76169
|
+
*/
|
|
76170
|
+
data: XOR<ImpactRadiusEventUpdateManyMutationInput, ImpactRadiusEventUncheckedUpdateManyInput>
|
|
76171
|
+
/**
|
|
76172
|
+
* Filter which ImpactRadiusEvents to update
|
|
76173
|
+
*/
|
|
76174
|
+
where?: ImpactRadiusEventWhereInput
|
|
76175
|
+
}
|
|
76176
|
+
|
|
76177
|
+
/**
|
|
76178
|
+
* ImpactRadiusEvent upsert
|
|
76179
|
+
*/
|
|
76180
|
+
export type ImpactRadiusEventUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76181
|
+
/**
|
|
76182
|
+
* Select specific fields to fetch from the ImpactRadiusEvent
|
|
76183
|
+
*/
|
|
76184
|
+
select?: ImpactRadiusEventSelect<ExtArgs> | null
|
|
76185
|
+
/**
|
|
76186
|
+
* Choose, which related nodes to fetch as well
|
|
76187
|
+
*/
|
|
76188
|
+
include?: ImpactRadiusEventInclude<ExtArgs> | null
|
|
76189
|
+
/**
|
|
76190
|
+
* The filter to search for the ImpactRadiusEvent to update in case it exists.
|
|
76191
|
+
*/
|
|
76192
|
+
where: ImpactRadiusEventWhereUniqueInput
|
|
76193
|
+
/**
|
|
76194
|
+
* In case the ImpactRadiusEvent found by the `where` argument doesn't exist, create a new ImpactRadiusEvent with this data.
|
|
76195
|
+
*/
|
|
76196
|
+
create: XOR<ImpactRadiusEventCreateInput, ImpactRadiusEventUncheckedCreateInput>
|
|
76197
|
+
/**
|
|
76198
|
+
* In case the ImpactRadiusEvent was found with the provided `where` argument, update it with this data.
|
|
76199
|
+
*/
|
|
76200
|
+
update: XOR<ImpactRadiusEventUpdateInput, ImpactRadiusEventUncheckedUpdateInput>
|
|
76201
|
+
}
|
|
76202
|
+
|
|
76203
|
+
/**
|
|
76204
|
+
* ImpactRadiusEvent delete
|
|
76205
|
+
*/
|
|
76206
|
+
export type ImpactRadiusEventDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76207
|
+
/**
|
|
76208
|
+
* Select specific fields to fetch from the ImpactRadiusEvent
|
|
76209
|
+
*/
|
|
76210
|
+
select?: ImpactRadiusEventSelect<ExtArgs> | null
|
|
76211
|
+
/**
|
|
76212
|
+
* Choose, which related nodes to fetch as well
|
|
76213
|
+
*/
|
|
76214
|
+
include?: ImpactRadiusEventInclude<ExtArgs> | null
|
|
76215
|
+
/**
|
|
76216
|
+
* Filter which ImpactRadiusEvent to delete.
|
|
76217
|
+
*/
|
|
76218
|
+
where: ImpactRadiusEventWhereUniqueInput
|
|
76219
|
+
}
|
|
76220
|
+
|
|
76221
|
+
/**
|
|
76222
|
+
* ImpactRadiusEvent deleteMany
|
|
76223
|
+
*/
|
|
76224
|
+
export type ImpactRadiusEventDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76225
|
+
/**
|
|
76226
|
+
* Filter which ImpactRadiusEvents to delete
|
|
76227
|
+
*/
|
|
76228
|
+
where?: ImpactRadiusEventWhereInput
|
|
76229
|
+
}
|
|
76230
|
+
|
|
76231
|
+
/**
|
|
76232
|
+
* ImpactRadiusEvent.brand
|
|
76233
|
+
*/
|
|
76234
|
+
export type ImpactRadiusEvent$brandArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76235
|
+
/**
|
|
76236
|
+
* Select specific fields to fetch from the Brand
|
|
76237
|
+
*/
|
|
76238
|
+
select?: BrandSelect<ExtArgs> | null
|
|
76239
|
+
/**
|
|
76240
|
+
* Choose, which related nodes to fetch as well
|
|
76241
|
+
*/
|
|
76242
|
+
include?: BrandInclude<ExtArgs> | null
|
|
76243
|
+
where?: BrandWhereInput
|
|
76244
|
+
}
|
|
76245
|
+
|
|
76246
|
+
/**
|
|
76247
|
+
* ImpactRadiusEvent.optIn
|
|
76248
|
+
*/
|
|
76249
|
+
export type ImpactRadiusEvent$optInArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76250
|
+
/**
|
|
76251
|
+
* Select specific fields to fetch from the OptIn
|
|
76252
|
+
*/
|
|
76253
|
+
select?: OptInSelect<ExtArgs> | null
|
|
76254
|
+
/**
|
|
76255
|
+
* Choose, which related nodes to fetch as well
|
|
76256
|
+
*/
|
|
76257
|
+
include?: OptInInclude<ExtArgs> | null
|
|
76258
|
+
where?: OptInWhereInput
|
|
76259
|
+
}
|
|
76260
|
+
|
|
76261
|
+
/**
|
|
76262
|
+
* ImpactRadiusEvent without action
|
|
76263
|
+
*/
|
|
76264
|
+
export type ImpactRadiusEventDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76265
|
+
/**
|
|
76266
|
+
* Select specific fields to fetch from the ImpactRadiusEvent
|
|
76267
|
+
*/
|
|
76268
|
+
select?: ImpactRadiusEventSelect<ExtArgs> | null
|
|
76269
|
+
/**
|
|
76270
|
+
* Choose, which related nodes to fetch as well
|
|
76271
|
+
*/
|
|
76272
|
+
include?: ImpactRadiusEventInclude<ExtArgs> | null
|
|
76273
|
+
}
|
|
76274
|
+
|
|
76275
|
+
|
|
76276
|
+
/**
|
|
76277
|
+
* Model ShareASaleEvent
|
|
76278
|
+
*/
|
|
76279
|
+
|
|
76280
|
+
export type AggregateShareASaleEvent = {
|
|
76281
|
+
_count: ShareASaleEventCountAggregateOutputType | null
|
|
76282
|
+
_avg: ShareASaleEventAvgAggregateOutputType | null
|
|
76283
|
+
_sum: ShareASaleEventSumAggregateOutputType | null
|
|
76284
|
+
_min: ShareASaleEventMinAggregateOutputType | null
|
|
76285
|
+
_max: ShareASaleEventMaxAggregateOutputType | null
|
|
76286
|
+
}
|
|
76287
|
+
|
|
76288
|
+
export type ShareASaleEventAvgAggregateOutputType = {
|
|
76289
|
+
id: number | null
|
|
76290
|
+
saleAmount: number | null
|
|
76291
|
+
commission: number | null
|
|
76292
|
+
optInId: number | null
|
|
76293
|
+
}
|
|
76294
|
+
|
|
76295
|
+
export type ShareASaleEventSumAggregateOutputType = {
|
|
76296
|
+
id: number | null
|
|
76297
|
+
saleAmount: number | null
|
|
76298
|
+
commission: number | null
|
|
76299
|
+
optInId: number | null
|
|
76300
|
+
}
|
|
76301
|
+
|
|
76302
|
+
export type ShareASaleEventMinAggregateOutputType = {
|
|
76303
|
+
id: number | null
|
|
76304
|
+
created: Date | null
|
|
76305
|
+
saleAmount: number | null
|
|
76306
|
+
commission: number | null
|
|
76307
|
+
optInId: number | null
|
|
76308
|
+
}
|
|
76309
|
+
|
|
76310
|
+
export type ShareASaleEventMaxAggregateOutputType = {
|
|
76311
|
+
id: number | null
|
|
76312
|
+
created: Date | null
|
|
76313
|
+
saleAmount: number | null
|
|
76314
|
+
commission: number | null
|
|
76315
|
+
optInId: number | null
|
|
76316
|
+
}
|
|
76317
|
+
|
|
76318
|
+
export type ShareASaleEventCountAggregateOutputType = {
|
|
76319
|
+
id: number
|
|
76320
|
+
created: number
|
|
76321
|
+
saleAmount: number
|
|
76322
|
+
commission: number
|
|
76323
|
+
metaData: number
|
|
76324
|
+
optInId: number
|
|
76325
|
+
_all: number
|
|
76326
|
+
}
|
|
76327
|
+
|
|
76328
|
+
|
|
76329
|
+
export type ShareASaleEventAvgAggregateInputType = {
|
|
76330
|
+
id?: true
|
|
76331
|
+
saleAmount?: true
|
|
76332
|
+
commission?: true
|
|
76333
|
+
optInId?: true
|
|
76334
|
+
}
|
|
76335
|
+
|
|
76336
|
+
export type ShareASaleEventSumAggregateInputType = {
|
|
76337
|
+
id?: true
|
|
76338
|
+
saleAmount?: true
|
|
76339
|
+
commission?: true
|
|
76340
|
+
optInId?: true
|
|
76341
|
+
}
|
|
76342
|
+
|
|
76343
|
+
export type ShareASaleEventMinAggregateInputType = {
|
|
76344
|
+
id?: true
|
|
76345
|
+
created?: true
|
|
76346
|
+
saleAmount?: true
|
|
76347
|
+
commission?: true
|
|
76348
|
+
optInId?: true
|
|
76349
|
+
}
|
|
76350
|
+
|
|
76351
|
+
export type ShareASaleEventMaxAggregateInputType = {
|
|
76352
|
+
id?: true
|
|
76353
|
+
created?: true
|
|
76354
|
+
saleAmount?: true
|
|
76355
|
+
commission?: true
|
|
76356
|
+
optInId?: true
|
|
76357
|
+
}
|
|
76358
|
+
|
|
76359
|
+
export type ShareASaleEventCountAggregateInputType = {
|
|
76360
|
+
id?: true
|
|
76361
|
+
created?: true
|
|
76362
|
+
saleAmount?: true
|
|
76363
|
+
commission?: true
|
|
76364
|
+
metaData?: true
|
|
76365
|
+
optInId?: true
|
|
76366
|
+
_all?: true
|
|
76367
|
+
}
|
|
76368
|
+
|
|
76369
|
+
export type ShareASaleEventAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76370
|
+
/**
|
|
76371
|
+
* Filter which ShareASaleEvent to aggregate.
|
|
76372
|
+
*/
|
|
76373
|
+
where?: ShareASaleEventWhereInput
|
|
76374
|
+
/**
|
|
76375
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
76376
|
+
*
|
|
76377
|
+
* Determine the order of ShareASaleEvents to fetch.
|
|
76378
|
+
*/
|
|
76379
|
+
orderBy?: ShareASaleEventOrderByWithRelationAndSearchRelevanceInput | ShareASaleEventOrderByWithRelationAndSearchRelevanceInput[]
|
|
76380
|
+
/**
|
|
76381
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
76382
|
+
*
|
|
76383
|
+
* Sets the start position
|
|
76384
|
+
*/
|
|
76385
|
+
cursor?: ShareASaleEventWhereUniqueInput
|
|
76386
|
+
/**
|
|
76387
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
76388
|
+
*
|
|
76389
|
+
* Take `±n` ShareASaleEvents from the position of the cursor.
|
|
76390
|
+
*/
|
|
76391
|
+
take?: number
|
|
76392
|
+
/**
|
|
76393
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
76394
|
+
*
|
|
76395
|
+
* Skip the first `n` ShareASaleEvents.
|
|
76396
|
+
*/
|
|
76397
|
+
skip?: number
|
|
76398
|
+
/**
|
|
76399
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
76400
|
+
*
|
|
76401
|
+
* Count returned ShareASaleEvents
|
|
76402
|
+
**/
|
|
76403
|
+
_count?: true | ShareASaleEventCountAggregateInputType
|
|
76404
|
+
/**
|
|
76405
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
76406
|
+
*
|
|
76407
|
+
* Select which fields to average
|
|
76408
|
+
**/
|
|
76409
|
+
_avg?: ShareASaleEventAvgAggregateInputType
|
|
76410
|
+
/**
|
|
76411
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
76412
|
+
*
|
|
76413
|
+
* Select which fields to sum
|
|
76414
|
+
**/
|
|
76415
|
+
_sum?: ShareASaleEventSumAggregateInputType
|
|
76416
|
+
/**
|
|
76417
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
76418
|
+
*
|
|
76419
|
+
* Select which fields to find the minimum value
|
|
76420
|
+
**/
|
|
76421
|
+
_min?: ShareASaleEventMinAggregateInputType
|
|
76422
|
+
/**
|
|
76423
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
76424
|
+
*
|
|
76425
|
+
* Select which fields to find the maximum value
|
|
76426
|
+
**/
|
|
76427
|
+
_max?: ShareASaleEventMaxAggregateInputType
|
|
76428
|
+
}
|
|
76429
|
+
|
|
76430
|
+
export type GetShareASaleEventAggregateType<T extends ShareASaleEventAggregateArgs> = {
|
|
76431
|
+
[P in keyof T & keyof AggregateShareASaleEvent]: P extends '_count' | 'count'
|
|
76432
|
+
? T[P] extends true
|
|
76433
|
+
? number
|
|
76434
|
+
: GetScalarType<T[P], AggregateShareASaleEvent[P]>
|
|
76435
|
+
: GetScalarType<T[P], AggregateShareASaleEvent[P]>
|
|
76436
|
+
}
|
|
76437
|
+
|
|
76438
|
+
|
|
76439
|
+
|
|
76440
|
+
|
|
76441
|
+
export type ShareASaleEventGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76442
|
+
where?: ShareASaleEventWhereInput
|
|
76443
|
+
orderBy?: ShareASaleEventOrderByWithAggregationInput | ShareASaleEventOrderByWithAggregationInput[]
|
|
76444
|
+
by: ShareASaleEventScalarFieldEnum[] | ShareASaleEventScalarFieldEnum
|
|
76445
|
+
having?: ShareASaleEventScalarWhereWithAggregatesInput
|
|
76446
|
+
take?: number
|
|
76447
|
+
skip?: number
|
|
76448
|
+
_count?: ShareASaleEventCountAggregateInputType | true
|
|
76449
|
+
_avg?: ShareASaleEventAvgAggregateInputType
|
|
76450
|
+
_sum?: ShareASaleEventSumAggregateInputType
|
|
76451
|
+
_min?: ShareASaleEventMinAggregateInputType
|
|
76452
|
+
_max?: ShareASaleEventMaxAggregateInputType
|
|
76453
|
+
}
|
|
76454
|
+
|
|
76455
|
+
export type ShareASaleEventGroupByOutputType = {
|
|
76456
|
+
id: number
|
|
76457
|
+
created: Date
|
|
76458
|
+
saleAmount: number | null
|
|
76459
|
+
commission: number | null
|
|
76460
|
+
metaData: JsonValue
|
|
76461
|
+
optInId: number | null
|
|
76462
|
+
_count: ShareASaleEventCountAggregateOutputType | null
|
|
76463
|
+
_avg: ShareASaleEventAvgAggregateOutputType | null
|
|
76464
|
+
_sum: ShareASaleEventSumAggregateOutputType | null
|
|
76465
|
+
_min: ShareASaleEventMinAggregateOutputType | null
|
|
76466
|
+
_max: ShareASaleEventMaxAggregateOutputType | null
|
|
76467
|
+
}
|
|
76468
|
+
|
|
76469
|
+
type GetShareASaleEventGroupByPayload<T extends ShareASaleEventGroupByArgs> = Prisma.PrismaPromise<
|
|
76470
|
+
Array<
|
|
76471
|
+
PickEnumerable<ShareASaleEventGroupByOutputType, T['by']> &
|
|
76472
|
+
{
|
|
76473
|
+
[P in ((keyof T) & (keyof ShareASaleEventGroupByOutputType))]: P extends '_count'
|
|
76474
|
+
? T[P] extends boolean
|
|
76475
|
+
? number
|
|
76476
|
+
: GetScalarType<T[P], ShareASaleEventGroupByOutputType[P]>
|
|
76477
|
+
: GetScalarType<T[P], ShareASaleEventGroupByOutputType[P]>
|
|
76478
|
+
}
|
|
76479
|
+
>
|
|
76480
|
+
>
|
|
76481
|
+
|
|
76482
|
+
|
|
76483
|
+
export type ShareASaleEventSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
76484
|
+
id?: boolean
|
|
76485
|
+
created?: boolean
|
|
76486
|
+
saleAmount?: boolean
|
|
76487
|
+
commission?: boolean
|
|
76488
|
+
metaData?: boolean
|
|
76489
|
+
optInId?: boolean
|
|
76490
|
+
optIn?: boolean | ShareASaleEvent$optInArgs<ExtArgs>
|
|
76491
|
+
}, ExtArgs["result"]["shareASaleEvent"]>
|
|
76492
|
+
|
|
76493
|
+
export type ShareASaleEventSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
76494
|
+
id?: boolean
|
|
76495
|
+
created?: boolean
|
|
76496
|
+
saleAmount?: boolean
|
|
76497
|
+
commission?: boolean
|
|
76498
|
+
metaData?: boolean
|
|
76499
|
+
optInId?: boolean
|
|
76500
|
+
optIn?: boolean | ShareASaleEvent$optInArgs<ExtArgs>
|
|
76501
|
+
}, ExtArgs["result"]["shareASaleEvent"]>
|
|
76502
|
+
|
|
76503
|
+
export type ShareASaleEventSelectScalar = {
|
|
76504
|
+
id?: boolean
|
|
76505
|
+
created?: boolean
|
|
76506
|
+
saleAmount?: boolean
|
|
76507
|
+
commission?: boolean
|
|
76508
|
+
metaData?: boolean
|
|
76509
|
+
optInId?: boolean
|
|
76510
|
+
}
|
|
76511
|
+
|
|
76512
|
+
export type ShareASaleEventInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76513
|
+
optIn?: boolean | ShareASaleEvent$optInArgs<ExtArgs>
|
|
76514
|
+
}
|
|
76515
|
+
export type ShareASaleEventIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76516
|
+
optIn?: boolean | ShareASaleEvent$optInArgs<ExtArgs>
|
|
76517
|
+
}
|
|
76518
|
+
|
|
76519
|
+
export type $ShareASaleEventPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76520
|
+
name: "ShareASaleEvent"
|
|
76521
|
+
objects: {
|
|
76522
|
+
optIn: Prisma.$OptInPayload<ExtArgs> | null
|
|
76523
|
+
}
|
|
76524
|
+
scalars: $Extensions.GetPayloadResult<{
|
|
76525
|
+
id: number
|
|
76526
|
+
created: Date
|
|
76527
|
+
saleAmount: number | null
|
|
76528
|
+
commission: number | null
|
|
76529
|
+
metaData: Prisma.JsonValue
|
|
76530
|
+
optInId: number | null
|
|
76531
|
+
}, ExtArgs["result"]["shareASaleEvent"]>
|
|
76532
|
+
composites: {}
|
|
76533
|
+
}
|
|
76534
|
+
|
|
76535
|
+
type ShareASaleEventGetPayload<S extends boolean | null | undefined | ShareASaleEventDefaultArgs> = $Result.GetResult<Prisma.$ShareASaleEventPayload, S>
|
|
76536
|
+
|
|
76537
|
+
type ShareASaleEventCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
76538
|
+
Omit<ShareASaleEventFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
76539
|
+
select?: ShareASaleEventCountAggregateInputType | true
|
|
76540
|
+
}
|
|
76541
|
+
|
|
76542
|
+
export interface ShareASaleEventDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
76543
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['ShareASaleEvent'], meta: { name: 'ShareASaleEvent' } }
|
|
76544
|
+
/**
|
|
76545
|
+
* Find zero or one ShareASaleEvent that matches the filter.
|
|
76546
|
+
* @param {ShareASaleEventFindUniqueArgs} args - Arguments to find a ShareASaleEvent
|
|
76547
|
+
* @example
|
|
76548
|
+
* // Get one ShareASaleEvent
|
|
76549
|
+
* const shareASaleEvent = await prisma.shareASaleEvent.findUnique({
|
|
76550
|
+
* where: {
|
|
76551
|
+
* // ... provide filter here
|
|
76552
|
+
* }
|
|
76553
|
+
* })
|
|
76554
|
+
**/
|
|
76555
|
+
findUnique<T extends ShareASaleEventFindUniqueArgs<ExtArgs>>(
|
|
76556
|
+
args: SelectSubset<T, ShareASaleEventFindUniqueArgs<ExtArgs>>
|
|
76557
|
+
): Prisma__ShareASaleEventClient<$Result.GetResult<Prisma.$ShareASaleEventPayload<ExtArgs>, T, 'findUnique'> | null, null, ExtArgs>
|
|
76558
|
+
|
|
76559
|
+
/**
|
|
76560
|
+
* Find one ShareASaleEvent that matches the filter or throw an error with `error.code='P2025'`
|
|
76561
|
+
* if no matches were found.
|
|
76562
|
+
* @param {ShareASaleEventFindUniqueOrThrowArgs} args - Arguments to find a ShareASaleEvent
|
|
76563
|
+
* @example
|
|
76564
|
+
* // Get one ShareASaleEvent
|
|
76565
|
+
* const shareASaleEvent = await prisma.shareASaleEvent.findUniqueOrThrow({
|
|
76566
|
+
* where: {
|
|
76567
|
+
* // ... provide filter here
|
|
76568
|
+
* }
|
|
76569
|
+
* })
|
|
76570
|
+
**/
|
|
76571
|
+
findUniqueOrThrow<T extends ShareASaleEventFindUniqueOrThrowArgs<ExtArgs>>(
|
|
76572
|
+
args?: SelectSubset<T, ShareASaleEventFindUniqueOrThrowArgs<ExtArgs>>
|
|
76573
|
+
): Prisma__ShareASaleEventClient<$Result.GetResult<Prisma.$ShareASaleEventPayload<ExtArgs>, T, 'findUniqueOrThrow'>, never, ExtArgs>
|
|
76574
|
+
|
|
76575
|
+
/**
|
|
76576
|
+
* Find the first ShareASaleEvent that matches the filter.
|
|
76577
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
76578
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
76579
|
+
* @param {ShareASaleEventFindFirstArgs} args - Arguments to find a ShareASaleEvent
|
|
76580
|
+
* @example
|
|
76581
|
+
* // Get one ShareASaleEvent
|
|
76582
|
+
* const shareASaleEvent = await prisma.shareASaleEvent.findFirst({
|
|
76583
|
+
* where: {
|
|
76584
|
+
* // ... provide filter here
|
|
76585
|
+
* }
|
|
76586
|
+
* })
|
|
76587
|
+
**/
|
|
76588
|
+
findFirst<T extends ShareASaleEventFindFirstArgs<ExtArgs>>(
|
|
76589
|
+
args?: SelectSubset<T, ShareASaleEventFindFirstArgs<ExtArgs>>
|
|
76590
|
+
): Prisma__ShareASaleEventClient<$Result.GetResult<Prisma.$ShareASaleEventPayload<ExtArgs>, T, 'findFirst'> | null, null, ExtArgs>
|
|
76591
|
+
|
|
76592
|
+
/**
|
|
76593
|
+
* Find the first ShareASaleEvent that matches the filter or
|
|
76594
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
76595
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
76596
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
76597
|
+
* @param {ShareASaleEventFindFirstOrThrowArgs} args - Arguments to find a ShareASaleEvent
|
|
76598
|
+
* @example
|
|
76599
|
+
* // Get one ShareASaleEvent
|
|
76600
|
+
* const shareASaleEvent = await prisma.shareASaleEvent.findFirstOrThrow({
|
|
76601
|
+
* where: {
|
|
76602
|
+
* // ... provide filter here
|
|
76603
|
+
* }
|
|
76604
|
+
* })
|
|
76605
|
+
**/
|
|
76606
|
+
findFirstOrThrow<T extends ShareASaleEventFindFirstOrThrowArgs<ExtArgs>>(
|
|
76607
|
+
args?: SelectSubset<T, ShareASaleEventFindFirstOrThrowArgs<ExtArgs>>
|
|
76608
|
+
): Prisma__ShareASaleEventClient<$Result.GetResult<Prisma.$ShareASaleEventPayload<ExtArgs>, T, 'findFirstOrThrow'>, never, ExtArgs>
|
|
76609
|
+
|
|
76610
|
+
/**
|
|
76611
|
+
* Find zero or more ShareASaleEvents that matches the filter.
|
|
76612
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
76613
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
76614
|
+
* @param {ShareASaleEventFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
76615
|
+
* @example
|
|
76616
|
+
* // Get all ShareASaleEvents
|
|
76617
|
+
* const shareASaleEvents = await prisma.shareASaleEvent.findMany()
|
|
76618
|
+
*
|
|
76619
|
+
* // Get first 10 ShareASaleEvents
|
|
76620
|
+
* const shareASaleEvents = await prisma.shareASaleEvent.findMany({ take: 10 })
|
|
76621
|
+
*
|
|
76622
|
+
* // Only select the `id`
|
|
76623
|
+
* const shareASaleEventWithIdOnly = await prisma.shareASaleEvent.findMany({ select: { id: true } })
|
|
76624
|
+
*
|
|
76625
|
+
**/
|
|
76626
|
+
findMany<T extends ShareASaleEventFindManyArgs<ExtArgs>>(
|
|
76627
|
+
args?: SelectSubset<T, ShareASaleEventFindManyArgs<ExtArgs>>
|
|
76628
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ShareASaleEventPayload<ExtArgs>, T, 'findMany'>>
|
|
76629
|
+
|
|
76630
|
+
/**
|
|
76631
|
+
* Create a ShareASaleEvent.
|
|
76632
|
+
* @param {ShareASaleEventCreateArgs} args - Arguments to create a ShareASaleEvent.
|
|
76633
|
+
* @example
|
|
76634
|
+
* // Create one ShareASaleEvent
|
|
76635
|
+
* const ShareASaleEvent = await prisma.shareASaleEvent.create({
|
|
76636
|
+
* data: {
|
|
76637
|
+
* // ... data to create a ShareASaleEvent
|
|
76638
|
+
* }
|
|
76639
|
+
* })
|
|
76640
|
+
*
|
|
76641
|
+
**/
|
|
76642
|
+
create<T extends ShareASaleEventCreateArgs<ExtArgs>>(
|
|
76643
|
+
args: SelectSubset<T, ShareASaleEventCreateArgs<ExtArgs>>
|
|
76644
|
+
): Prisma__ShareASaleEventClient<$Result.GetResult<Prisma.$ShareASaleEventPayload<ExtArgs>, T, 'create'>, never, ExtArgs>
|
|
76645
|
+
|
|
76646
|
+
/**
|
|
76647
|
+
* Create many ShareASaleEvents.
|
|
76648
|
+
* @param {ShareASaleEventCreateManyArgs} args - Arguments to create many ShareASaleEvents.
|
|
76649
|
+
* @example
|
|
76650
|
+
* // Create many ShareASaleEvents
|
|
76651
|
+
* const shareASaleEvent = await prisma.shareASaleEvent.createMany({
|
|
76652
|
+
* data: [
|
|
76653
|
+
* // ... provide data here
|
|
76654
|
+
* ]
|
|
76655
|
+
* })
|
|
76656
|
+
*
|
|
76657
|
+
**/
|
|
76658
|
+
createMany<T extends ShareASaleEventCreateManyArgs<ExtArgs>>(
|
|
76659
|
+
args?: SelectSubset<T, ShareASaleEventCreateManyArgs<ExtArgs>>
|
|
76660
|
+
): Prisma.PrismaPromise<BatchPayload>
|
|
76661
|
+
|
|
76662
|
+
/**
|
|
76663
|
+
* Create many ShareASaleEvents and returns the data saved in the database.
|
|
76664
|
+
* @param {ShareASaleEventCreateManyAndReturnArgs} args - Arguments to create many ShareASaleEvents.
|
|
76665
|
+
* @example
|
|
76666
|
+
* // Create many ShareASaleEvents
|
|
76667
|
+
* const shareASaleEvent = await prisma.shareASaleEvent.createManyAndReturn({
|
|
76668
|
+
* data: [
|
|
76669
|
+
* // ... provide data here
|
|
76670
|
+
* ]
|
|
76671
|
+
* })
|
|
76672
|
+
*
|
|
76673
|
+
* // Create many ShareASaleEvents and only return the `id`
|
|
76674
|
+
* const shareASaleEventWithIdOnly = await prisma.shareASaleEvent.createManyAndReturn({
|
|
76675
|
+
* select: { id: true },
|
|
76676
|
+
* data: [
|
|
76677
|
+
* // ... provide data here
|
|
76678
|
+
* ]
|
|
76679
|
+
* })
|
|
76680
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
76681
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
76682
|
+
*
|
|
76683
|
+
**/
|
|
76684
|
+
createManyAndReturn<T extends ShareASaleEventCreateManyAndReturnArgs<ExtArgs>>(
|
|
76685
|
+
args?: SelectSubset<T, ShareASaleEventCreateManyAndReturnArgs<ExtArgs>>
|
|
76686
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ShareASaleEventPayload<ExtArgs>, T, 'createManyAndReturn'>>
|
|
76687
|
+
|
|
76688
|
+
/**
|
|
76689
|
+
* Delete a ShareASaleEvent.
|
|
76690
|
+
* @param {ShareASaleEventDeleteArgs} args - Arguments to delete one ShareASaleEvent.
|
|
76691
|
+
* @example
|
|
76692
|
+
* // Delete one ShareASaleEvent
|
|
76693
|
+
* const ShareASaleEvent = await prisma.shareASaleEvent.delete({
|
|
76694
|
+
* where: {
|
|
76695
|
+
* // ... filter to delete one ShareASaleEvent
|
|
76696
|
+
* }
|
|
76697
|
+
* })
|
|
76698
|
+
*
|
|
76699
|
+
**/
|
|
76700
|
+
delete<T extends ShareASaleEventDeleteArgs<ExtArgs>>(
|
|
76701
|
+
args: SelectSubset<T, ShareASaleEventDeleteArgs<ExtArgs>>
|
|
76702
|
+
): Prisma__ShareASaleEventClient<$Result.GetResult<Prisma.$ShareASaleEventPayload<ExtArgs>, T, 'delete'>, never, ExtArgs>
|
|
76703
|
+
|
|
76704
|
+
/**
|
|
76705
|
+
* Update one ShareASaleEvent.
|
|
76706
|
+
* @param {ShareASaleEventUpdateArgs} args - Arguments to update one ShareASaleEvent.
|
|
76707
|
+
* @example
|
|
76708
|
+
* // Update one ShareASaleEvent
|
|
76709
|
+
* const shareASaleEvent = await prisma.shareASaleEvent.update({
|
|
76710
|
+
* where: {
|
|
76711
|
+
* // ... provide filter here
|
|
76712
|
+
* },
|
|
76713
|
+
* data: {
|
|
76714
|
+
* // ... provide data here
|
|
76715
|
+
* }
|
|
76716
|
+
* })
|
|
76717
|
+
*
|
|
76718
|
+
**/
|
|
76719
|
+
update<T extends ShareASaleEventUpdateArgs<ExtArgs>>(
|
|
76720
|
+
args: SelectSubset<T, ShareASaleEventUpdateArgs<ExtArgs>>
|
|
76721
|
+
): Prisma__ShareASaleEventClient<$Result.GetResult<Prisma.$ShareASaleEventPayload<ExtArgs>, T, 'update'>, never, ExtArgs>
|
|
76722
|
+
|
|
76723
|
+
/**
|
|
76724
|
+
* Delete zero or more ShareASaleEvents.
|
|
76725
|
+
* @param {ShareASaleEventDeleteManyArgs} args - Arguments to filter ShareASaleEvents to delete.
|
|
76726
|
+
* @example
|
|
76727
|
+
* // Delete a few ShareASaleEvents
|
|
76728
|
+
* const { count } = await prisma.shareASaleEvent.deleteMany({
|
|
76729
|
+
* where: {
|
|
76730
|
+
* // ... provide filter here
|
|
76731
|
+
* }
|
|
76732
|
+
* })
|
|
76733
|
+
*
|
|
76734
|
+
**/
|
|
76735
|
+
deleteMany<T extends ShareASaleEventDeleteManyArgs<ExtArgs>>(
|
|
76736
|
+
args?: SelectSubset<T, ShareASaleEventDeleteManyArgs<ExtArgs>>
|
|
76737
|
+
): Prisma.PrismaPromise<BatchPayload>
|
|
76738
|
+
|
|
76739
|
+
/**
|
|
76740
|
+
* Update zero or more ShareASaleEvents.
|
|
76741
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
76742
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
76743
|
+
* @param {ShareASaleEventUpdateManyArgs} args - Arguments to update one or more rows.
|
|
76744
|
+
* @example
|
|
76745
|
+
* // Update many ShareASaleEvents
|
|
76746
|
+
* const shareASaleEvent = await prisma.shareASaleEvent.updateMany({
|
|
76747
|
+
* where: {
|
|
76748
|
+
* // ... provide filter here
|
|
76749
|
+
* },
|
|
76750
|
+
* data: {
|
|
76751
|
+
* // ... provide data here
|
|
76752
|
+
* }
|
|
76753
|
+
* })
|
|
76754
|
+
*
|
|
76755
|
+
**/
|
|
76756
|
+
updateMany<T extends ShareASaleEventUpdateManyArgs<ExtArgs>>(
|
|
76757
|
+
args: SelectSubset<T, ShareASaleEventUpdateManyArgs<ExtArgs>>
|
|
76758
|
+
): Prisma.PrismaPromise<BatchPayload>
|
|
76759
|
+
|
|
76760
|
+
/**
|
|
76761
|
+
* Create or update one ShareASaleEvent.
|
|
76762
|
+
* @param {ShareASaleEventUpsertArgs} args - Arguments to update or create a ShareASaleEvent.
|
|
76763
|
+
* @example
|
|
76764
|
+
* // Update or create a ShareASaleEvent
|
|
76765
|
+
* const shareASaleEvent = await prisma.shareASaleEvent.upsert({
|
|
76766
|
+
* create: {
|
|
76767
|
+
* // ... data to create a ShareASaleEvent
|
|
76768
|
+
* },
|
|
76769
|
+
* update: {
|
|
76770
|
+
* // ... in case it already exists, update
|
|
76771
|
+
* },
|
|
76772
|
+
* where: {
|
|
76773
|
+
* // ... the filter for the ShareASaleEvent we want to update
|
|
76774
|
+
* }
|
|
76775
|
+
* })
|
|
76776
|
+
**/
|
|
76777
|
+
upsert<T extends ShareASaleEventUpsertArgs<ExtArgs>>(
|
|
76778
|
+
args: SelectSubset<T, ShareASaleEventUpsertArgs<ExtArgs>>
|
|
76779
|
+
): Prisma__ShareASaleEventClient<$Result.GetResult<Prisma.$ShareASaleEventPayload<ExtArgs>, T, 'upsert'>, never, ExtArgs>
|
|
76780
|
+
|
|
76781
|
+
/**
|
|
76782
|
+
* Count the number of ShareASaleEvents.
|
|
76783
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
76784
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
76785
|
+
* @param {ShareASaleEventCountArgs} args - Arguments to filter ShareASaleEvents to count.
|
|
76786
|
+
* @example
|
|
76787
|
+
* // Count the number of ShareASaleEvents
|
|
76788
|
+
* const count = await prisma.shareASaleEvent.count({
|
|
76789
|
+
* where: {
|
|
76790
|
+
* // ... the filter for the ShareASaleEvents we want to count
|
|
76791
|
+
* }
|
|
76792
|
+
* })
|
|
76793
|
+
**/
|
|
76794
|
+
count<T extends ShareASaleEventCountArgs>(
|
|
76795
|
+
args?: Subset<T, ShareASaleEventCountArgs>,
|
|
76796
|
+
): Prisma.PrismaPromise<
|
|
76797
|
+
T extends $Utils.Record<'select', any>
|
|
76798
|
+
? T['select'] extends true
|
|
76799
|
+
? number
|
|
76800
|
+
: GetScalarType<T['select'], ShareASaleEventCountAggregateOutputType>
|
|
76801
|
+
: number
|
|
76802
|
+
>
|
|
76803
|
+
|
|
76804
|
+
/**
|
|
76805
|
+
* Allows you to perform aggregations operations on a ShareASaleEvent.
|
|
76806
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
76807
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
76808
|
+
* @param {ShareASaleEventAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
76809
|
+
* @example
|
|
76810
|
+
* // Ordered by age ascending
|
|
76811
|
+
* // Where email contains prisma.io
|
|
76812
|
+
* // Limited to the 10 users
|
|
76813
|
+
* const aggregations = await prisma.user.aggregate({
|
|
76814
|
+
* _avg: {
|
|
76815
|
+
* age: true,
|
|
76816
|
+
* },
|
|
76817
|
+
* where: {
|
|
76818
|
+
* email: {
|
|
76819
|
+
* contains: "prisma.io",
|
|
76820
|
+
* },
|
|
76821
|
+
* },
|
|
76822
|
+
* orderBy: {
|
|
76823
|
+
* age: "asc",
|
|
76824
|
+
* },
|
|
76825
|
+
* take: 10,
|
|
76826
|
+
* })
|
|
76827
|
+
**/
|
|
76828
|
+
aggregate<T extends ShareASaleEventAggregateArgs>(args: Subset<T, ShareASaleEventAggregateArgs>): Prisma.PrismaPromise<GetShareASaleEventAggregateType<T>>
|
|
76829
|
+
|
|
76830
|
+
/**
|
|
76831
|
+
* Group by ShareASaleEvent.
|
|
76832
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
76833
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
76834
|
+
* @param {ShareASaleEventGroupByArgs} args - Group by arguments.
|
|
76835
|
+
* @example
|
|
76836
|
+
* // Group by city, order by createdAt, get count
|
|
76837
|
+
* const result = await prisma.user.groupBy({
|
|
76838
|
+
* by: ['city', 'createdAt'],
|
|
76839
|
+
* orderBy: {
|
|
76840
|
+
* createdAt: true
|
|
76841
|
+
* },
|
|
76842
|
+
* _count: {
|
|
76843
|
+
* _all: true
|
|
76844
|
+
* },
|
|
76845
|
+
* })
|
|
76846
|
+
*
|
|
76847
|
+
**/
|
|
76848
|
+
groupBy<
|
|
76849
|
+
T extends ShareASaleEventGroupByArgs,
|
|
76850
|
+
HasSelectOrTake extends Or<
|
|
76851
|
+
Extends<'skip', Keys<T>>,
|
|
76852
|
+
Extends<'take', Keys<T>>
|
|
76853
|
+
>,
|
|
76854
|
+
OrderByArg extends True extends HasSelectOrTake
|
|
76855
|
+
? { orderBy: ShareASaleEventGroupByArgs['orderBy'] }
|
|
76856
|
+
: { orderBy?: ShareASaleEventGroupByArgs['orderBy'] },
|
|
76857
|
+
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
76858
|
+
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
76859
|
+
ByValid extends Has<ByFields, OrderFields>,
|
|
76860
|
+
HavingFields extends GetHavingFields<T['having']>,
|
|
76861
|
+
HavingValid extends Has<ByFields, HavingFields>,
|
|
76862
|
+
ByEmpty extends T['by'] extends never[] ? True : False,
|
|
76863
|
+
InputErrors extends ByEmpty extends True
|
|
76864
|
+
? `Error: "by" must not be empty.`
|
|
76865
|
+
: HavingValid extends False
|
|
76866
|
+
? {
|
|
76867
|
+
[P in HavingFields]: P extends ByFields
|
|
76868
|
+
? never
|
|
76869
|
+
: P extends string
|
|
76870
|
+
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
|
76871
|
+
: [
|
|
76872
|
+
Error,
|
|
76873
|
+
'Field ',
|
|
76874
|
+
P,
|
|
76875
|
+
` in "having" needs to be provided in "by"`,
|
|
76876
|
+
]
|
|
76877
|
+
}[HavingFields]
|
|
76878
|
+
: 'take' extends Keys<T>
|
|
76879
|
+
? 'orderBy' extends Keys<T>
|
|
76880
|
+
? ByValid extends True
|
|
76881
|
+
? {}
|
|
76882
|
+
: {
|
|
76883
|
+
[P in OrderFields]: P extends ByFields
|
|
76884
|
+
? never
|
|
76885
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
76886
|
+
}[OrderFields]
|
|
76887
|
+
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
|
76888
|
+
: 'skip' extends Keys<T>
|
|
76889
|
+
? 'orderBy' extends Keys<T>
|
|
76890
|
+
? ByValid extends True
|
|
76891
|
+
? {}
|
|
76892
|
+
: {
|
|
76893
|
+
[P in OrderFields]: P extends ByFields
|
|
76894
|
+
? never
|
|
76895
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
76896
|
+
}[OrderFields]
|
|
76897
|
+
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
|
76898
|
+
: ByValid extends True
|
|
76899
|
+
? {}
|
|
76900
|
+
: {
|
|
76901
|
+
[P in OrderFields]: P extends ByFields
|
|
76902
|
+
? never
|
|
76903
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
76904
|
+
}[OrderFields]
|
|
76905
|
+
>(args: SubsetIntersection<T, ShareASaleEventGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetShareASaleEventGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
76906
|
+
/**
|
|
76907
|
+
* Fields of the ShareASaleEvent model
|
|
76908
|
+
*/
|
|
76909
|
+
readonly fields: ShareASaleEventFieldRefs;
|
|
76910
|
+
}
|
|
76911
|
+
|
|
76912
|
+
/**
|
|
76913
|
+
* The delegate class that acts as a "Promise-like" for ShareASaleEvent.
|
|
76914
|
+
* Why is this prefixed with `Prisma__`?
|
|
76915
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
76916
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
76917
|
+
*/
|
|
76918
|
+
export interface Prisma__ShareASaleEventClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
76919
|
+
readonly [Symbol.toStringTag]: 'PrismaPromise';
|
|
76920
|
+
|
|
76921
|
+
optIn<T extends ShareASaleEvent$optInArgs<ExtArgs> = {}>(args?: Subset<T, ShareASaleEvent$optInArgs<ExtArgs>>): Prisma__OptInClient<$Result.GetResult<Prisma.$OptInPayload<ExtArgs>, T, 'findUniqueOrThrow'> | null, null, ExtArgs>;
|
|
76922
|
+
|
|
76923
|
+
/**
|
|
76924
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
76925
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
76926
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
76927
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
76928
|
+
*/
|
|
76929
|
+
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>;
|
|
76930
|
+
/**
|
|
76931
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
76932
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
76933
|
+
* @returns A Promise for the completion of the callback.
|
|
76934
|
+
*/
|
|
76935
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>;
|
|
76936
|
+
/**
|
|
76937
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
76938
|
+
* resolved value cannot be modified from the callback.
|
|
76939
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
76940
|
+
* @returns A Promise for the completion of the callback.
|
|
76941
|
+
*/
|
|
76942
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>;
|
|
76943
|
+
}
|
|
76944
|
+
|
|
76945
|
+
|
|
76946
|
+
|
|
76947
|
+
/**
|
|
76948
|
+
* Fields of the ShareASaleEvent model
|
|
75759
76949
|
*/
|
|
75760
|
-
interface
|
|
75761
|
-
readonly id: FieldRef<"
|
|
75762
|
-
readonly
|
|
75763
|
-
readonly
|
|
75764
|
-
readonly
|
|
75765
|
-
readonly
|
|
75766
|
-
readonly
|
|
75767
|
-
readonly userId: FieldRef<"ImpactRadiusEvent", 'Int'>
|
|
75768
|
-
readonly brandId: FieldRef<"ImpactRadiusEvent", 'Int'>
|
|
75769
|
-
readonly optInId: FieldRef<"ImpactRadiusEvent", 'Int'>
|
|
76950
|
+
interface ShareASaleEventFieldRefs {
|
|
76951
|
+
readonly id: FieldRef<"ShareASaleEvent", 'Int'>
|
|
76952
|
+
readonly created: FieldRef<"ShareASaleEvent", 'DateTime'>
|
|
76953
|
+
readonly saleAmount: FieldRef<"ShareASaleEvent", 'Float'>
|
|
76954
|
+
readonly commission: FieldRef<"ShareASaleEvent", 'Float'>
|
|
76955
|
+
readonly metaData: FieldRef<"ShareASaleEvent", 'Json'>
|
|
76956
|
+
readonly optInId: FieldRef<"ShareASaleEvent", 'Int'>
|
|
75770
76957
|
}
|
|
75771
76958
|
|
|
75772
76959
|
|
|
75773
76960
|
// Custom InputTypes
|
|
75774
76961
|
/**
|
|
75775
|
-
*
|
|
76962
|
+
* ShareASaleEvent findUnique
|
|
75776
76963
|
*/
|
|
75777
|
-
export type
|
|
76964
|
+
export type ShareASaleEventFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
75778
76965
|
/**
|
|
75779
|
-
* Select specific fields to fetch from the
|
|
76966
|
+
* Select specific fields to fetch from the ShareASaleEvent
|
|
75780
76967
|
*/
|
|
75781
|
-
select?:
|
|
76968
|
+
select?: ShareASaleEventSelect<ExtArgs> | null
|
|
75782
76969
|
/**
|
|
75783
76970
|
* Choose, which related nodes to fetch as well
|
|
75784
76971
|
*/
|
|
75785
|
-
include?:
|
|
76972
|
+
include?: ShareASaleEventInclude<ExtArgs> | null
|
|
75786
76973
|
/**
|
|
75787
|
-
* Filter, which
|
|
76974
|
+
* Filter, which ShareASaleEvent to fetch.
|
|
75788
76975
|
*/
|
|
75789
|
-
where:
|
|
76976
|
+
where: ShareASaleEventWhereUniqueInput
|
|
75790
76977
|
}
|
|
75791
76978
|
|
|
75792
76979
|
/**
|
|
75793
|
-
*
|
|
76980
|
+
* ShareASaleEvent findUniqueOrThrow
|
|
75794
76981
|
*/
|
|
75795
|
-
export type
|
|
76982
|
+
export type ShareASaleEventFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
75796
76983
|
/**
|
|
75797
|
-
* Select specific fields to fetch from the
|
|
76984
|
+
* Select specific fields to fetch from the ShareASaleEvent
|
|
75798
76985
|
*/
|
|
75799
|
-
select?:
|
|
76986
|
+
select?: ShareASaleEventSelect<ExtArgs> | null
|
|
75800
76987
|
/**
|
|
75801
76988
|
* Choose, which related nodes to fetch as well
|
|
75802
76989
|
*/
|
|
75803
|
-
include?:
|
|
76990
|
+
include?: ShareASaleEventInclude<ExtArgs> | null
|
|
75804
76991
|
/**
|
|
75805
|
-
* Filter, which
|
|
76992
|
+
* Filter, which ShareASaleEvent to fetch.
|
|
75806
76993
|
*/
|
|
75807
|
-
where:
|
|
76994
|
+
where: ShareASaleEventWhereUniqueInput
|
|
75808
76995
|
}
|
|
75809
76996
|
|
|
75810
76997
|
/**
|
|
75811
|
-
*
|
|
76998
|
+
* ShareASaleEvent findFirst
|
|
75812
76999
|
*/
|
|
75813
|
-
export type
|
|
77000
|
+
export type ShareASaleEventFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
75814
77001
|
/**
|
|
75815
|
-
* Select specific fields to fetch from the
|
|
77002
|
+
* Select specific fields to fetch from the ShareASaleEvent
|
|
75816
77003
|
*/
|
|
75817
|
-
select?:
|
|
77004
|
+
select?: ShareASaleEventSelect<ExtArgs> | null
|
|
75818
77005
|
/**
|
|
75819
77006
|
* Choose, which related nodes to fetch as well
|
|
75820
77007
|
*/
|
|
75821
|
-
include?:
|
|
77008
|
+
include?: ShareASaleEventInclude<ExtArgs> | null
|
|
75822
77009
|
/**
|
|
75823
|
-
* Filter, which
|
|
77010
|
+
* Filter, which ShareASaleEvent to fetch.
|
|
75824
77011
|
*/
|
|
75825
|
-
where?:
|
|
77012
|
+
where?: ShareASaleEventWhereInput
|
|
75826
77013
|
/**
|
|
75827
77014
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
75828
77015
|
*
|
|
75829
|
-
* Determine the order of
|
|
77016
|
+
* Determine the order of ShareASaleEvents to fetch.
|
|
75830
77017
|
*/
|
|
75831
|
-
orderBy?:
|
|
77018
|
+
orderBy?: ShareASaleEventOrderByWithRelationAndSearchRelevanceInput | ShareASaleEventOrderByWithRelationAndSearchRelevanceInput[]
|
|
75832
77019
|
/**
|
|
75833
77020
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
75834
77021
|
*
|
|
75835
|
-
* Sets the position for searching for
|
|
77022
|
+
* Sets the position for searching for ShareASaleEvents.
|
|
75836
77023
|
*/
|
|
75837
|
-
cursor?:
|
|
77024
|
+
cursor?: ShareASaleEventWhereUniqueInput
|
|
75838
77025
|
/**
|
|
75839
77026
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
75840
77027
|
*
|
|
75841
|
-
* Take `±n`
|
|
77028
|
+
* Take `±n` ShareASaleEvents from the position of the cursor.
|
|
75842
77029
|
*/
|
|
75843
77030
|
take?: number
|
|
75844
77031
|
/**
|
|
75845
77032
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
75846
77033
|
*
|
|
75847
|
-
* Skip the first `n`
|
|
77034
|
+
* Skip the first `n` ShareASaleEvents.
|
|
75848
77035
|
*/
|
|
75849
77036
|
skip?: number
|
|
75850
77037
|
/**
|
|
75851
77038
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
75852
77039
|
*
|
|
75853
|
-
* Filter by unique combinations of
|
|
77040
|
+
* Filter by unique combinations of ShareASaleEvents.
|
|
75854
77041
|
*/
|
|
75855
|
-
distinct?:
|
|
77042
|
+
distinct?: ShareASaleEventScalarFieldEnum | ShareASaleEventScalarFieldEnum[]
|
|
75856
77043
|
}
|
|
75857
77044
|
|
|
75858
77045
|
/**
|
|
75859
|
-
*
|
|
77046
|
+
* ShareASaleEvent findFirstOrThrow
|
|
75860
77047
|
*/
|
|
75861
|
-
export type
|
|
77048
|
+
export type ShareASaleEventFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
75862
77049
|
/**
|
|
75863
|
-
* Select specific fields to fetch from the
|
|
77050
|
+
* Select specific fields to fetch from the ShareASaleEvent
|
|
75864
77051
|
*/
|
|
75865
|
-
select?:
|
|
77052
|
+
select?: ShareASaleEventSelect<ExtArgs> | null
|
|
75866
77053
|
/**
|
|
75867
77054
|
* Choose, which related nodes to fetch as well
|
|
75868
77055
|
*/
|
|
75869
|
-
include?:
|
|
77056
|
+
include?: ShareASaleEventInclude<ExtArgs> | null
|
|
75870
77057
|
/**
|
|
75871
|
-
* Filter, which
|
|
77058
|
+
* Filter, which ShareASaleEvent to fetch.
|
|
75872
77059
|
*/
|
|
75873
|
-
where?:
|
|
77060
|
+
where?: ShareASaleEventWhereInput
|
|
75874
77061
|
/**
|
|
75875
77062
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
75876
77063
|
*
|
|
75877
|
-
* Determine the order of
|
|
77064
|
+
* Determine the order of ShareASaleEvents to fetch.
|
|
75878
77065
|
*/
|
|
75879
|
-
orderBy?:
|
|
77066
|
+
orderBy?: ShareASaleEventOrderByWithRelationAndSearchRelevanceInput | ShareASaleEventOrderByWithRelationAndSearchRelevanceInput[]
|
|
75880
77067
|
/**
|
|
75881
77068
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
75882
77069
|
*
|
|
75883
|
-
* Sets the position for searching for
|
|
77070
|
+
* Sets the position for searching for ShareASaleEvents.
|
|
75884
77071
|
*/
|
|
75885
|
-
cursor?:
|
|
77072
|
+
cursor?: ShareASaleEventWhereUniqueInput
|
|
75886
77073
|
/**
|
|
75887
77074
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
75888
77075
|
*
|
|
75889
|
-
* Take `±n`
|
|
77076
|
+
* Take `±n` ShareASaleEvents from the position of the cursor.
|
|
75890
77077
|
*/
|
|
75891
77078
|
take?: number
|
|
75892
77079
|
/**
|
|
75893
77080
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
75894
77081
|
*
|
|
75895
|
-
* Skip the first `n`
|
|
77082
|
+
* Skip the first `n` ShareASaleEvents.
|
|
75896
77083
|
*/
|
|
75897
77084
|
skip?: number
|
|
75898
77085
|
/**
|
|
75899
77086
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
75900
77087
|
*
|
|
75901
|
-
* Filter by unique combinations of
|
|
77088
|
+
* Filter by unique combinations of ShareASaleEvents.
|
|
75902
77089
|
*/
|
|
75903
|
-
distinct?:
|
|
77090
|
+
distinct?: ShareASaleEventScalarFieldEnum | ShareASaleEventScalarFieldEnum[]
|
|
75904
77091
|
}
|
|
75905
77092
|
|
|
75906
77093
|
/**
|
|
75907
|
-
*
|
|
77094
|
+
* ShareASaleEvent findMany
|
|
75908
77095
|
*/
|
|
75909
|
-
export type
|
|
77096
|
+
export type ShareASaleEventFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
75910
77097
|
/**
|
|
75911
|
-
* Select specific fields to fetch from the
|
|
77098
|
+
* Select specific fields to fetch from the ShareASaleEvent
|
|
75912
77099
|
*/
|
|
75913
|
-
select?:
|
|
77100
|
+
select?: ShareASaleEventSelect<ExtArgs> | null
|
|
75914
77101
|
/**
|
|
75915
77102
|
* Choose, which related nodes to fetch as well
|
|
75916
77103
|
*/
|
|
75917
|
-
include?:
|
|
77104
|
+
include?: ShareASaleEventInclude<ExtArgs> | null
|
|
75918
77105
|
/**
|
|
75919
|
-
* Filter, which
|
|
77106
|
+
* Filter, which ShareASaleEvents to fetch.
|
|
75920
77107
|
*/
|
|
75921
|
-
where?:
|
|
77108
|
+
where?: ShareASaleEventWhereInput
|
|
75922
77109
|
/**
|
|
75923
77110
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
75924
77111
|
*
|
|
75925
|
-
* Determine the order of
|
|
77112
|
+
* Determine the order of ShareASaleEvents to fetch.
|
|
75926
77113
|
*/
|
|
75927
|
-
orderBy?:
|
|
77114
|
+
orderBy?: ShareASaleEventOrderByWithRelationAndSearchRelevanceInput | ShareASaleEventOrderByWithRelationAndSearchRelevanceInput[]
|
|
75928
77115
|
/**
|
|
75929
77116
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
75930
77117
|
*
|
|
75931
|
-
* Sets the position for listing
|
|
77118
|
+
* Sets the position for listing ShareASaleEvents.
|
|
75932
77119
|
*/
|
|
75933
|
-
cursor?:
|
|
77120
|
+
cursor?: ShareASaleEventWhereUniqueInput
|
|
75934
77121
|
/**
|
|
75935
77122
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
75936
77123
|
*
|
|
75937
|
-
* Take `±n`
|
|
77124
|
+
* Take `±n` ShareASaleEvents from the position of the cursor.
|
|
75938
77125
|
*/
|
|
75939
77126
|
take?: number
|
|
75940
77127
|
/**
|
|
75941
77128
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
75942
77129
|
*
|
|
75943
|
-
* Skip the first `n`
|
|
77130
|
+
* Skip the first `n` ShareASaleEvents.
|
|
75944
77131
|
*/
|
|
75945
77132
|
skip?: number
|
|
75946
|
-
distinct?:
|
|
77133
|
+
distinct?: ShareASaleEventScalarFieldEnum | ShareASaleEventScalarFieldEnum[]
|
|
75947
77134
|
}
|
|
75948
77135
|
|
|
75949
77136
|
/**
|
|
75950
|
-
*
|
|
77137
|
+
* ShareASaleEvent create
|
|
75951
77138
|
*/
|
|
75952
|
-
export type
|
|
77139
|
+
export type ShareASaleEventCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
75953
77140
|
/**
|
|
75954
|
-
* Select specific fields to fetch from the
|
|
77141
|
+
* Select specific fields to fetch from the ShareASaleEvent
|
|
75955
77142
|
*/
|
|
75956
|
-
select?:
|
|
77143
|
+
select?: ShareASaleEventSelect<ExtArgs> | null
|
|
75957
77144
|
/**
|
|
75958
77145
|
* Choose, which related nodes to fetch as well
|
|
75959
77146
|
*/
|
|
75960
|
-
include?:
|
|
77147
|
+
include?: ShareASaleEventInclude<ExtArgs> | null
|
|
75961
77148
|
/**
|
|
75962
|
-
* The data needed to create a
|
|
77149
|
+
* The data needed to create a ShareASaleEvent.
|
|
75963
77150
|
*/
|
|
75964
|
-
data
|
|
77151
|
+
data?: XOR<ShareASaleEventCreateInput, ShareASaleEventUncheckedCreateInput>
|
|
75965
77152
|
}
|
|
75966
77153
|
|
|
75967
77154
|
/**
|
|
75968
|
-
*
|
|
77155
|
+
* ShareASaleEvent createMany
|
|
75969
77156
|
*/
|
|
75970
|
-
export type
|
|
77157
|
+
export type ShareASaleEventCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
75971
77158
|
/**
|
|
75972
|
-
* The data used to create many
|
|
77159
|
+
* The data used to create many ShareASaleEvents.
|
|
75973
77160
|
*/
|
|
75974
|
-
data:
|
|
77161
|
+
data: ShareASaleEventCreateManyInput | ShareASaleEventCreateManyInput[]
|
|
75975
77162
|
skipDuplicates?: boolean
|
|
75976
77163
|
}
|
|
75977
77164
|
|
|
75978
77165
|
/**
|
|
75979
|
-
*
|
|
77166
|
+
* ShareASaleEvent createManyAndReturn
|
|
75980
77167
|
*/
|
|
75981
|
-
export type
|
|
77168
|
+
export type ShareASaleEventCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
75982
77169
|
/**
|
|
75983
|
-
* Select specific fields to fetch from the
|
|
77170
|
+
* Select specific fields to fetch from the ShareASaleEvent
|
|
75984
77171
|
*/
|
|
75985
|
-
select?:
|
|
77172
|
+
select?: ShareASaleEventSelectCreateManyAndReturn<ExtArgs> | null
|
|
75986
77173
|
/**
|
|
75987
|
-
* The data used to create many
|
|
77174
|
+
* The data used to create many ShareASaleEvents.
|
|
75988
77175
|
*/
|
|
75989
|
-
data:
|
|
77176
|
+
data: ShareASaleEventCreateManyInput | ShareASaleEventCreateManyInput[]
|
|
75990
77177
|
skipDuplicates?: boolean
|
|
75991
77178
|
/**
|
|
75992
77179
|
* Choose, which related nodes to fetch as well
|
|
75993
77180
|
*/
|
|
75994
|
-
include?:
|
|
77181
|
+
include?: ShareASaleEventIncludeCreateManyAndReturn<ExtArgs> | null
|
|
75995
77182
|
}
|
|
75996
77183
|
|
|
75997
77184
|
/**
|
|
75998
|
-
*
|
|
77185
|
+
* ShareASaleEvent update
|
|
75999
77186
|
*/
|
|
76000
|
-
export type
|
|
77187
|
+
export type ShareASaleEventUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76001
77188
|
/**
|
|
76002
|
-
* Select specific fields to fetch from the
|
|
77189
|
+
* Select specific fields to fetch from the ShareASaleEvent
|
|
76003
77190
|
*/
|
|
76004
|
-
select?:
|
|
77191
|
+
select?: ShareASaleEventSelect<ExtArgs> | null
|
|
76005
77192
|
/**
|
|
76006
77193
|
* Choose, which related nodes to fetch as well
|
|
76007
77194
|
*/
|
|
76008
|
-
include?:
|
|
77195
|
+
include?: ShareASaleEventInclude<ExtArgs> | null
|
|
76009
77196
|
/**
|
|
76010
|
-
* The data needed to update a
|
|
77197
|
+
* The data needed to update a ShareASaleEvent.
|
|
76011
77198
|
*/
|
|
76012
|
-
data: XOR<
|
|
77199
|
+
data: XOR<ShareASaleEventUpdateInput, ShareASaleEventUncheckedUpdateInput>
|
|
76013
77200
|
/**
|
|
76014
|
-
* Choose, which
|
|
77201
|
+
* Choose, which ShareASaleEvent to update.
|
|
76015
77202
|
*/
|
|
76016
|
-
where:
|
|
77203
|
+
where: ShareASaleEventWhereUniqueInput
|
|
76017
77204
|
}
|
|
76018
77205
|
|
|
76019
77206
|
/**
|
|
76020
|
-
*
|
|
77207
|
+
* ShareASaleEvent updateMany
|
|
76021
77208
|
*/
|
|
76022
|
-
export type
|
|
77209
|
+
export type ShareASaleEventUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76023
77210
|
/**
|
|
76024
|
-
* The data used to update
|
|
77211
|
+
* The data used to update ShareASaleEvents.
|
|
76025
77212
|
*/
|
|
76026
|
-
data: XOR<
|
|
77213
|
+
data: XOR<ShareASaleEventUpdateManyMutationInput, ShareASaleEventUncheckedUpdateManyInput>
|
|
76027
77214
|
/**
|
|
76028
|
-
* Filter which
|
|
77215
|
+
* Filter which ShareASaleEvents to update
|
|
76029
77216
|
*/
|
|
76030
|
-
where?:
|
|
77217
|
+
where?: ShareASaleEventWhereInput
|
|
76031
77218
|
}
|
|
76032
77219
|
|
|
76033
77220
|
/**
|
|
76034
|
-
*
|
|
77221
|
+
* ShareASaleEvent upsert
|
|
76035
77222
|
*/
|
|
76036
|
-
export type
|
|
77223
|
+
export type ShareASaleEventUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76037
77224
|
/**
|
|
76038
|
-
* Select specific fields to fetch from the
|
|
77225
|
+
* Select specific fields to fetch from the ShareASaleEvent
|
|
76039
77226
|
*/
|
|
76040
|
-
select?:
|
|
77227
|
+
select?: ShareASaleEventSelect<ExtArgs> | null
|
|
76041
77228
|
/**
|
|
76042
77229
|
* Choose, which related nodes to fetch as well
|
|
76043
77230
|
*/
|
|
76044
|
-
include?:
|
|
77231
|
+
include?: ShareASaleEventInclude<ExtArgs> | null
|
|
76045
77232
|
/**
|
|
76046
|
-
* The filter to search for the
|
|
77233
|
+
* The filter to search for the ShareASaleEvent to update in case it exists.
|
|
76047
77234
|
*/
|
|
76048
|
-
where:
|
|
77235
|
+
where: ShareASaleEventWhereUniqueInput
|
|
76049
77236
|
/**
|
|
76050
|
-
* In case the
|
|
77237
|
+
* In case the ShareASaleEvent found by the `where` argument doesn't exist, create a new ShareASaleEvent with this data.
|
|
76051
77238
|
*/
|
|
76052
|
-
create: XOR<
|
|
77239
|
+
create: XOR<ShareASaleEventCreateInput, ShareASaleEventUncheckedCreateInput>
|
|
76053
77240
|
/**
|
|
76054
|
-
* In case the
|
|
77241
|
+
* In case the ShareASaleEvent was found with the provided `where` argument, update it with this data.
|
|
76055
77242
|
*/
|
|
76056
|
-
update: XOR<
|
|
77243
|
+
update: XOR<ShareASaleEventUpdateInput, ShareASaleEventUncheckedUpdateInput>
|
|
76057
77244
|
}
|
|
76058
77245
|
|
|
76059
77246
|
/**
|
|
76060
|
-
*
|
|
77247
|
+
* ShareASaleEvent delete
|
|
76061
77248
|
*/
|
|
76062
|
-
export type
|
|
77249
|
+
export type ShareASaleEventDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76063
77250
|
/**
|
|
76064
|
-
* Select specific fields to fetch from the
|
|
77251
|
+
* Select specific fields to fetch from the ShareASaleEvent
|
|
76065
77252
|
*/
|
|
76066
|
-
select?:
|
|
77253
|
+
select?: ShareASaleEventSelect<ExtArgs> | null
|
|
76067
77254
|
/**
|
|
76068
77255
|
* Choose, which related nodes to fetch as well
|
|
76069
77256
|
*/
|
|
76070
|
-
include?:
|
|
76071
|
-
/**
|
|
76072
|
-
* Filter which ImpactRadiusEvent to delete.
|
|
76073
|
-
*/
|
|
76074
|
-
where: ImpactRadiusEventWhereUniqueInput
|
|
76075
|
-
}
|
|
76076
|
-
|
|
76077
|
-
/**
|
|
76078
|
-
* ImpactRadiusEvent deleteMany
|
|
76079
|
-
*/
|
|
76080
|
-
export type ImpactRadiusEventDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
77257
|
+
include?: ShareASaleEventInclude<ExtArgs> | null
|
|
76081
77258
|
/**
|
|
76082
|
-
* Filter which
|
|
77259
|
+
* Filter which ShareASaleEvent to delete.
|
|
76083
77260
|
*/
|
|
76084
|
-
where
|
|
77261
|
+
where: ShareASaleEventWhereUniqueInput
|
|
76085
77262
|
}
|
|
76086
77263
|
|
|
76087
77264
|
/**
|
|
76088
|
-
*
|
|
77265
|
+
* ShareASaleEvent deleteMany
|
|
76089
77266
|
*/
|
|
76090
|
-
export type
|
|
76091
|
-
/**
|
|
76092
|
-
* Select specific fields to fetch from the Brand
|
|
76093
|
-
*/
|
|
76094
|
-
select?: BrandSelect<ExtArgs> | null
|
|
77267
|
+
export type ShareASaleEventDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76095
77268
|
/**
|
|
76096
|
-
*
|
|
77269
|
+
* Filter which ShareASaleEvents to delete
|
|
76097
77270
|
*/
|
|
76098
|
-
|
|
76099
|
-
where?: BrandWhereInput
|
|
77271
|
+
where?: ShareASaleEventWhereInput
|
|
76100
77272
|
}
|
|
76101
77273
|
|
|
76102
77274
|
/**
|
|
76103
|
-
*
|
|
77275
|
+
* ShareASaleEvent.optIn
|
|
76104
77276
|
*/
|
|
76105
|
-
export type
|
|
77277
|
+
export type ShareASaleEvent$optInArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76106
77278
|
/**
|
|
76107
77279
|
* Select specific fields to fetch from the OptIn
|
|
76108
77280
|
*/
|
|
@@ -76115,17 +77287,17 @@ export namespace Prisma {
|
|
|
76115
77287
|
}
|
|
76116
77288
|
|
|
76117
77289
|
/**
|
|
76118
|
-
*
|
|
77290
|
+
* ShareASaleEvent without action
|
|
76119
77291
|
*/
|
|
76120
|
-
export type
|
|
77292
|
+
export type ShareASaleEventDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
76121
77293
|
/**
|
|
76122
|
-
* Select specific fields to fetch from the
|
|
77294
|
+
* Select specific fields to fetch from the ShareASaleEvent
|
|
76123
77295
|
*/
|
|
76124
|
-
select?:
|
|
77296
|
+
select?: ShareASaleEventSelect<ExtArgs> | null
|
|
76125
77297
|
/**
|
|
76126
77298
|
* Choose, which related nodes to fetch as well
|
|
76127
77299
|
*/
|
|
76128
|
-
include?:
|
|
77300
|
+
include?: ShareASaleEventInclude<ExtArgs> | null
|
|
76129
77301
|
}
|
|
76130
77302
|
|
|
76131
77303
|
|
|
@@ -86539,7 +87711,9 @@ export namespace Prisma {
|
|
|
86539
87711
|
closedReason: 'closedReason',
|
|
86540
87712
|
usercomLastSynced: 'usercomLastSynced',
|
|
86541
87713
|
extraData: 'extraData',
|
|
86542
|
-
referrerId: 'referrerId'
|
|
87714
|
+
referrerId: 'referrerId',
|
|
87715
|
+
fullName: 'fullName',
|
|
87716
|
+
phoneNormalised: 'phoneNormalised'
|
|
86543
87717
|
};
|
|
86544
87718
|
|
|
86545
87719
|
export type UserScalarFieldEnum = (typeof UserScalarFieldEnum)[keyof typeof UserScalarFieldEnum]
|
|
@@ -87464,6 +88638,18 @@ export namespace Prisma {
|
|
|
87464
88638
|
export type ImpactRadiusEventScalarFieldEnum = (typeof ImpactRadiusEventScalarFieldEnum)[keyof typeof ImpactRadiusEventScalarFieldEnum]
|
|
87465
88639
|
|
|
87466
88640
|
|
|
88641
|
+
export const ShareASaleEventScalarFieldEnum: {
|
|
88642
|
+
id: 'id',
|
|
88643
|
+
created: 'created',
|
|
88644
|
+
saleAmount: 'saleAmount',
|
|
88645
|
+
commission: 'commission',
|
|
88646
|
+
metaData: 'metaData',
|
|
88647
|
+
optInId: 'optInId'
|
|
88648
|
+
};
|
|
88649
|
+
|
|
88650
|
+
export type ShareASaleEventScalarFieldEnum = (typeof ShareASaleEventScalarFieldEnum)[keyof typeof ShareASaleEventScalarFieldEnum]
|
|
88651
|
+
|
|
88652
|
+
|
|
87467
88653
|
export const CreatorSearchFilterScalarFieldEnum: {
|
|
87468
88654
|
id: 'id',
|
|
87469
88655
|
brandId: 'brandId',
|
|
@@ -87642,7 +88828,9 @@ export namespace Prisma {
|
|
|
87642
88828
|
profilePicUrl: 'profilePicUrl',
|
|
87643
88829
|
forgotPasswordKey: 'forgotPasswordKey',
|
|
87644
88830
|
affiliateSlug: 'affiliateSlug',
|
|
87645
|
-
closedReason: 'closedReason'
|
|
88831
|
+
closedReason: 'closedReason',
|
|
88832
|
+
fullName: 'fullName',
|
|
88833
|
+
phoneNormalised: 'phoneNormalised'
|
|
87646
88834
|
};
|
|
87647
88835
|
|
|
87648
88836
|
export type UserOrderByRelevanceFieldEnum = (typeof UserOrderByRelevanceFieldEnum)[keyof typeof UserOrderByRelevanceFieldEnum]
|
|
@@ -88280,6 +89468,8 @@ export namespace Prisma {
|
|
|
88280
89468
|
usercomLastSynced?: DateTimeNullableFilter<"User"> | Date | string | null
|
|
88281
89469
|
extraData?: JsonFilter<"User">
|
|
88282
89470
|
referrerId?: IntNullableFilter<"User"> | number | null
|
|
89471
|
+
fullName?: StringNullableFilter<"User"> | string | null
|
|
89472
|
+
phoneNormalised?: StringNullableFilter<"User"> | string | null
|
|
88283
89473
|
referrer?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
88284
89474
|
referredUsers?: UserListRelationFilter
|
|
88285
89475
|
logs?: LogListRelationFilter
|
|
@@ -88323,6 +89513,8 @@ export namespace Prisma {
|
|
|
88323
89513
|
usercomLastSynced?: SortOrderInput | SortOrder
|
|
88324
89514
|
extraData?: SortOrder
|
|
88325
89515
|
referrerId?: SortOrderInput | SortOrder
|
|
89516
|
+
fullName?: SortOrderInput | SortOrder
|
|
89517
|
+
phoneNormalised?: SortOrderInput | SortOrder
|
|
88326
89518
|
referrer?: UserOrderByWithRelationAndSearchRelevanceInput
|
|
88327
89519
|
referredUsers?: UserOrderByRelationAggregateInput
|
|
88328
89520
|
logs?: LogOrderByRelationAggregateInput
|
|
@@ -88370,6 +89562,8 @@ export namespace Prisma {
|
|
|
88370
89562
|
usercomLastSynced?: DateTimeNullableFilter<"User"> | Date | string | null
|
|
88371
89563
|
extraData?: JsonFilter<"User">
|
|
88372
89564
|
referrerId?: IntNullableFilter<"User"> | number | null
|
|
89565
|
+
fullName?: StringNullableFilter<"User"> | string | null
|
|
89566
|
+
phoneNormalised?: StringNullableFilter<"User"> | string | null
|
|
88373
89567
|
referrer?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
88374
89568
|
referredUsers?: UserListRelationFilter
|
|
88375
89569
|
logs?: LogListRelationFilter
|
|
@@ -88413,6 +89607,8 @@ export namespace Prisma {
|
|
|
88413
89607
|
usercomLastSynced?: SortOrderInput | SortOrder
|
|
88414
89608
|
extraData?: SortOrder
|
|
88415
89609
|
referrerId?: SortOrderInput | SortOrder
|
|
89610
|
+
fullName?: SortOrderInput | SortOrder
|
|
89611
|
+
phoneNormalised?: SortOrderInput | SortOrder
|
|
88416
89612
|
_count?: UserCountOrderByAggregateInput
|
|
88417
89613
|
_avg?: UserAvgOrderByAggregateInput
|
|
88418
89614
|
_max?: UserMaxOrderByAggregateInput
|
|
@@ -88443,6 +89639,8 @@ export namespace Prisma {
|
|
|
88443
89639
|
usercomLastSynced?: DateTimeNullableWithAggregatesFilter<"User"> | Date | string | null
|
|
88444
89640
|
extraData?: JsonWithAggregatesFilter<"User">
|
|
88445
89641
|
referrerId?: IntNullableWithAggregatesFilter<"User"> | number | null
|
|
89642
|
+
fullName?: StringNullableWithAggregatesFilter<"User"> | string | null
|
|
89643
|
+
phoneNormalised?: StringNullableWithAggregatesFilter<"User"> | string | null
|
|
88446
89644
|
}
|
|
88447
89645
|
|
|
88448
89646
|
export type LogWhereInput = {
|
|
@@ -91298,6 +92496,7 @@ export namespace Prisma {
|
|
|
91298
92496
|
productListItems?: OptinToProductListItemListRelationFilter
|
|
91299
92497
|
ExternalAffiliateClick?: ExternalAffiliateClickListRelationFilter
|
|
91300
92498
|
ImpactRadiusEvent?: ImpactRadiusEventListRelationFilter
|
|
92499
|
+
ShareASaleEvents?: ShareASaleEventListRelationFilter
|
|
91301
92500
|
}
|
|
91302
92501
|
|
|
91303
92502
|
export type OptInOrderByWithRelationAndSearchRelevanceInput = {
|
|
@@ -91331,6 +92530,7 @@ export namespace Prisma {
|
|
|
91331
92530
|
productListItems?: OptinToProductListItemOrderByRelationAggregateInput
|
|
91332
92531
|
ExternalAffiliateClick?: ExternalAffiliateClickOrderByRelationAggregateInput
|
|
91333
92532
|
ImpactRadiusEvent?: ImpactRadiusEventOrderByRelationAggregateInput
|
|
92533
|
+
ShareASaleEvents?: ShareASaleEventOrderByRelationAggregateInput
|
|
91334
92534
|
_relevance?: OptInOrderByRelevanceInput
|
|
91335
92535
|
}
|
|
91336
92536
|
|
|
@@ -91368,6 +92568,7 @@ export namespace Prisma {
|
|
|
91368
92568
|
productListItems?: OptinToProductListItemListRelationFilter
|
|
91369
92569
|
ExternalAffiliateClick?: ExternalAffiliateClickListRelationFilter
|
|
91370
92570
|
ImpactRadiusEvent?: ImpactRadiusEventListRelationFilter
|
|
92571
|
+
ShareASaleEvents?: ShareASaleEventListRelationFilter
|
|
91371
92572
|
}, "id">
|
|
91372
92573
|
|
|
91373
92574
|
export type OptInOrderByWithAggregationInput = {
|
|
@@ -93559,6 +94760,68 @@ export namespace Prisma {
|
|
|
93559
94760
|
optInId?: IntNullableWithAggregatesFilter<"ImpactRadiusEvent"> | number | null
|
|
93560
94761
|
}
|
|
93561
94762
|
|
|
94763
|
+
export type ShareASaleEventWhereInput = {
|
|
94764
|
+
AND?: ShareASaleEventWhereInput | ShareASaleEventWhereInput[]
|
|
94765
|
+
OR?: ShareASaleEventWhereInput[]
|
|
94766
|
+
NOT?: ShareASaleEventWhereInput | ShareASaleEventWhereInput[]
|
|
94767
|
+
id?: IntFilter<"ShareASaleEvent"> | number
|
|
94768
|
+
created?: DateTimeFilter<"ShareASaleEvent"> | Date | string
|
|
94769
|
+
saleAmount?: FloatNullableFilter<"ShareASaleEvent"> | number | null
|
|
94770
|
+
commission?: FloatNullableFilter<"ShareASaleEvent"> | number | null
|
|
94771
|
+
metaData?: JsonFilter<"ShareASaleEvent">
|
|
94772
|
+
optInId?: IntNullableFilter<"ShareASaleEvent"> | number | null
|
|
94773
|
+
optIn?: XOR<OptInNullableRelationFilter, OptInWhereInput> | null
|
|
94774
|
+
}
|
|
94775
|
+
|
|
94776
|
+
export type ShareASaleEventOrderByWithRelationAndSearchRelevanceInput = {
|
|
94777
|
+
id?: SortOrder
|
|
94778
|
+
created?: SortOrder
|
|
94779
|
+
saleAmount?: SortOrderInput | SortOrder
|
|
94780
|
+
commission?: SortOrderInput | SortOrder
|
|
94781
|
+
metaData?: SortOrder
|
|
94782
|
+
optInId?: SortOrderInput | SortOrder
|
|
94783
|
+
optIn?: OptInOrderByWithRelationAndSearchRelevanceInput
|
|
94784
|
+
}
|
|
94785
|
+
|
|
94786
|
+
export type ShareASaleEventWhereUniqueInput = Prisma.AtLeast<{
|
|
94787
|
+
id?: number
|
|
94788
|
+
AND?: ShareASaleEventWhereInput | ShareASaleEventWhereInput[]
|
|
94789
|
+
OR?: ShareASaleEventWhereInput[]
|
|
94790
|
+
NOT?: ShareASaleEventWhereInput | ShareASaleEventWhereInput[]
|
|
94791
|
+
created?: DateTimeFilter<"ShareASaleEvent"> | Date | string
|
|
94792
|
+
saleAmount?: FloatNullableFilter<"ShareASaleEvent"> | number | null
|
|
94793
|
+
commission?: FloatNullableFilter<"ShareASaleEvent"> | number | null
|
|
94794
|
+
metaData?: JsonFilter<"ShareASaleEvent">
|
|
94795
|
+
optInId?: IntNullableFilter<"ShareASaleEvent"> | number | null
|
|
94796
|
+
optIn?: XOR<OptInNullableRelationFilter, OptInWhereInput> | null
|
|
94797
|
+
}, "id">
|
|
94798
|
+
|
|
94799
|
+
export type ShareASaleEventOrderByWithAggregationInput = {
|
|
94800
|
+
id?: SortOrder
|
|
94801
|
+
created?: SortOrder
|
|
94802
|
+
saleAmount?: SortOrderInput | SortOrder
|
|
94803
|
+
commission?: SortOrderInput | SortOrder
|
|
94804
|
+
metaData?: SortOrder
|
|
94805
|
+
optInId?: SortOrderInput | SortOrder
|
|
94806
|
+
_count?: ShareASaleEventCountOrderByAggregateInput
|
|
94807
|
+
_avg?: ShareASaleEventAvgOrderByAggregateInput
|
|
94808
|
+
_max?: ShareASaleEventMaxOrderByAggregateInput
|
|
94809
|
+
_min?: ShareASaleEventMinOrderByAggregateInput
|
|
94810
|
+
_sum?: ShareASaleEventSumOrderByAggregateInput
|
|
94811
|
+
}
|
|
94812
|
+
|
|
94813
|
+
export type ShareASaleEventScalarWhereWithAggregatesInput = {
|
|
94814
|
+
AND?: ShareASaleEventScalarWhereWithAggregatesInput | ShareASaleEventScalarWhereWithAggregatesInput[]
|
|
94815
|
+
OR?: ShareASaleEventScalarWhereWithAggregatesInput[]
|
|
94816
|
+
NOT?: ShareASaleEventScalarWhereWithAggregatesInput | ShareASaleEventScalarWhereWithAggregatesInput[]
|
|
94817
|
+
id?: IntWithAggregatesFilter<"ShareASaleEvent"> | number
|
|
94818
|
+
created?: DateTimeWithAggregatesFilter<"ShareASaleEvent"> | Date | string
|
|
94819
|
+
saleAmount?: FloatNullableWithAggregatesFilter<"ShareASaleEvent"> | number | null
|
|
94820
|
+
commission?: FloatNullableWithAggregatesFilter<"ShareASaleEvent"> | number | null
|
|
94821
|
+
metaData?: JsonWithAggregatesFilter<"ShareASaleEvent">
|
|
94822
|
+
optInId?: IntNullableWithAggregatesFilter<"ShareASaleEvent"> | number | null
|
|
94823
|
+
}
|
|
94824
|
+
|
|
93562
94825
|
export type CreatorSearchFilterWhereInput = {
|
|
93563
94826
|
AND?: CreatorSearchFilterWhereInput | CreatorSearchFilterWhereInput[]
|
|
93564
94827
|
OR?: CreatorSearchFilterWhereInput[]
|
|
@@ -94248,6 +95511,8 @@ export namespace Prisma {
|
|
|
94248
95511
|
closedReason?: string | null
|
|
94249
95512
|
usercomLastSynced?: Date | string | null
|
|
94250
95513
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
95514
|
+
fullName?: string | null
|
|
95515
|
+
phoneNormalised?: string | null
|
|
94251
95516
|
referrer?: UserCreateNestedOneWithoutReferredUsersInput
|
|
94252
95517
|
referredUsers?: UserCreateNestedManyWithoutReferrerInput
|
|
94253
95518
|
logs?: LogCreateNestedManyWithoutUserInput
|
|
@@ -94291,6 +95556,8 @@ export namespace Prisma {
|
|
|
94291
95556
|
usercomLastSynced?: Date | string | null
|
|
94292
95557
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
94293
95558
|
referrerId?: number | null
|
|
95559
|
+
fullName?: string | null
|
|
95560
|
+
phoneNormalised?: string | null
|
|
94294
95561
|
referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
|
|
94295
95562
|
logs?: LogUncheckedCreateNestedManyWithoutUserInput
|
|
94296
95563
|
creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -94331,6 +95598,8 @@ export namespace Prisma {
|
|
|
94331
95598
|
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94332
95599
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94333
95600
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
95601
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95602
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94334
95603
|
referrer?: UserUpdateOneWithoutReferredUsersNestedInput
|
|
94335
95604
|
referredUsers?: UserUpdateManyWithoutReferrerNestedInput
|
|
94336
95605
|
logs?: LogUpdateManyWithoutUserNestedInput
|
|
@@ -94374,6 +95643,8 @@ export namespace Prisma {
|
|
|
94374
95643
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94375
95644
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
94376
95645
|
referrerId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
95646
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95647
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94377
95648
|
referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
|
|
94378
95649
|
logs?: LogUncheckedUpdateManyWithoutUserNestedInput
|
|
94379
95650
|
creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -94416,6 +95687,8 @@ export namespace Prisma {
|
|
|
94416
95687
|
usercomLastSynced?: Date | string | null
|
|
94417
95688
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
94418
95689
|
referrerId?: number | null
|
|
95690
|
+
fullName?: string | null
|
|
95691
|
+
phoneNormalised?: string | null
|
|
94419
95692
|
}
|
|
94420
95693
|
|
|
94421
95694
|
export type UserUpdateManyMutationInput = {
|
|
@@ -94436,6 +95709,8 @@ export namespace Prisma {
|
|
|
94436
95709
|
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94437
95710
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94438
95711
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
95712
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95713
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94439
95714
|
}
|
|
94440
95715
|
|
|
94441
95716
|
export type UserUncheckedUpdateManyInput = {
|
|
@@ -94458,6 +95733,8 @@ export namespace Prisma {
|
|
|
94458
95733
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94459
95734
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
94460
95735
|
referrerId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
95736
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95737
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94461
95738
|
}
|
|
94462
95739
|
|
|
94463
95740
|
export type LogCreateInput = {
|
|
@@ -97409,6 +98686,7 @@ export namespace Prisma {
|
|
|
97409
98686
|
productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
|
|
97410
98687
|
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
|
|
97411
98688
|
ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
|
|
98689
|
+
ShareASaleEvents?: ShareASaleEventCreateNestedManyWithoutOptInInput
|
|
97412
98690
|
}
|
|
97413
98691
|
|
|
97414
98692
|
export type OptInUncheckedCreateInput = {
|
|
@@ -97439,6 +98717,7 @@ export namespace Prisma {
|
|
|
97439
98717
|
productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
|
|
97440
98718
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
97441
98719
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
|
|
98720
|
+
ShareASaleEvents?: ShareASaleEventUncheckedCreateNestedManyWithoutOptInInput
|
|
97442
98721
|
}
|
|
97443
98722
|
|
|
97444
98723
|
export type OptInUpdateInput = {
|
|
@@ -97468,6 +98747,7 @@ export namespace Prisma {
|
|
|
97468
98747
|
productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
|
|
97469
98748
|
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
|
|
97470
98749
|
ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
|
|
98750
|
+
ShareASaleEvents?: ShareASaleEventUpdateManyWithoutOptInNestedInput
|
|
97471
98751
|
}
|
|
97472
98752
|
|
|
97473
98753
|
export type OptInUncheckedUpdateInput = {
|
|
@@ -97498,6 +98778,7 @@ export namespace Prisma {
|
|
|
97498
98778
|
productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
|
|
97499
98779
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
97500
98780
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
98781
|
+
ShareASaleEvents?: ShareASaleEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
97501
98782
|
}
|
|
97502
98783
|
|
|
97503
98784
|
export type OptInCreateManyInput = {
|
|
@@ -99723,6 +101004,65 @@ export namespace Prisma {
|
|
|
99723
101004
|
optInId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
99724
101005
|
}
|
|
99725
101006
|
|
|
101007
|
+
export type ShareASaleEventCreateInput = {
|
|
101008
|
+
created?: Date | string
|
|
101009
|
+
saleAmount?: number | null
|
|
101010
|
+
commission?: number | null
|
|
101011
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
101012
|
+
optIn?: OptInCreateNestedOneWithoutShareASaleEventsInput
|
|
101013
|
+
}
|
|
101014
|
+
|
|
101015
|
+
export type ShareASaleEventUncheckedCreateInput = {
|
|
101016
|
+
id?: number
|
|
101017
|
+
created?: Date | string
|
|
101018
|
+
saleAmount?: number | null
|
|
101019
|
+
commission?: number | null
|
|
101020
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
101021
|
+
optInId?: number | null
|
|
101022
|
+
}
|
|
101023
|
+
|
|
101024
|
+
export type ShareASaleEventUpdateInput = {
|
|
101025
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101026
|
+
saleAmount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
101027
|
+
commission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
101028
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
101029
|
+
optIn?: OptInUpdateOneWithoutShareASaleEventsNestedInput
|
|
101030
|
+
}
|
|
101031
|
+
|
|
101032
|
+
export type ShareASaleEventUncheckedUpdateInput = {
|
|
101033
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
101034
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101035
|
+
saleAmount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
101036
|
+
commission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
101037
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
101038
|
+
optInId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
101039
|
+
}
|
|
101040
|
+
|
|
101041
|
+
export type ShareASaleEventCreateManyInput = {
|
|
101042
|
+
id?: number
|
|
101043
|
+
created?: Date | string
|
|
101044
|
+
saleAmount?: number | null
|
|
101045
|
+
commission?: number | null
|
|
101046
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
101047
|
+
optInId?: number | null
|
|
101048
|
+
}
|
|
101049
|
+
|
|
101050
|
+
export type ShareASaleEventUpdateManyMutationInput = {
|
|
101051
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101052
|
+
saleAmount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
101053
|
+
commission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
101054
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
101055
|
+
}
|
|
101056
|
+
|
|
101057
|
+
export type ShareASaleEventUncheckedUpdateManyInput = {
|
|
101058
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
101059
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101060
|
+
saleAmount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
101061
|
+
commission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
101062
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
101063
|
+
optInId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
101064
|
+
}
|
|
101065
|
+
|
|
99726
101066
|
export type CreatorSearchFilterCreateInput = {
|
|
99727
101067
|
title: string
|
|
99728
101068
|
filters?: JsonNullValueInput | InputJsonValue
|
|
@@ -100636,6 +101976,8 @@ export namespace Prisma {
|
|
|
100636
101976
|
usercomLastSynced?: SortOrder
|
|
100637
101977
|
extraData?: SortOrder
|
|
100638
101978
|
referrerId?: SortOrder
|
|
101979
|
+
fullName?: SortOrder
|
|
101980
|
+
phoneNormalised?: SortOrder
|
|
100639
101981
|
}
|
|
100640
101982
|
|
|
100641
101983
|
export type UserAvgOrderByAggregateInput = {
|
|
@@ -100663,6 +102005,8 @@ export namespace Prisma {
|
|
|
100663
102005
|
closedReason?: SortOrder
|
|
100664
102006
|
usercomLastSynced?: SortOrder
|
|
100665
102007
|
referrerId?: SortOrder
|
|
102008
|
+
fullName?: SortOrder
|
|
102009
|
+
phoneNormalised?: SortOrder
|
|
100666
102010
|
}
|
|
100667
102011
|
|
|
100668
102012
|
export type UserMinOrderByAggregateInput = {
|
|
@@ -100684,6 +102028,8 @@ export namespace Prisma {
|
|
|
100684
102028
|
closedReason?: SortOrder
|
|
100685
102029
|
usercomLastSynced?: SortOrder
|
|
100686
102030
|
referrerId?: SortOrder
|
|
102031
|
+
fullName?: SortOrder
|
|
102032
|
+
phoneNormalised?: SortOrder
|
|
100687
102033
|
}
|
|
100688
102034
|
|
|
100689
102035
|
export type UserSumOrderByAggregateInput = {
|
|
@@ -103165,6 +104511,12 @@ export namespace Prisma {
|
|
|
103165
104511
|
none?: AffiliateClickWhereInput
|
|
103166
104512
|
}
|
|
103167
104513
|
|
|
104514
|
+
export type ShareASaleEventListRelationFilter = {
|
|
104515
|
+
every?: ShareASaleEventWhereInput
|
|
104516
|
+
some?: ShareASaleEventWhereInput
|
|
104517
|
+
none?: ShareASaleEventWhereInput
|
|
104518
|
+
}
|
|
104519
|
+
|
|
103168
104520
|
export type TrolleyPaymentOrderByRelationAggregateInput = {
|
|
103169
104521
|
_count?: SortOrder
|
|
103170
104522
|
}
|
|
@@ -103173,6 +104525,10 @@ export namespace Prisma {
|
|
|
103173
104525
|
_count?: SortOrder
|
|
103174
104526
|
}
|
|
103175
104527
|
|
|
104528
|
+
export type ShareASaleEventOrderByRelationAggregateInput = {
|
|
104529
|
+
_count?: SortOrder
|
|
104530
|
+
}
|
|
104531
|
+
|
|
103176
104532
|
export type OptInOrderByRelevanceInput = {
|
|
103177
104533
|
fields: OptInOrderByRelevanceFieldEnum | OptInOrderByRelevanceFieldEnum[]
|
|
103178
104534
|
sort: SortOrder
|
|
@@ -104852,6 +106208,45 @@ export namespace Prisma {
|
|
|
104852
106208
|
optInId?: SortOrder
|
|
104853
106209
|
}
|
|
104854
106210
|
|
|
106211
|
+
export type ShareASaleEventCountOrderByAggregateInput = {
|
|
106212
|
+
id?: SortOrder
|
|
106213
|
+
created?: SortOrder
|
|
106214
|
+
saleAmount?: SortOrder
|
|
106215
|
+
commission?: SortOrder
|
|
106216
|
+
metaData?: SortOrder
|
|
106217
|
+
optInId?: SortOrder
|
|
106218
|
+
}
|
|
106219
|
+
|
|
106220
|
+
export type ShareASaleEventAvgOrderByAggregateInput = {
|
|
106221
|
+
id?: SortOrder
|
|
106222
|
+
saleAmount?: SortOrder
|
|
106223
|
+
commission?: SortOrder
|
|
106224
|
+
optInId?: SortOrder
|
|
106225
|
+
}
|
|
106226
|
+
|
|
106227
|
+
export type ShareASaleEventMaxOrderByAggregateInput = {
|
|
106228
|
+
id?: SortOrder
|
|
106229
|
+
created?: SortOrder
|
|
106230
|
+
saleAmount?: SortOrder
|
|
106231
|
+
commission?: SortOrder
|
|
106232
|
+
optInId?: SortOrder
|
|
106233
|
+
}
|
|
106234
|
+
|
|
106235
|
+
export type ShareASaleEventMinOrderByAggregateInput = {
|
|
106236
|
+
id?: SortOrder
|
|
106237
|
+
created?: SortOrder
|
|
106238
|
+
saleAmount?: SortOrder
|
|
106239
|
+
commission?: SortOrder
|
|
106240
|
+
optInId?: SortOrder
|
|
106241
|
+
}
|
|
106242
|
+
|
|
106243
|
+
export type ShareASaleEventSumOrderByAggregateInput = {
|
|
106244
|
+
id?: SortOrder
|
|
106245
|
+
saleAmount?: SortOrder
|
|
106246
|
+
commission?: SortOrder
|
|
106247
|
+
optInId?: SortOrder
|
|
106248
|
+
}
|
|
106249
|
+
|
|
104855
106250
|
export type CreatorSearchFilterOrderByRelevanceInput = {
|
|
104856
106251
|
fields: CreatorSearchFilterOrderByRelevanceFieldEnum | CreatorSearchFilterOrderByRelevanceFieldEnum[]
|
|
104857
106252
|
sort: SortOrder
|
|
@@ -109328,6 +110723,13 @@ export namespace Prisma {
|
|
|
109328
110723
|
connect?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
109329
110724
|
}
|
|
109330
110725
|
|
|
110726
|
+
export type ShareASaleEventCreateNestedManyWithoutOptInInput = {
|
|
110727
|
+
create?: XOR<ShareASaleEventCreateWithoutOptInInput, ShareASaleEventUncheckedCreateWithoutOptInInput> | ShareASaleEventCreateWithoutOptInInput[] | ShareASaleEventUncheckedCreateWithoutOptInInput[]
|
|
110728
|
+
connectOrCreate?: ShareASaleEventCreateOrConnectWithoutOptInInput | ShareASaleEventCreateOrConnectWithoutOptInInput[]
|
|
110729
|
+
createMany?: ShareASaleEventCreateManyOptInInputEnvelope
|
|
110730
|
+
connect?: ShareASaleEventWhereUniqueInput | ShareASaleEventWhereUniqueInput[]
|
|
110731
|
+
}
|
|
110732
|
+
|
|
109331
110733
|
export type OptInVariableUncheckedCreateNestedManyWithoutOptInInput = {
|
|
109332
110734
|
create?: XOR<OptInVariableCreateWithoutOptInInput, OptInVariableUncheckedCreateWithoutOptInInput> | OptInVariableCreateWithoutOptInInput[] | OptInVariableUncheckedCreateWithoutOptInInput[]
|
|
109333
110735
|
connectOrCreate?: OptInVariableCreateOrConnectWithoutOptInInput | OptInVariableCreateOrConnectWithoutOptInInput[]
|
|
@@ -109390,6 +110792,13 @@ export namespace Prisma {
|
|
|
109390
110792
|
connect?: ImpactRadiusEventWhereUniqueInput | ImpactRadiusEventWhereUniqueInput[]
|
|
109391
110793
|
}
|
|
109392
110794
|
|
|
110795
|
+
export type ShareASaleEventUncheckedCreateNestedManyWithoutOptInInput = {
|
|
110796
|
+
create?: XOR<ShareASaleEventCreateWithoutOptInInput, ShareASaleEventUncheckedCreateWithoutOptInInput> | ShareASaleEventCreateWithoutOptInInput[] | ShareASaleEventUncheckedCreateWithoutOptInInput[]
|
|
110797
|
+
connectOrCreate?: ShareASaleEventCreateOrConnectWithoutOptInInput | ShareASaleEventCreateOrConnectWithoutOptInInput[]
|
|
110798
|
+
createMany?: ShareASaleEventCreateManyOptInInputEnvelope
|
|
110799
|
+
connect?: ShareASaleEventWhereUniqueInput | ShareASaleEventWhereUniqueInput[]
|
|
110800
|
+
}
|
|
110801
|
+
|
|
109393
110802
|
export type UserUpdateOneRequiredWithoutOptInsNestedInput = {
|
|
109394
110803
|
create?: XOR<UserCreateWithoutOptInsInput, UserUncheckedCreateWithoutOptInsInput>
|
|
109395
110804
|
connectOrCreate?: UserCreateOrConnectWithoutOptInsInput
|
|
@@ -109538,6 +110947,20 @@ export namespace Prisma {
|
|
|
109538
110947
|
deleteMany?: ImpactRadiusEventScalarWhereInput | ImpactRadiusEventScalarWhereInput[]
|
|
109539
110948
|
}
|
|
109540
110949
|
|
|
110950
|
+
export type ShareASaleEventUpdateManyWithoutOptInNestedInput = {
|
|
110951
|
+
create?: XOR<ShareASaleEventCreateWithoutOptInInput, ShareASaleEventUncheckedCreateWithoutOptInInput> | ShareASaleEventCreateWithoutOptInInput[] | ShareASaleEventUncheckedCreateWithoutOptInInput[]
|
|
110952
|
+
connectOrCreate?: ShareASaleEventCreateOrConnectWithoutOptInInput | ShareASaleEventCreateOrConnectWithoutOptInInput[]
|
|
110953
|
+
upsert?: ShareASaleEventUpsertWithWhereUniqueWithoutOptInInput | ShareASaleEventUpsertWithWhereUniqueWithoutOptInInput[]
|
|
110954
|
+
createMany?: ShareASaleEventCreateManyOptInInputEnvelope
|
|
110955
|
+
set?: ShareASaleEventWhereUniqueInput | ShareASaleEventWhereUniqueInput[]
|
|
110956
|
+
disconnect?: ShareASaleEventWhereUniqueInput | ShareASaleEventWhereUniqueInput[]
|
|
110957
|
+
delete?: ShareASaleEventWhereUniqueInput | ShareASaleEventWhereUniqueInput[]
|
|
110958
|
+
connect?: ShareASaleEventWhereUniqueInput | ShareASaleEventWhereUniqueInput[]
|
|
110959
|
+
update?: ShareASaleEventUpdateWithWhereUniqueWithoutOptInInput | ShareASaleEventUpdateWithWhereUniqueWithoutOptInInput[]
|
|
110960
|
+
updateMany?: ShareASaleEventUpdateManyWithWhereWithoutOptInInput | ShareASaleEventUpdateManyWithWhereWithoutOptInInput[]
|
|
110961
|
+
deleteMany?: ShareASaleEventScalarWhereInput | ShareASaleEventScalarWhereInput[]
|
|
110962
|
+
}
|
|
110963
|
+
|
|
109541
110964
|
export type OptInVariableUncheckedUpdateManyWithoutOptInNestedInput = {
|
|
109542
110965
|
create?: XOR<OptInVariableCreateWithoutOptInInput, OptInVariableUncheckedCreateWithoutOptInInput> | OptInVariableCreateWithoutOptInInput[] | OptInVariableUncheckedCreateWithoutOptInInput[]
|
|
109543
110966
|
connectOrCreate?: OptInVariableCreateOrConnectWithoutOptInInput | OptInVariableCreateOrConnectWithoutOptInInput[]
|
|
@@ -109660,6 +111083,20 @@ export namespace Prisma {
|
|
|
109660
111083
|
deleteMany?: ImpactRadiusEventScalarWhereInput | ImpactRadiusEventScalarWhereInput[]
|
|
109661
111084
|
}
|
|
109662
111085
|
|
|
111086
|
+
export type ShareASaleEventUncheckedUpdateManyWithoutOptInNestedInput = {
|
|
111087
|
+
create?: XOR<ShareASaleEventCreateWithoutOptInInput, ShareASaleEventUncheckedCreateWithoutOptInInput> | ShareASaleEventCreateWithoutOptInInput[] | ShareASaleEventUncheckedCreateWithoutOptInInput[]
|
|
111088
|
+
connectOrCreate?: ShareASaleEventCreateOrConnectWithoutOptInInput | ShareASaleEventCreateOrConnectWithoutOptInInput[]
|
|
111089
|
+
upsert?: ShareASaleEventUpsertWithWhereUniqueWithoutOptInInput | ShareASaleEventUpsertWithWhereUniqueWithoutOptInInput[]
|
|
111090
|
+
createMany?: ShareASaleEventCreateManyOptInInputEnvelope
|
|
111091
|
+
set?: ShareASaleEventWhereUniqueInput | ShareASaleEventWhereUniqueInput[]
|
|
111092
|
+
disconnect?: ShareASaleEventWhereUniqueInput | ShareASaleEventWhereUniqueInput[]
|
|
111093
|
+
delete?: ShareASaleEventWhereUniqueInput | ShareASaleEventWhereUniqueInput[]
|
|
111094
|
+
connect?: ShareASaleEventWhereUniqueInput | ShareASaleEventWhereUniqueInput[]
|
|
111095
|
+
update?: ShareASaleEventUpdateWithWhereUniqueWithoutOptInInput | ShareASaleEventUpdateWithWhereUniqueWithoutOptInInput[]
|
|
111096
|
+
updateMany?: ShareASaleEventUpdateManyWithWhereWithoutOptInInput | ShareASaleEventUpdateManyWithWhereWithoutOptInInput[]
|
|
111097
|
+
deleteMany?: ShareASaleEventScalarWhereInput | ShareASaleEventScalarWhereInput[]
|
|
111098
|
+
}
|
|
111099
|
+
|
|
109663
111100
|
export type OptInCreateNestedOneWithoutTrolleyPaymentsInput = {
|
|
109664
111101
|
create?: XOR<OptInCreateWithoutTrolleyPaymentsInput, OptInUncheckedCreateWithoutTrolleyPaymentsInput>
|
|
109665
111102
|
connectOrCreate?: OptInCreateOrConnectWithoutTrolleyPaymentsInput
|
|
@@ -110970,6 +112407,22 @@ export namespace Prisma {
|
|
|
110970
112407
|
update?: XOR<XOR<OptInUpdateToOneWithWhereWithoutImpactRadiusEventInput, OptInUpdateWithoutImpactRadiusEventInput>, OptInUncheckedUpdateWithoutImpactRadiusEventInput>
|
|
110971
112408
|
}
|
|
110972
112409
|
|
|
112410
|
+
export type OptInCreateNestedOneWithoutShareASaleEventsInput = {
|
|
112411
|
+
create?: XOR<OptInCreateWithoutShareASaleEventsInput, OptInUncheckedCreateWithoutShareASaleEventsInput>
|
|
112412
|
+
connectOrCreate?: OptInCreateOrConnectWithoutShareASaleEventsInput
|
|
112413
|
+
connect?: OptInWhereUniqueInput
|
|
112414
|
+
}
|
|
112415
|
+
|
|
112416
|
+
export type OptInUpdateOneWithoutShareASaleEventsNestedInput = {
|
|
112417
|
+
create?: XOR<OptInCreateWithoutShareASaleEventsInput, OptInUncheckedCreateWithoutShareASaleEventsInput>
|
|
112418
|
+
connectOrCreate?: OptInCreateOrConnectWithoutShareASaleEventsInput
|
|
112419
|
+
upsert?: OptInUpsertWithoutShareASaleEventsInput
|
|
112420
|
+
disconnect?: OptInWhereInput | boolean
|
|
112421
|
+
delete?: OptInWhereInput | boolean
|
|
112422
|
+
connect?: OptInWhereUniqueInput
|
|
112423
|
+
update?: XOR<XOR<OptInUpdateToOneWithWhereWithoutShareASaleEventsInput, OptInUpdateWithoutShareASaleEventsInput>, OptInUncheckedUpdateWithoutShareASaleEventsInput>
|
|
112424
|
+
}
|
|
112425
|
+
|
|
110973
112426
|
export type BrandCreateNestedOneWithoutCreatorsearchfilterInput = {
|
|
110974
112427
|
create?: XOR<BrandCreateWithoutCreatorsearchfilterInput, BrandUncheckedCreateWithoutCreatorsearchfilterInput>
|
|
110975
112428
|
connectOrCreate?: BrandCreateOrConnectWithoutCreatorsearchfilterInput
|
|
@@ -111927,6 +113380,8 @@ export namespace Prisma {
|
|
|
111927
113380
|
closedReason?: string | null
|
|
111928
113381
|
usercomLastSynced?: Date | string | null
|
|
111929
113382
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
113383
|
+
fullName?: string | null
|
|
113384
|
+
phoneNormalised?: string | null
|
|
111930
113385
|
referrer?: UserCreateNestedOneWithoutReferredUsersInput
|
|
111931
113386
|
logs?: LogCreateNestedManyWithoutUserInput
|
|
111932
113387
|
creatorProfile?: CreatorProfileCreateNestedOneWithoutUserInput
|
|
@@ -111969,6 +113424,8 @@ export namespace Prisma {
|
|
|
111969
113424
|
usercomLastSynced?: Date | string | null
|
|
111970
113425
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
111971
113426
|
referrerId?: number | null
|
|
113427
|
+
fullName?: string | null
|
|
113428
|
+
phoneNormalised?: string | null
|
|
111972
113429
|
logs?: LogUncheckedCreateNestedManyWithoutUserInput
|
|
111973
113430
|
creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
|
|
111974
113431
|
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -112013,6 +113470,8 @@ export namespace Prisma {
|
|
|
112013
113470
|
closedReason?: string | null
|
|
112014
113471
|
usercomLastSynced?: Date | string | null
|
|
112015
113472
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
113473
|
+
fullName?: string | null
|
|
113474
|
+
phoneNormalised?: string | null
|
|
112016
113475
|
referredUsers?: UserCreateNestedManyWithoutReferrerInput
|
|
112017
113476
|
logs?: LogCreateNestedManyWithoutUserInput
|
|
112018
113477
|
creatorProfile?: CreatorProfileCreateNestedOneWithoutUserInput
|
|
@@ -112054,6 +113513,8 @@ export namespace Prisma {
|
|
|
112054
113513
|
closedReason?: string | null
|
|
112055
113514
|
usercomLastSynced?: Date | string | null
|
|
112056
113515
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
113516
|
+
fullName?: string | null
|
|
113517
|
+
phoneNormalised?: string | null
|
|
112057
113518
|
referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
|
|
112058
113519
|
logs?: LogUncheckedCreateNestedManyWithoutUserInput
|
|
112059
113520
|
creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -112466,6 +113927,7 @@ export namespace Prisma {
|
|
|
112466
113927
|
productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
|
|
112467
113928
|
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
|
|
112468
113929
|
ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
|
|
113930
|
+
ShareASaleEvents?: ShareASaleEventCreateNestedManyWithoutOptInInput
|
|
112469
113931
|
}
|
|
112470
113932
|
|
|
112471
113933
|
export type OptInUncheckedCreateWithoutUserInput = {
|
|
@@ -112495,6 +113957,7 @@ export namespace Prisma {
|
|
|
112495
113957
|
productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
|
|
112496
113958
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
112497
113959
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
|
|
113960
|
+
ShareASaleEvents?: ShareASaleEventUncheckedCreateNestedManyWithoutOptInInput
|
|
112498
113961
|
}
|
|
112499
113962
|
|
|
112500
113963
|
export type OptInCreateOrConnectWithoutUserInput = {
|
|
@@ -112937,6 +114400,8 @@ export namespace Prisma {
|
|
|
112937
114400
|
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
112938
114401
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
112939
114402
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
114403
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114404
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
112940
114405
|
referrer?: UserUpdateOneWithoutReferredUsersNestedInput
|
|
112941
114406
|
logs?: LogUpdateManyWithoutUserNestedInput
|
|
112942
114407
|
creatorProfile?: CreatorProfileUpdateOneWithoutUserNestedInput
|
|
@@ -112979,6 +114444,8 @@ export namespace Prisma {
|
|
|
112979
114444
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
112980
114445
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
112981
114446
|
referrerId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
114447
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114448
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
112982
114449
|
logs?: LogUncheckedUpdateManyWithoutUserNestedInput
|
|
112983
114450
|
creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
112984
114451
|
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -113039,6 +114506,8 @@ export namespace Prisma {
|
|
|
113039
114506
|
usercomLastSynced?: DateTimeNullableFilter<"User"> | Date | string | null
|
|
113040
114507
|
extraData?: JsonFilter<"User">
|
|
113041
114508
|
referrerId?: IntNullableFilter<"User"> | number | null
|
|
114509
|
+
fullName?: StringNullableFilter<"User"> | string | null
|
|
114510
|
+
phoneNormalised?: StringNullableFilter<"User"> | string | null
|
|
113042
114511
|
}
|
|
113043
114512
|
|
|
113044
114513
|
export type LogUpsertWithWhereUniqueWithoutUserInput = {
|
|
@@ -113818,6 +115287,8 @@ export namespace Prisma {
|
|
|
113818
115287
|
closedReason?: string | null
|
|
113819
115288
|
usercomLastSynced?: Date | string | null
|
|
113820
115289
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
115290
|
+
fullName?: string | null
|
|
115291
|
+
phoneNormalised?: string | null
|
|
113821
115292
|
referrer?: UserCreateNestedOneWithoutReferredUsersInput
|
|
113822
115293
|
referredUsers?: UserCreateNestedManyWithoutReferrerInput
|
|
113823
115294
|
creatorProfile?: CreatorProfileCreateNestedOneWithoutUserInput
|
|
@@ -113860,6 +115331,8 @@ export namespace Prisma {
|
|
|
113860
115331
|
usercomLastSynced?: Date | string | null
|
|
113861
115332
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
113862
115333
|
referrerId?: number | null
|
|
115334
|
+
fullName?: string | null
|
|
115335
|
+
phoneNormalised?: string | null
|
|
113863
115336
|
referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
|
|
113864
115337
|
creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
|
|
113865
115338
|
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -113915,6 +115388,8 @@ export namespace Prisma {
|
|
|
113915
115388
|
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
113916
115389
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
113917
115390
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
115391
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115392
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
113918
115393
|
referrer?: UserUpdateOneWithoutReferredUsersNestedInput
|
|
113919
115394
|
referredUsers?: UserUpdateManyWithoutReferrerNestedInput
|
|
113920
115395
|
creatorProfile?: CreatorProfileUpdateOneWithoutUserNestedInput
|
|
@@ -113957,6 +115432,8 @@ export namespace Prisma {
|
|
|
113957
115432
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
113958
115433
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
113959
115434
|
referrerId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
115435
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115436
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
113960
115437
|
referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
|
|
113961
115438
|
creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
113962
115439
|
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -114014,6 +115491,8 @@ export namespace Prisma {
|
|
|
114014
115491
|
closedReason?: string | null
|
|
114015
115492
|
usercomLastSynced?: Date | string | null
|
|
114016
115493
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
115494
|
+
fullName?: string | null
|
|
115495
|
+
phoneNormalised?: string | null
|
|
114017
115496
|
referrer?: UserCreateNestedOneWithoutReferredUsersInput
|
|
114018
115497
|
referredUsers?: UserCreateNestedManyWithoutReferrerInput
|
|
114019
115498
|
logs?: LogCreateNestedManyWithoutUserInput
|
|
@@ -114056,6 +115535,8 @@ export namespace Prisma {
|
|
|
114056
115535
|
usercomLastSynced?: Date | string | null
|
|
114057
115536
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
114058
115537
|
referrerId?: number | null
|
|
115538
|
+
fullName?: string | null
|
|
115539
|
+
phoneNormalised?: string | null
|
|
114059
115540
|
referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
|
|
114060
115541
|
logs?: LogUncheckedCreateNestedManyWithoutUserInput
|
|
114061
115542
|
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -114135,6 +115616,8 @@ export namespace Prisma {
|
|
|
114135
115616
|
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114136
115617
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
114137
115618
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
115619
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115620
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114138
115621
|
referrer?: UserUpdateOneWithoutReferredUsersNestedInput
|
|
114139
115622
|
referredUsers?: UserUpdateManyWithoutReferrerNestedInput
|
|
114140
115623
|
logs?: LogUpdateManyWithoutUserNestedInput
|
|
@@ -114177,6 +115660,8 @@ export namespace Prisma {
|
|
|
114177
115660
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
114178
115661
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
114179
115662
|
referrerId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
115663
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115664
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114180
115665
|
referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
|
|
114181
115666
|
logs?: LogUncheckedUpdateManyWithoutUserNestedInput
|
|
114182
115667
|
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -114216,6 +115701,8 @@ export namespace Prisma {
|
|
|
114216
115701
|
closedReason?: string | null
|
|
114217
115702
|
usercomLastSynced?: Date | string | null
|
|
114218
115703
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
115704
|
+
fullName?: string | null
|
|
115705
|
+
phoneNormalised?: string | null
|
|
114219
115706
|
referrer?: UserCreateNestedOneWithoutReferredUsersInput
|
|
114220
115707
|
referredUsers?: UserCreateNestedManyWithoutReferrerInput
|
|
114221
115708
|
logs?: LogCreateNestedManyWithoutUserInput
|
|
@@ -114258,6 +115745,8 @@ export namespace Prisma {
|
|
|
114258
115745
|
usercomLastSynced?: Date | string | null
|
|
114259
115746
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
114260
115747
|
referrerId?: number | null
|
|
115748
|
+
fullName?: string | null
|
|
115749
|
+
phoneNormalised?: string | null
|
|
114261
115750
|
referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
|
|
114262
115751
|
logs?: LogUncheckedCreateNestedManyWithoutUserInput
|
|
114263
115752
|
creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -114395,6 +115884,8 @@ export namespace Prisma {
|
|
|
114395
115884
|
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114396
115885
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
114397
115886
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
115887
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115888
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114398
115889
|
referrer?: UserUpdateOneWithoutReferredUsersNestedInput
|
|
114399
115890
|
referredUsers?: UserUpdateManyWithoutReferrerNestedInput
|
|
114400
115891
|
logs?: LogUpdateManyWithoutUserNestedInput
|
|
@@ -114437,6 +115928,8 @@ export namespace Prisma {
|
|
|
114437
115928
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
114438
115929
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
114439
115930
|
referrerId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
115931
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115932
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114440
115933
|
referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
|
|
114441
115934
|
logs?: LogUncheckedUpdateManyWithoutUserNestedInput
|
|
114442
115935
|
creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -114564,6 +116057,8 @@ export namespace Prisma {
|
|
|
114564
116057
|
closedReason?: string | null
|
|
114565
116058
|
usercomLastSynced?: Date | string | null
|
|
114566
116059
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
116060
|
+
fullName?: string | null
|
|
116061
|
+
phoneNormalised?: string | null
|
|
114567
116062
|
referrer?: UserCreateNestedOneWithoutReferredUsersInput
|
|
114568
116063
|
referredUsers?: UserCreateNestedManyWithoutReferrerInput
|
|
114569
116064
|
logs?: LogCreateNestedManyWithoutUserInput
|
|
@@ -114606,6 +116101,8 @@ export namespace Prisma {
|
|
|
114606
116101
|
usercomLastSynced?: Date | string | null
|
|
114607
116102
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
114608
116103
|
referrerId?: number | null
|
|
116104
|
+
fullName?: string | null
|
|
116105
|
+
phoneNormalised?: string | null
|
|
114609
116106
|
referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
|
|
114610
116107
|
logs?: LogUncheckedCreateNestedManyWithoutUserInput
|
|
114611
116108
|
creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -114743,6 +116240,8 @@ export namespace Prisma {
|
|
|
114743
116240
|
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114744
116241
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
114745
116242
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
116243
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
116244
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114746
116245
|
referrer?: UserUpdateOneWithoutReferredUsersNestedInput
|
|
114747
116246
|
referredUsers?: UserUpdateManyWithoutReferrerNestedInput
|
|
114748
116247
|
logs?: LogUpdateManyWithoutUserNestedInput
|
|
@@ -114785,6 +116284,8 @@ export namespace Prisma {
|
|
|
114785
116284
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
114786
116285
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
114787
116286
|
referrerId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
116287
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
116288
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114788
116289
|
referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
|
|
114789
116290
|
logs?: LogUncheckedUpdateManyWithoutUserNestedInput
|
|
114790
116291
|
creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -114912,6 +116413,8 @@ export namespace Prisma {
|
|
|
114912
116413
|
closedReason?: string | null
|
|
114913
116414
|
usercomLastSynced?: Date | string | null
|
|
114914
116415
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
116416
|
+
fullName?: string | null
|
|
116417
|
+
phoneNormalised?: string | null
|
|
114915
116418
|
referrer?: UserCreateNestedOneWithoutReferredUsersInput
|
|
114916
116419
|
referredUsers?: UserCreateNestedManyWithoutReferrerInput
|
|
114917
116420
|
logs?: LogCreateNestedManyWithoutUserInput
|
|
@@ -114954,6 +116457,8 @@ export namespace Prisma {
|
|
|
114954
116457
|
usercomLastSynced?: Date | string | null
|
|
114955
116458
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
114956
116459
|
referrerId?: number | null
|
|
116460
|
+
fullName?: string | null
|
|
116461
|
+
phoneNormalised?: string | null
|
|
114957
116462
|
referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
|
|
114958
116463
|
logs?: LogUncheckedCreateNestedManyWithoutUserInput
|
|
114959
116464
|
creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -115091,6 +116596,8 @@ export namespace Prisma {
|
|
|
115091
116596
|
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115092
116597
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
115093
116598
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
116599
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
116600
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115094
116601
|
referrer?: UserUpdateOneWithoutReferredUsersNestedInput
|
|
115095
116602
|
referredUsers?: UserUpdateManyWithoutReferrerNestedInput
|
|
115096
116603
|
logs?: LogUpdateManyWithoutUserNestedInput
|
|
@@ -115133,6 +116640,8 @@ export namespace Prisma {
|
|
|
115133
116640
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
115134
116641
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
115135
116642
|
referrerId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
116643
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
116644
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115136
116645
|
referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
|
|
115137
116646
|
logs?: LogUncheckedUpdateManyWithoutUserNestedInput
|
|
115138
116647
|
creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -115260,6 +116769,8 @@ export namespace Prisma {
|
|
|
115260
116769
|
closedReason?: string | null
|
|
115261
116770
|
usercomLastSynced?: Date | string | null
|
|
115262
116771
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
116772
|
+
fullName?: string | null
|
|
116773
|
+
phoneNormalised?: string | null
|
|
115263
116774
|
referrer?: UserCreateNestedOneWithoutReferredUsersInput
|
|
115264
116775
|
referredUsers?: UserCreateNestedManyWithoutReferrerInput
|
|
115265
116776
|
logs?: LogCreateNestedManyWithoutUserInput
|
|
@@ -115302,6 +116813,8 @@ export namespace Prisma {
|
|
|
115302
116813
|
usercomLastSynced?: Date | string | null
|
|
115303
116814
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
115304
116815
|
referrerId?: number | null
|
|
116816
|
+
fullName?: string | null
|
|
116817
|
+
phoneNormalised?: string | null
|
|
115305
116818
|
referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
|
|
115306
116819
|
logs?: LogUncheckedCreateNestedManyWithoutUserInput
|
|
115307
116820
|
creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -115357,6 +116870,8 @@ export namespace Prisma {
|
|
|
115357
116870
|
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115358
116871
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
115359
116872
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
116873
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
116874
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115360
116875
|
referrer?: UserUpdateOneWithoutReferredUsersNestedInput
|
|
115361
116876
|
referredUsers?: UserUpdateManyWithoutReferrerNestedInput
|
|
115362
116877
|
logs?: LogUpdateManyWithoutUserNestedInput
|
|
@@ -115399,6 +116914,8 @@ export namespace Prisma {
|
|
|
115399
116914
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
115400
116915
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
115401
116916
|
referrerId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
116917
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
116918
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115402
116919
|
referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
|
|
115403
116920
|
logs?: LogUncheckedUpdateManyWithoutUserNestedInput
|
|
115404
116921
|
creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -115438,6 +116955,8 @@ export namespace Prisma {
|
|
|
115438
116955
|
closedReason?: string | null
|
|
115439
116956
|
usercomLastSynced?: Date | string | null
|
|
115440
116957
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
116958
|
+
fullName?: string | null
|
|
116959
|
+
phoneNormalised?: string | null
|
|
115441
116960
|
referrer?: UserCreateNestedOneWithoutReferredUsersInput
|
|
115442
116961
|
referredUsers?: UserCreateNestedManyWithoutReferrerInput
|
|
115443
116962
|
logs?: LogCreateNestedManyWithoutUserInput
|
|
@@ -115480,6 +116999,8 @@ export namespace Prisma {
|
|
|
115480
116999
|
usercomLastSynced?: Date | string | null
|
|
115481
117000
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
115482
117001
|
referrerId?: number | null
|
|
117002
|
+
fullName?: string | null
|
|
117003
|
+
phoneNormalised?: string | null
|
|
115483
117004
|
referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
|
|
115484
117005
|
logs?: LogUncheckedCreateNestedManyWithoutUserInput
|
|
115485
117006
|
creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -115535,6 +117056,8 @@ export namespace Prisma {
|
|
|
115535
117056
|
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115536
117057
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
115537
117058
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
117059
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
117060
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115538
117061
|
referrer?: UserUpdateOneWithoutReferredUsersNestedInput
|
|
115539
117062
|
referredUsers?: UserUpdateManyWithoutReferrerNestedInput
|
|
115540
117063
|
logs?: LogUpdateManyWithoutUserNestedInput
|
|
@@ -115577,6 +117100,8 @@ export namespace Prisma {
|
|
|
115577
117100
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
115578
117101
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
115579
117102
|
referrerId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
117103
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
117104
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115580
117105
|
referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
|
|
115581
117106
|
logs?: LogUncheckedUpdateManyWithoutUserNestedInput
|
|
115582
117107
|
creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -115616,6 +117141,8 @@ export namespace Prisma {
|
|
|
115616
117141
|
closedReason?: string | null
|
|
115617
117142
|
usercomLastSynced?: Date | string | null
|
|
115618
117143
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
117144
|
+
fullName?: string | null
|
|
117145
|
+
phoneNormalised?: string | null
|
|
115619
117146
|
referrer?: UserCreateNestedOneWithoutReferredUsersInput
|
|
115620
117147
|
referredUsers?: UserCreateNestedManyWithoutReferrerInput
|
|
115621
117148
|
logs?: LogCreateNestedManyWithoutUserInput
|
|
@@ -115658,6 +117185,8 @@ export namespace Prisma {
|
|
|
115658
117185
|
usercomLastSynced?: Date | string | null
|
|
115659
117186
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
115660
117187
|
referrerId?: number | null
|
|
117188
|
+
fullName?: string | null
|
|
117189
|
+
phoneNormalised?: string | null
|
|
115661
117190
|
referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
|
|
115662
117191
|
logs?: LogUncheckedCreateNestedManyWithoutUserInput
|
|
115663
117192
|
creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -115713,6 +117242,8 @@ export namespace Prisma {
|
|
|
115713
117242
|
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115714
117243
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
115715
117244
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
117245
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
117246
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115716
117247
|
referrer?: UserUpdateOneWithoutReferredUsersNestedInput
|
|
115717
117248
|
referredUsers?: UserUpdateManyWithoutReferrerNestedInput
|
|
115718
117249
|
logs?: LogUpdateManyWithoutUserNestedInput
|
|
@@ -115755,6 +117286,8 @@ export namespace Prisma {
|
|
|
115755
117286
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
115756
117287
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
115757
117288
|
referrerId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
117289
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
117290
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115758
117291
|
referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
|
|
115759
117292
|
logs?: LogUncheckedUpdateManyWithoutUserNestedInput
|
|
115760
117293
|
creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -115794,6 +117327,8 @@ export namespace Prisma {
|
|
|
115794
117327
|
closedReason?: string | null
|
|
115795
117328
|
usercomLastSynced?: Date | string | null
|
|
115796
117329
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
117330
|
+
fullName?: string | null
|
|
117331
|
+
phoneNormalised?: string | null
|
|
115797
117332
|
referrer?: UserCreateNestedOneWithoutReferredUsersInput
|
|
115798
117333
|
referredUsers?: UserCreateNestedManyWithoutReferrerInput
|
|
115799
117334
|
logs?: LogCreateNestedManyWithoutUserInput
|
|
@@ -115836,6 +117371,8 @@ export namespace Prisma {
|
|
|
115836
117371
|
usercomLastSynced?: Date | string | null
|
|
115837
117372
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
115838
117373
|
referrerId?: number | null
|
|
117374
|
+
fullName?: string | null
|
|
117375
|
+
phoneNormalised?: string | null
|
|
115839
117376
|
referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
|
|
115840
117377
|
logs?: LogUncheckedCreateNestedManyWithoutUserInput
|
|
115841
117378
|
creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -115973,6 +117510,8 @@ export namespace Prisma {
|
|
|
115973
117510
|
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115974
117511
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
115975
117512
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
117513
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
117514
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115976
117515
|
referrer?: UserUpdateOneWithoutReferredUsersNestedInput
|
|
115977
117516
|
referredUsers?: UserUpdateManyWithoutReferrerNestedInput
|
|
115978
117517
|
logs?: LogUpdateManyWithoutUserNestedInput
|
|
@@ -116015,6 +117554,8 @@ export namespace Prisma {
|
|
|
116015
117554
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
116016
117555
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
116017
117556
|
referrerId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
117557
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
117558
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
116018
117559
|
referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
|
|
116019
117560
|
logs?: LogUncheckedUpdateManyWithoutUserNestedInput
|
|
116020
117561
|
creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -116142,6 +117683,8 @@ export namespace Prisma {
|
|
|
116142
117683
|
closedReason?: string | null
|
|
116143
117684
|
usercomLastSynced?: Date | string | null
|
|
116144
117685
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
117686
|
+
fullName?: string | null
|
|
117687
|
+
phoneNormalised?: string | null
|
|
116145
117688
|
referrer?: UserCreateNestedOneWithoutReferredUsersInput
|
|
116146
117689
|
referredUsers?: UserCreateNestedManyWithoutReferrerInput
|
|
116147
117690
|
logs?: LogCreateNestedManyWithoutUserInput
|
|
@@ -116184,6 +117727,8 @@ export namespace Prisma {
|
|
|
116184
117727
|
usercomLastSynced?: Date | string | null
|
|
116185
117728
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
116186
117729
|
referrerId?: number | null
|
|
117730
|
+
fullName?: string | null
|
|
117731
|
+
phoneNormalised?: string | null
|
|
116187
117732
|
referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
|
|
116188
117733
|
logs?: LogUncheckedCreateNestedManyWithoutUserInput
|
|
116189
117734
|
creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -117250,6 +118795,8 @@ export namespace Prisma {
|
|
|
117250
118795
|
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
117251
118796
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117252
118797
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
118798
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118799
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
117253
118800
|
referrer?: UserUpdateOneWithoutReferredUsersNestedInput
|
|
117254
118801
|
referredUsers?: UserUpdateManyWithoutReferrerNestedInput
|
|
117255
118802
|
logs?: LogUpdateManyWithoutUserNestedInput
|
|
@@ -117292,6 +118839,8 @@ export namespace Prisma {
|
|
|
117292
118839
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117293
118840
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
117294
118841
|
referrerId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
118842
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118843
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
117295
118844
|
referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
|
|
117296
118845
|
logs?: LogUncheckedUpdateManyWithoutUserNestedInput
|
|
117297
118846
|
creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -119333,6 +120882,7 @@ export namespace Prisma {
|
|
|
119333
120882
|
productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
|
|
119334
120883
|
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
|
|
119335
120884
|
ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
|
|
120885
|
+
ShareASaleEvents?: ShareASaleEventCreateNestedManyWithoutOptInInput
|
|
119336
120886
|
}
|
|
119337
120887
|
|
|
119338
120888
|
export type OptInUncheckedCreateWithoutChatInput = {
|
|
@@ -119362,6 +120912,7 @@ export namespace Prisma {
|
|
|
119362
120912
|
productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
|
|
119363
120913
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
119364
120914
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
|
|
120915
|
+
ShareASaleEvents?: ShareASaleEventUncheckedCreateNestedManyWithoutOptInInput
|
|
119365
120916
|
}
|
|
119366
120917
|
|
|
119367
120918
|
export type OptInCreateOrConnectWithoutChatInput = {
|
|
@@ -119437,6 +120988,7 @@ export namespace Prisma {
|
|
|
119437
120988
|
productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
|
|
119438
120989
|
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
|
|
119439
120990
|
ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
|
|
120991
|
+
ShareASaleEvents?: ShareASaleEventUpdateManyWithoutOptInNestedInput
|
|
119440
120992
|
}
|
|
119441
120993
|
|
|
119442
120994
|
export type OptInUncheckedUpdateWithoutChatInput = {
|
|
@@ -119466,6 +121018,7 @@ export namespace Prisma {
|
|
|
119466
121018
|
productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
|
|
119467
121019
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
119468
121020
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
121021
|
+
ShareASaleEvents?: ShareASaleEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
119469
121022
|
}
|
|
119470
121023
|
|
|
119471
121024
|
export type MessageUpsertWithWhereUniqueWithoutChatInput = {
|
|
@@ -119502,6 +121055,8 @@ export namespace Prisma {
|
|
|
119502
121055
|
closedReason?: string | null
|
|
119503
121056
|
usercomLastSynced?: Date | string | null
|
|
119504
121057
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
121058
|
+
fullName?: string | null
|
|
121059
|
+
phoneNormalised?: string | null
|
|
119505
121060
|
referrer?: UserCreateNestedOneWithoutReferredUsersInput
|
|
119506
121061
|
referredUsers?: UserCreateNestedManyWithoutReferrerInput
|
|
119507
121062
|
logs?: LogCreateNestedManyWithoutUserInput
|
|
@@ -119544,6 +121099,8 @@ export namespace Prisma {
|
|
|
119544
121099
|
usercomLastSynced?: Date | string | null
|
|
119545
121100
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
119546
121101
|
referrerId?: number | null
|
|
121102
|
+
fullName?: string | null
|
|
121103
|
+
phoneNormalised?: string | null
|
|
119547
121104
|
referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
|
|
119548
121105
|
logs?: LogUncheckedCreateNestedManyWithoutUserInput
|
|
119549
121106
|
creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -119619,6 +121176,8 @@ export namespace Prisma {
|
|
|
119619
121176
|
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
119620
121177
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
119621
121178
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
121179
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121180
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
119622
121181
|
referrer?: UserUpdateOneWithoutReferredUsersNestedInput
|
|
119623
121182
|
referredUsers?: UserUpdateManyWithoutReferrerNestedInput
|
|
119624
121183
|
logs?: LogUpdateManyWithoutUserNestedInput
|
|
@@ -119661,6 +121220,8 @@ export namespace Prisma {
|
|
|
119661
121220
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
119662
121221
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
119663
121222
|
referrerId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
121223
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121224
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
119664
121225
|
referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
|
|
119665
121226
|
logs?: LogUncheckedUpdateManyWithoutUserNestedInput
|
|
119666
121227
|
creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -119789,6 +121350,7 @@ export namespace Prisma {
|
|
|
119789
121350
|
productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
|
|
119790
121351
|
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
|
|
119791
121352
|
ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
|
|
121353
|
+
ShareASaleEvents?: ShareASaleEventCreateNestedManyWithoutOptInInput
|
|
119792
121354
|
}
|
|
119793
121355
|
|
|
119794
121356
|
export type OptInUncheckedCreateWithoutCampaignInput = {
|
|
@@ -119818,6 +121380,7 @@ export namespace Prisma {
|
|
|
119818
121380
|
productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
|
|
119819
121381
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
119820
121382
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
|
|
121383
|
+
ShareASaleEvents?: ShareASaleEventUncheckedCreateNestedManyWithoutOptInInput
|
|
119821
121384
|
}
|
|
119822
121385
|
|
|
119823
121386
|
export type OptInCreateOrConnectWithoutCampaignInput = {
|
|
@@ -120752,6 +122315,8 @@ export namespace Prisma {
|
|
|
120752
122315
|
closedReason?: string | null
|
|
120753
122316
|
usercomLastSynced?: Date | string | null
|
|
120754
122317
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
122318
|
+
fullName?: string | null
|
|
122319
|
+
phoneNormalised?: string | null
|
|
120755
122320
|
referrer?: UserCreateNestedOneWithoutReferredUsersInput
|
|
120756
122321
|
referredUsers?: UserCreateNestedManyWithoutReferrerInput
|
|
120757
122322
|
logs?: LogCreateNestedManyWithoutUserInput
|
|
@@ -120794,6 +122359,8 @@ export namespace Prisma {
|
|
|
120794
122359
|
usercomLastSynced?: Date | string | null
|
|
120795
122360
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
120796
122361
|
referrerId?: number | null
|
|
122362
|
+
fullName?: string | null
|
|
122363
|
+
phoneNormalised?: string | null
|
|
120797
122364
|
referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
|
|
120798
122365
|
logs?: LogUncheckedCreateNestedManyWithoutUserInput
|
|
120799
122366
|
creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -120995,6 +122562,8 @@ export namespace Prisma {
|
|
|
120995
122562
|
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120996
122563
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
120997
122564
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
122565
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
122566
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120998
122567
|
referrer?: UserUpdateOneWithoutReferredUsersNestedInput
|
|
120999
122568
|
referredUsers?: UserUpdateManyWithoutReferrerNestedInput
|
|
121000
122569
|
logs?: LogUpdateManyWithoutUserNestedInput
|
|
@@ -121037,6 +122606,8 @@ export namespace Prisma {
|
|
|
121037
122606
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121038
122607
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
121039
122608
|
referrerId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
122609
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
122610
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121040
122611
|
referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
|
|
121041
122612
|
logs?: LogUncheckedUpdateManyWithoutUserNestedInput
|
|
121042
122613
|
creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -123332,6 +124903,7 @@ export namespace Prisma {
|
|
|
123332
124903
|
affiliateClicks?: AffiliateClickCreateNestedManyWithoutOptinInput
|
|
123333
124904
|
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
|
|
123334
124905
|
ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
|
|
124906
|
+
ShareASaleEvents?: ShareASaleEventCreateNestedManyWithoutOptInInput
|
|
123335
124907
|
}
|
|
123336
124908
|
|
|
123337
124909
|
export type OptInUncheckedCreateWithoutProductListItemsInput = {
|
|
@@ -123361,6 +124933,7 @@ export namespace Prisma {
|
|
|
123361
124933
|
affiliateClicks?: AffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
123362
124934
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
123363
124935
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
|
|
124936
|
+
ShareASaleEvents?: ShareASaleEventUncheckedCreateNestedManyWithoutOptInInput
|
|
123364
124937
|
}
|
|
123365
124938
|
|
|
123366
124939
|
export type OptInCreateOrConnectWithoutProductListItemsInput = {
|
|
@@ -123427,6 +125000,7 @@ export namespace Prisma {
|
|
|
123427
125000
|
affiliateClicks?: AffiliateClickUpdateManyWithoutOptinNestedInput
|
|
123428
125001
|
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
|
|
123429
125002
|
ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
|
|
125003
|
+
ShareASaleEvents?: ShareASaleEventUpdateManyWithoutOptInNestedInput
|
|
123430
125004
|
}
|
|
123431
125005
|
|
|
123432
125006
|
export type OptInUncheckedUpdateWithoutProductListItemsInput = {
|
|
@@ -123456,6 +125030,7 @@ export namespace Prisma {
|
|
|
123456
125030
|
affiliateClicks?: AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
123457
125031
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
123458
125032
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
125033
|
+
ShareASaleEvents?: ShareASaleEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
123459
125034
|
}
|
|
123460
125035
|
|
|
123461
125036
|
export type ProductListItemUpsertWithoutOptinsInput = {
|
|
@@ -124215,6 +125790,7 @@ export namespace Prisma {
|
|
|
124215
125790
|
productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
|
|
124216
125791
|
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
|
|
124217
125792
|
ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
|
|
125793
|
+
ShareASaleEvents?: ShareASaleEventCreateNestedManyWithoutOptInInput
|
|
124218
125794
|
}
|
|
124219
125795
|
|
|
124220
125796
|
export type OptInUncheckedCreateWithoutCurrentStepInput = {
|
|
@@ -124244,6 +125820,7 @@ export namespace Prisma {
|
|
|
124244
125820
|
productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
|
|
124245
125821
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
124246
125822
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
|
|
125823
|
+
ShareASaleEvents?: ShareASaleEventUncheckedCreateNestedManyWithoutOptInInput
|
|
124247
125824
|
}
|
|
124248
125825
|
|
|
124249
125826
|
export type OptInCreateOrConnectWithoutCurrentStepInput = {
|
|
@@ -124529,6 +126106,7 @@ export namespace Prisma {
|
|
|
124529
126106
|
productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
|
|
124530
126107
|
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
|
|
124531
126108
|
ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
|
|
126109
|
+
ShareASaleEvents?: ShareASaleEventCreateNestedManyWithoutOptInInput
|
|
124532
126110
|
}
|
|
124533
126111
|
|
|
124534
126112
|
export type OptInUncheckedCreateWithoutOptInStepsInput = {
|
|
@@ -124558,6 +126136,7 @@ export namespace Prisma {
|
|
|
124558
126136
|
productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
|
|
124559
126137
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
124560
126138
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
|
|
126139
|
+
ShareASaleEvents?: ShareASaleEventUncheckedCreateNestedManyWithoutOptInInput
|
|
124561
126140
|
}
|
|
124562
126141
|
|
|
124563
126142
|
export type OptInCreateOrConnectWithoutOptInStepsInput = {
|
|
@@ -124634,6 +126213,7 @@ export namespace Prisma {
|
|
|
124634
126213
|
productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
|
|
124635
126214
|
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
|
|
124636
126215
|
ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
|
|
126216
|
+
ShareASaleEvents?: ShareASaleEventUpdateManyWithoutOptInNestedInput
|
|
124637
126217
|
}
|
|
124638
126218
|
|
|
124639
126219
|
export type OptInUncheckedUpdateWithoutOptInStepsInput = {
|
|
@@ -124663,6 +126243,7 @@ export namespace Prisma {
|
|
|
124663
126243
|
productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
|
|
124664
126244
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
124665
126245
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
126246
|
+
ShareASaleEvents?: ShareASaleEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
124666
126247
|
}
|
|
124667
126248
|
|
|
124668
126249
|
export type CampaignStepUpsertWithoutOptInStepsInput = {
|
|
@@ -124823,6 +126404,8 @@ export namespace Prisma {
|
|
|
124823
126404
|
closedReason?: string | null
|
|
124824
126405
|
usercomLastSynced?: Date | string | null
|
|
124825
126406
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
126407
|
+
fullName?: string | null
|
|
126408
|
+
phoneNormalised?: string | null
|
|
124826
126409
|
referrer?: UserCreateNestedOneWithoutReferredUsersInput
|
|
124827
126410
|
referredUsers?: UserCreateNestedManyWithoutReferrerInput
|
|
124828
126411
|
logs?: LogCreateNestedManyWithoutUserInput
|
|
@@ -124865,6 +126448,8 @@ export namespace Prisma {
|
|
|
124865
126448
|
usercomLastSynced?: Date | string | null
|
|
124866
126449
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
124867
126450
|
referrerId?: number | null
|
|
126451
|
+
fullName?: string | null
|
|
126452
|
+
phoneNormalised?: string | null
|
|
124868
126453
|
referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
|
|
124869
126454
|
logs?: LogUncheckedCreateNestedManyWithoutUserInput
|
|
124870
126455
|
creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -125304,6 +126889,31 @@ export namespace Prisma {
|
|
|
125304
126889
|
skipDuplicates?: boolean
|
|
125305
126890
|
}
|
|
125306
126891
|
|
|
126892
|
+
export type ShareASaleEventCreateWithoutOptInInput = {
|
|
126893
|
+
created?: Date | string
|
|
126894
|
+
saleAmount?: number | null
|
|
126895
|
+
commission?: number | null
|
|
126896
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
126897
|
+
}
|
|
126898
|
+
|
|
126899
|
+
export type ShareASaleEventUncheckedCreateWithoutOptInInput = {
|
|
126900
|
+
id?: number
|
|
126901
|
+
created?: Date | string
|
|
126902
|
+
saleAmount?: number | null
|
|
126903
|
+
commission?: number | null
|
|
126904
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
126905
|
+
}
|
|
126906
|
+
|
|
126907
|
+
export type ShareASaleEventCreateOrConnectWithoutOptInInput = {
|
|
126908
|
+
where: ShareASaleEventWhereUniqueInput
|
|
126909
|
+
create: XOR<ShareASaleEventCreateWithoutOptInInput, ShareASaleEventUncheckedCreateWithoutOptInInput>
|
|
126910
|
+
}
|
|
126911
|
+
|
|
126912
|
+
export type ShareASaleEventCreateManyOptInInputEnvelope = {
|
|
126913
|
+
data: ShareASaleEventCreateManyOptInInput | ShareASaleEventCreateManyOptInInput[]
|
|
126914
|
+
skipDuplicates?: boolean
|
|
126915
|
+
}
|
|
126916
|
+
|
|
125307
126917
|
export type UserUpsertWithoutOptInsInput = {
|
|
125308
126918
|
update: XOR<UserUpdateWithoutOptInsInput, UserUncheckedUpdateWithoutOptInsInput>
|
|
125309
126919
|
create: XOR<UserCreateWithoutOptInsInput, UserUncheckedCreateWithoutOptInsInput>
|
|
@@ -125333,6 +126943,8 @@ export namespace Prisma {
|
|
|
125333
126943
|
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125334
126944
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
125335
126945
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
126946
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
126947
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125336
126948
|
referrer?: UserUpdateOneWithoutReferredUsersNestedInput
|
|
125337
126949
|
referredUsers?: UserUpdateManyWithoutReferrerNestedInput
|
|
125338
126950
|
logs?: LogUpdateManyWithoutUserNestedInput
|
|
@@ -125375,6 +126987,8 @@ export namespace Prisma {
|
|
|
125375
126987
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
125376
126988
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
125377
126989
|
referrerId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
126990
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
126991
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125378
126992
|
referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
|
|
125379
126993
|
logs?: LogUncheckedUpdateManyWithoutUserNestedInput
|
|
125380
126994
|
creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -125766,6 +127380,34 @@ export namespace Prisma {
|
|
|
125766
127380
|
data: XOR<ImpactRadiusEventUpdateManyMutationInput, ImpactRadiusEventUncheckedUpdateManyWithoutOptInInput>
|
|
125767
127381
|
}
|
|
125768
127382
|
|
|
127383
|
+
export type ShareASaleEventUpsertWithWhereUniqueWithoutOptInInput = {
|
|
127384
|
+
where: ShareASaleEventWhereUniqueInput
|
|
127385
|
+
update: XOR<ShareASaleEventUpdateWithoutOptInInput, ShareASaleEventUncheckedUpdateWithoutOptInInput>
|
|
127386
|
+
create: XOR<ShareASaleEventCreateWithoutOptInInput, ShareASaleEventUncheckedCreateWithoutOptInInput>
|
|
127387
|
+
}
|
|
127388
|
+
|
|
127389
|
+
export type ShareASaleEventUpdateWithWhereUniqueWithoutOptInInput = {
|
|
127390
|
+
where: ShareASaleEventWhereUniqueInput
|
|
127391
|
+
data: XOR<ShareASaleEventUpdateWithoutOptInInput, ShareASaleEventUncheckedUpdateWithoutOptInInput>
|
|
127392
|
+
}
|
|
127393
|
+
|
|
127394
|
+
export type ShareASaleEventUpdateManyWithWhereWithoutOptInInput = {
|
|
127395
|
+
where: ShareASaleEventScalarWhereInput
|
|
127396
|
+
data: XOR<ShareASaleEventUpdateManyMutationInput, ShareASaleEventUncheckedUpdateManyWithoutOptInInput>
|
|
127397
|
+
}
|
|
127398
|
+
|
|
127399
|
+
export type ShareASaleEventScalarWhereInput = {
|
|
127400
|
+
AND?: ShareASaleEventScalarWhereInput | ShareASaleEventScalarWhereInput[]
|
|
127401
|
+
OR?: ShareASaleEventScalarWhereInput[]
|
|
127402
|
+
NOT?: ShareASaleEventScalarWhereInput | ShareASaleEventScalarWhereInput[]
|
|
127403
|
+
id?: IntFilter<"ShareASaleEvent"> | number
|
|
127404
|
+
created?: DateTimeFilter<"ShareASaleEvent"> | Date | string
|
|
127405
|
+
saleAmount?: FloatNullableFilter<"ShareASaleEvent"> | number | null
|
|
127406
|
+
commission?: FloatNullableFilter<"ShareASaleEvent"> | number | null
|
|
127407
|
+
metaData?: JsonFilter<"ShareASaleEvent">
|
|
127408
|
+
optInId?: IntNullableFilter<"ShareASaleEvent"> | number | null
|
|
127409
|
+
}
|
|
127410
|
+
|
|
125769
127411
|
export type OptInCreateWithoutTrolleyPaymentsInput = {
|
|
125770
127412
|
status?: string
|
|
125771
127413
|
created?: Date | string
|
|
@@ -125792,6 +127434,7 @@ export namespace Prisma {
|
|
|
125792
127434
|
productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
|
|
125793
127435
|
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
|
|
125794
127436
|
ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
|
|
127437
|
+
ShareASaleEvents?: ShareASaleEventCreateNestedManyWithoutOptInInput
|
|
125795
127438
|
}
|
|
125796
127439
|
|
|
125797
127440
|
export type OptInUncheckedCreateWithoutTrolleyPaymentsInput = {
|
|
@@ -125821,6 +127464,7 @@ export namespace Prisma {
|
|
|
125821
127464
|
productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
|
|
125822
127465
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
125823
127466
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
|
|
127467
|
+
ShareASaleEvents?: ShareASaleEventUncheckedCreateNestedManyWithoutOptInInput
|
|
125824
127468
|
}
|
|
125825
127469
|
|
|
125826
127470
|
export type OptInCreateOrConnectWithoutTrolleyPaymentsInput = {
|
|
@@ -125865,6 +127509,7 @@ export namespace Prisma {
|
|
|
125865
127509
|
productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
|
|
125866
127510
|
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
|
|
125867
127511
|
ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
|
|
127512
|
+
ShareASaleEvents?: ShareASaleEventUpdateManyWithoutOptInNestedInput
|
|
125868
127513
|
}
|
|
125869
127514
|
|
|
125870
127515
|
export type OptInUncheckedUpdateWithoutTrolleyPaymentsInput = {
|
|
@@ -125894,6 +127539,7 @@ export namespace Prisma {
|
|
|
125894
127539
|
productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
|
|
125895
127540
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
125896
127541
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
127542
|
+
ShareASaleEvents?: ShareASaleEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
125897
127543
|
}
|
|
125898
127544
|
|
|
125899
127545
|
export type OptInCreateWithoutVariablesInput = {
|
|
@@ -125922,6 +127568,7 @@ export namespace Prisma {
|
|
|
125922
127568
|
productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
|
|
125923
127569
|
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
|
|
125924
127570
|
ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
|
|
127571
|
+
ShareASaleEvents?: ShareASaleEventCreateNestedManyWithoutOptInInput
|
|
125925
127572
|
}
|
|
125926
127573
|
|
|
125927
127574
|
export type OptInUncheckedCreateWithoutVariablesInput = {
|
|
@@ -125951,6 +127598,7 @@ export namespace Prisma {
|
|
|
125951
127598
|
productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
|
|
125952
127599
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
125953
127600
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
|
|
127601
|
+
ShareASaleEvents?: ShareASaleEventUncheckedCreateNestedManyWithoutOptInInput
|
|
125954
127602
|
}
|
|
125955
127603
|
|
|
125956
127604
|
export type OptInCreateOrConnectWithoutVariablesInput = {
|
|
@@ -126037,6 +127685,7 @@ export namespace Prisma {
|
|
|
126037
127685
|
productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
|
|
126038
127686
|
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
|
|
126039
127687
|
ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
|
|
127688
|
+
ShareASaleEvents?: ShareASaleEventUpdateManyWithoutOptInNestedInput
|
|
126040
127689
|
}
|
|
126041
127690
|
|
|
126042
127691
|
export type OptInUncheckedUpdateWithoutVariablesInput = {
|
|
@@ -126066,6 +127715,7 @@ export namespace Prisma {
|
|
|
126066
127715
|
productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
|
|
126067
127716
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
126068
127717
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
127718
|
+
ShareASaleEvents?: ShareASaleEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
126069
127719
|
}
|
|
126070
127720
|
|
|
126071
127721
|
export type VariableUpsertWithoutOptInVariablesInput = {
|
|
@@ -126140,6 +127790,8 @@ export namespace Prisma {
|
|
|
126140
127790
|
closedReason?: string | null
|
|
126141
127791
|
usercomLastSynced?: Date | string | null
|
|
126142
127792
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
127793
|
+
fullName?: string | null
|
|
127794
|
+
phoneNormalised?: string | null
|
|
126143
127795
|
referrer?: UserCreateNestedOneWithoutReferredUsersInput
|
|
126144
127796
|
referredUsers?: UserCreateNestedManyWithoutReferrerInput
|
|
126145
127797
|
logs?: LogCreateNestedManyWithoutUserInput
|
|
@@ -126182,6 +127834,8 @@ export namespace Prisma {
|
|
|
126182
127834
|
usercomLastSynced?: Date | string | null
|
|
126183
127835
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
126184
127836
|
referrerId?: number | null
|
|
127837
|
+
fullName?: string | null
|
|
127838
|
+
phoneNormalised?: string | null
|
|
126185
127839
|
referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
|
|
126186
127840
|
logs?: LogUncheckedCreateNestedManyWithoutUserInput
|
|
126187
127841
|
creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -126402,6 +128056,8 @@ export namespace Prisma {
|
|
|
126402
128056
|
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
126403
128057
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
126404
128058
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
128059
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
128060
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
126405
128061
|
referrer?: UserUpdateOneWithoutReferredUsersNestedInput
|
|
126406
128062
|
referredUsers?: UserUpdateManyWithoutReferrerNestedInput
|
|
126407
128063
|
logs?: LogUpdateManyWithoutUserNestedInput
|
|
@@ -126444,6 +128100,8 @@ export namespace Prisma {
|
|
|
126444
128100
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
126445
128101
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
126446
128102
|
referrerId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
128103
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
128104
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
126447
128105
|
referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
|
|
126448
128106
|
logs?: LogUncheckedUpdateManyWithoutUserNestedInput
|
|
126449
128107
|
creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -126945,6 +128603,8 @@ export namespace Prisma {
|
|
|
126945
128603
|
closedReason?: string | null
|
|
126946
128604
|
usercomLastSynced?: Date | string | null
|
|
126947
128605
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
128606
|
+
fullName?: string | null
|
|
128607
|
+
phoneNormalised?: string | null
|
|
126948
128608
|
referrer?: UserCreateNestedOneWithoutReferredUsersInput
|
|
126949
128609
|
referredUsers?: UserCreateNestedManyWithoutReferrerInput
|
|
126950
128610
|
logs?: LogCreateNestedManyWithoutUserInput
|
|
@@ -126987,6 +128647,8 @@ export namespace Prisma {
|
|
|
126987
128647
|
usercomLastSynced?: Date | string | null
|
|
126988
128648
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
126989
128649
|
referrerId?: number | null
|
|
128650
|
+
fullName?: string | null
|
|
128651
|
+
phoneNormalised?: string | null
|
|
126990
128652
|
referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
|
|
126991
128653
|
logs?: LogUncheckedCreateNestedManyWithoutUserInput
|
|
126992
128654
|
creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -127194,6 +128856,8 @@ export namespace Prisma {
|
|
|
127194
128856
|
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127195
128857
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
127196
128858
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
128859
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
128860
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127197
128861
|
referrer?: UserUpdateOneWithoutReferredUsersNestedInput
|
|
127198
128862
|
referredUsers?: UserUpdateManyWithoutReferrerNestedInput
|
|
127199
128863
|
logs?: LogUpdateManyWithoutUserNestedInput
|
|
@@ -127236,6 +128900,8 @@ export namespace Prisma {
|
|
|
127236
128900
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
127237
128901
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
127238
128902
|
referrerId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
128903
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
128904
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127239
128905
|
referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
|
|
127240
128906
|
logs?: LogUncheckedUpdateManyWithoutUserNestedInput
|
|
127241
128907
|
creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -127359,6 +129025,7 @@ export namespace Prisma {
|
|
|
127359
129025
|
affiliateClicks?: AffiliateClickCreateNestedManyWithoutOptinInput
|
|
127360
129026
|
productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
|
|
127361
129027
|
ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
|
|
129028
|
+
ShareASaleEvents?: ShareASaleEventCreateNestedManyWithoutOptInInput
|
|
127362
129029
|
}
|
|
127363
129030
|
|
|
127364
129031
|
export type OptInUncheckedCreateWithoutExternalAffiliateClickInput = {
|
|
@@ -127388,6 +129055,7 @@ export namespace Prisma {
|
|
|
127388
129055
|
affiliateClicks?: AffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
127389
129056
|
productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
|
|
127390
129057
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
|
|
129058
|
+
ShareASaleEvents?: ShareASaleEventUncheckedCreateNestedManyWithoutOptInInput
|
|
127391
129059
|
}
|
|
127392
129060
|
|
|
127393
129061
|
export type OptInCreateOrConnectWithoutExternalAffiliateClickInput = {
|
|
@@ -127578,6 +129246,7 @@ export namespace Prisma {
|
|
|
127578
129246
|
affiliateClicks?: AffiliateClickUpdateManyWithoutOptinNestedInput
|
|
127579
129247
|
productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
|
|
127580
129248
|
ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
|
|
129249
|
+
ShareASaleEvents?: ShareASaleEventUpdateManyWithoutOptInNestedInput
|
|
127581
129250
|
}
|
|
127582
129251
|
|
|
127583
129252
|
export type OptInUncheckedUpdateWithoutExternalAffiliateClickInput = {
|
|
@@ -127607,6 +129276,7 @@ export namespace Prisma {
|
|
|
127607
129276
|
affiliateClicks?: AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
127608
129277
|
productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
|
|
127609
129278
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
129279
|
+
ShareASaleEvents?: ShareASaleEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
127610
129280
|
}
|
|
127611
129281
|
|
|
127612
129282
|
export type CampaignUpsertWithoutExternalAffiliateClickInput = {
|
|
@@ -128053,6 +129723,8 @@ export namespace Prisma {
|
|
|
128053
129723
|
closedReason?: string | null
|
|
128054
129724
|
usercomLastSynced?: Date | string | null
|
|
128055
129725
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
129726
|
+
fullName?: string | null
|
|
129727
|
+
phoneNormalised?: string | null
|
|
128056
129728
|
referrer?: UserCreateNestedOneWithoutReferredUsersInput
|
|
128057
129729
|
referredUsers?: UserCreateNestedManyWithoutReferrerInput
|
|
128058
129730
|
logs?: LogCreateNestedManyWithoutUserInput
|
|
@@ -128095,6 +129767,8 @@ export namespace Prisma {
|
|
|
128095
129767
|
usercomLastSynced?: Date | string | null
|
|
128096
129768
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
128097
129769
|
referrerId?: number | null
|
|
129770
|
+
fullName?: string | null
|
|
129771
|
+
phoneNormalised?: string | null
|
|
128098
129772
|
referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
|
|
128099
129773
|
logs?: LogUncheckedCreateNestedManyWithoutUserInput
|
|
128100
129774
|
creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -128192,6 +129866,8 @@ export namespace Prisma {
|
|
|
128192
129866
|
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
128193
129867
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
128194
129868
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
129869
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
129870
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
128195
129871
|
referrer?: UserUpdateOneWithoutReferredUsersNestedInput
|
|
128196
129872
|
referredUsers?: UserUpdateManyWithoutReferrerNestedInput
|
|
128197
129873
|
logs?: LogUpdateManyWithoutUserNestedInput
|
|
@@ -128234,6 +129910,8 @@ export namespace Prisma {
|
|
|
128234
129910
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
128235
129911
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
128236
129912
|
referrerId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
129913
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
129914
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
128237
129915
|
referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
|
|
128238
129916
|
logs?: LogUncheckedUpdateManyWithoutUserNestedInput
|
|
128239
129917
|
creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -128313,6 +129991,7 @@ export namespace Prisma {
|
|
|
128313
129991
|
productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
|
|
128314
129992
|
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
|
|
128315
129993
|
ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
|
|
129994
|
+
ShareASaleEvents?: ShareASaleEventCreateNestedManyWithoutOptInInput
|
|
128316
129995
|
}
|
|
128317
129996
|
|
|
128318
129997
|
export type OptInUncheckedCreateWithoutAffiliateClicksInput = {
|
|
@@ -128342,6 +130021,7 @@ export namespace Prisma {
|
|
|
128342
130021
|
productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
|
|
128343
130022
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
128344
130023
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
|
|
130024
|
+
ShareASaleEvents?: ShareASaleEventUncheckedCreateNestedManyWithoutOptInInput
|
|
128345
130025
|
}
|
|
128346
130026
|
|
|
128347
130027
|
export type OptInCreateOrConnectWithoutAffiliateClicksInput = {
|
|
@@ -128439,6 +130119,7 @@ export namespace Prisma {
|
|
|
128439
130119
|
productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
|
|
128440
130120
|
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
|
|
128441
130121
|
ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
|
|
130122
|
+
ShareASaleEvents?: ShareASaleEventUpdateManyWithoutOptInNestedInput
|
|
128442
130123
|
}
|
|
128443
130124
|
|
|
128444
130125
|
export type OptInUncheckedUpdateWithoutAffiliateClicksInput = {
|
|
@@ -128468,6 +130149,7 @@ export namespace Prisma {
|
|
|
128468
130149
|
productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
|
|
128469
130150
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
128470
130151
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
130152
|
+
ShareASaleEvents?: ShareASaleEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
128471
130153
|
}
|
|
128472
130154
|
|
|
128473
130155
|
export type AffiliateLinkUpsertWithoutAffiliateClicksInput = {
|
|
@@ -129054,6 +130736,7 @@ export namespace Prisma {
|
|
|
129054
130736
|
productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
|
|
129055
130737
|
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
|
|
129056
130738
|
ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
|
|
130739
|
+
ShareASaleEvents?: ShareASaleEventCreateNestedManyWithoutOptInInput
|
|
129057
130740
|
}
|
|
129058
130741
|
|
|
129059
130742
|
export type OptInUncheckedCreateWithoutCampaignInvitesInput = {
|
|
@@ -129083,6 +130766,7 @@ export namespace Prisma {
|
|
|
129083
130766
|
productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
|
|
129084
130767
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
129085
130768
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
|
|
130769
|
+
ShareASaleEvents?: ShareASaleEventUncheckedCreateNestedManyWithoutOptInInput
|
|
129086
130770
|
}
|
|
129087
130771
|
|
|
129088
130772
|
export type OptInCreateOrConnectWithoutCampaignInvitesInput = {
|
|
@@ -129421,6 +131105,7 @@ export namespace Prisma {
|
|
|
129421
131105
|
productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
|
|
129422
131106
|
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
|
|
129423
131107
|
ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
|
|
131108
|
+
ShareASaleEvents?: ShareASaleEventUpdateManyWithoutOptInNestedInput
|
|
129424
131109
|
}
|
|
129425
131110
|
|
|
129426
131111
|
export type OptInUncheckedUpdateWithoutCampaignInvitesInput = {
|
|
@@ -129450,6 +131135,7 @@ export namespace Prisma {
|
|
|
129450
131135
|
productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
|
|
129451
131136
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
129452
131137
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
131138
|
+
ShareASaleEvents?: ShareASaleEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
129453
131139
|
}
|
|
129454
131140
|
|
|
129455
131141
|
export type CreatorListItemCreateWithoutCreatorListInput = {
|
|
@@ -130440,6 +132126,8 @@ export namespace Prisma {
|
|
|
130440
132126
|
closedReason?: string | null
|
|
130441
132127
|
usercomLastSynced?: Date | string | null
|
|
130442
132128
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
132129
|
+
fullName?: string | null
|
|
132130
|
+
phoneNormalised?: string | null
|
|
130443
132131
|
referrer?: UserCreateNestedOneWithoutReferredUsersInput
|
|
130444
132132
|
referredUsers?: UserCreateNestedManyWithoutReferrerInput
|
|
130445
132133
|
logs?: LogCreateNestedManyWithoutUserInput
|
|
@@ -130482,6 +132170,8 @@ export namespace Prisma {
|
|
|
130482
132170
|
usercomLastSynced?: Date | string | null
|
|
130483
132171
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
130484
132172
|
referrerId?: number | null
|
|
132173
|
+
fullName?: string | null
|
|
132174
|
+
phoneNormalised?: string | null
|
|
130485
132175
|
referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
|
|
130486
132176
|
logs?: LogUncheckedCreateNestedManyWithoutUserInput
|
|
130487
132177
|
creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -130569,6 +132259,8 @@ export namespace Prisma {
|
|
|
130569
132259
|
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
130570
132260
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
130571
132261
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
132262
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
132263
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
130572
132264
|
referrer?: UserUpdateOneWithoutReferredUsersNestedInput
|
|
130573
132265
|
referredUsers?: UserUpdateManyWithoutReferrerNestedInput
|
|
130574
132266
|
logs?: LogUpdateManyWithoutUserNestedInput
|
|
@@ -130611,6 +132303,8 @@ export namespace Prisma {
|
|
|
130611
132303
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
130612
132304
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
130613
132305
|
referrerId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
132306
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
132307
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
130614
132308
|
referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
|
|
130615
132309
|
logs?: LogUncheckedUpdateManyWithoutUserNestedInput
|
|
130616
132310
|
creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -131771,6 +133465,8 @@ export namespace Prisma {
|
|
|
131771
133465
|
closedReason?: string | null
|
|
131772
133466
|
usercomLastSynced?: Date | string | null
|
|
131773
133467
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
133468
|
+
fullName?: string | null
|
|
133469
|
+
phoneNormalised?: string | null
|
|
131774
133470
|
referrer?: UserCreateNestedOneWithoutReferredUsersInput
|
|
131775
133471
|
referredUsers?: UserCreateNestedManyWithoutReferrerInput
|
|
131776
133472
|
logs?: LogCreateNestedManyWithoutUserInput
|
|
@@ -131813,6 +133509,8 @@ export namespace Prisma {
|
|
|
131813
133509
|
usercomLastSynced?: Date | string | null
|
|
131814
133510
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
131815
133511
|
referrerId?: number | null
|
|
133512
|
+
fullName?: string | null
|
|
133513
|
+
phoneNormalised?: string | null
|
|
131816
133514
|
referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
|
|
131817
133515
|
logs?: LogUncheckedCreateNestedManyWithoutUserInput
|
|
131818
133516
|
creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -131868,6 +133566,8 @@ export namespace Prisma {
|
|
|
131868
133566
|
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
131869
133567
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
131870
133568
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
133569
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
133570
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
131871
133571
|
referrer?: UserUpdateOneWithoutReferredUsersNestedInput
|
|
131872
133572
|
referredUsers?: UserUpdateManyWithoutReferrerNestedInput
|
|
131873
133573
|
logs?: LogUpdateManyWithoutUserNestedInput
|
|
@@ -131910,6 +133610,8 @@ export namespace Prisma {
|
|
|
131910
133610
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
131911
133611
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
131912
133612
|
referrerId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
133613
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
133614
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
131913
133615
|
referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
|
|
131914
133616
|
logs?: LogUncheckedUpdateManyWithoutUserNestedInput
|
|
131915
133617
|
creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -131949,6 +133651,8 @@ export namespace Prisma {
|
|
|
131949
133651
|
closedReason?: string | null
|
|
131950
133652
|
usercomLastSynced?: Date | string | null
|
|
131951
133653
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
133654
|
+
fullName?: string | null
|
|
133655
|
+
phoneNormalised?: string | null
|
|
131952
133656
|
referrer?: UserCreateNestedOneWithoutReferredUsersInput
|
|
131953
133657
|
referredUsers?: UserCreateNestedManyWithoutReferrerInput
|
|
131954
133658
|
logs?: LogCreateNestedManyWithoutUserInput
|
|
@@ -131991,6 +133695,8 @@ export namespace Prisma {
|
|
|
131991
133695
|
usercomLastSynced?: Date | string | null
|
|
131992
133696
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
131993
133697
|
referrerId?: number | null
|
|
133698
|
+
fullName?: string | null
|
|
133699
|
+
phoneNormalised?: string | null
|
|
131994
133700
|
referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
|
|
131995
133701
|
logs?: LogUncheckedCreateNestedManyWithoutUserInput
|
|
131996
133702
|
creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -132125,6 +133831,7 @@ export namespace Prisma {
|
|
|
132125
133831
|
affiliateClicks?: AffiliateClickCreateNestedManyWithoutOptinInput
|
|
132126
133832
|
productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
|
|
132127
133833
|
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
|
|
133834
|
+
ShareASaleEvents?: ShareASaleEventCreateNestedManyWithoutOptInInput
|
|
132128
133835
|
}
|
|
132129
133836
|
|
|
132130
133837
|
export type OptInUncheckedCreateWithoutImpactRadiusEventInput = {
|
|
@@ -132154,6 +133861,7 @@ export namespace Prisma {
|
|
|
132154
133861
|
affiliateClicks?: AffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
132155
133862
|
productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
|
|
132156
133863
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
133864
|
+
ShareASaleEvents?: ShareASaleEventUncheckedCreateNestedManyWithoutOptInInput
|
|
132157
133865
|
}
|
|
132158
133866
|
|
|
132159
133867
|
export type OptInCreateOrConnectWithoutImpactRadiusEventInput = {
|
|
@@ -132190,6 +133898,8 @@ export namespace Prisma {
|
|
|
132190
133898
|
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
132191
133899
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
132192
133900
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
133901
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
133902
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
132193
133903
|
referrer?: UserUpdateOneWithoutReferredUsersNestedInput
|
|
132194
133904
|
referredUsers?: UserUpdateManyWithoutReferrerNestedInput
|
|
132195
133905
|
logs?: LogUpdateManyWithoutUserNestedInput
|
|
@@ -132232,6 +133942,8 @@ export namespace Prisma {
|
|
|
132232
133942
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
132233
133943
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
132234
133944
|
referrerId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
133945
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
133946
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
132235
133947
|
referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
|
|
132236
133948
|
logs?: LogUncheckedUpdateManyWithoutUserNestedInput
|
|
132237
133949
|
creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -132378,6 +134090,7 @@ export namespace Prisma {
|
|
|
132378
134090
|
affiliateClicks?: AffiliateClickUpdateManyWithoutOptinNestedInput
|
|
132379
134091
|
productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
|
|
132380
134092
|
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
|
|
134093
|
+
ShareASaleEvents?: ShareASaleEventUpdateManyWithoutOptInNestedInput
|
|
132381
134094
|
}
|
|
132382
134095
|
|
|
132383
134096
|
export type OptInUncheckedUpdateWithoutImpactRadiusEventInput = {
|
|
@@ -132407,6 +134120,141 @@ export namespace Prisma {
|
|
|
132407
134120
|
affiliateClicks?: AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
132408
134121
|
productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
|
|
132409
134122
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
134123
|
+
ShareASaleEvents?: ShareASaleEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
134124
|
+
}
|
|
134125
|
+
|
|
134126
|
+
export type OptInCreateWithoutShareASaleEventsInput = {
|
|
134127
|
+
status?: string
|
|
134128
|
+
created?: Date | string
|
|
134129
|
+
activated?: Date | string | null
|
|
134130
|
+
completed?: Date | string | null
|
|
134131
|
+
cancelled?: Date | string | null
|
|
134132
|
+
cancelledData?: JsonNullValueInput | InputJsonValue
|
|
134133
|
+
cancelRequested?: Date | string | null
|
|
134134
|
+
reinvited?: Date | string | null
|
|
134135
|
+
seen?: boolean
|
|
134136
|
+
instructions?: string | null
|
|
134137
|
+
paymentAmount?: number | null
|
|
134138
|
+
paymentStatus?: string
|
|
134139
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
134140
|
+
favoritedDate?: Date | string | null
|
|
134141
|
+
user: UserCreateNestedOneWithoutOptInsInput
|
|
134142
|
+
campaign: CampaignCreateNestedOneWithoutOptInsInput
|
|
134143
|
+
currentStep?: CampaignStepCreateNestedOneWithoutCurrentOptInsInput
|
|
134144
|
+
variables?: OptInVariableCreateNestedManyWithoutOptInInput
|
|
134145
|
+
optInSteps?: OptInStepCreateNestedManyWithoutOptInInput
|
|
134146
|
+
chat?: ChatCreateNestedOneWithoutOptInInput
|
|
134147
|
+
campaignInvites?: CampaignInviteCreateNestedManyWithoutOptInInput
|
|
134148
|
+
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
|
|
134149
|
+
affiliateClicks?: AffiliateClickCreateNestedManyWithoutOptinInput
|
|
134150
|
+
productListItems?: OptinToProductListItemCreateNestedManyWithoutOptInInput
|
|
134151
|
+
ExternalAffiliateClick?: ExternalAffiliateClickCreateNestedManyWithoutOptinInput
|
|
134152
|
+
ImpactRadiusEvent?: ImpactRadiusEventCreateNestedManyWithoutOptInInput
|
|
134153
|
+
}
|
|
134154
|
+
|
|
134155
|
+
export type OptInUncheckedCreateWithoutShareASaleEventsInput = {
|
|
134156
|
+
id?: number
|
|
134157
|
+
status?: string
|
|
134158
|
+
created?: Date | string
|
|
134159
|
+
activated?: Date | string | null
|
|
134160
|
+
completed?: Date | string | null
|
|
134161
|
+
cancelled?: Date | string | null
|
|
134162
|
+
cancelledData?: JsonNullValueInput | InputJsonValue
|
|
134163
|
+
cancelRequested?: Date | string | null
|
|
134164
|
+
reinvited?: Date | string | null
|
|
134165
|
+
seen?: boolean
|
|
134166
|
+
instructions?: string | null
|
|
134167
|
+
paymentAmount?: number | null
|
|
134168
|
+
paymentStatus?: string
|
|
134169
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
134170
|
+
favoritedDate?: Date | string | null
|
|
134171
|
+
userId: number
|
|
134172
|
+
campaignId: number
|
|
134173
|
+
currentStepId?: number | null
|
|
134174
|
+
variables?: OptInVariableUncheckedCreateNestedManyWithoutOptInInput
|
|
134175
|
+
optInSteps?: OptInStepUncheckedCreateNestedManyWithoutOptInInput
|
|
134176
|
+
chat?: ChatUncheckedCreateNestedOneWithoutOptInInput
|
|
134177
|
+
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutOptInInput
|
|
134178
|
+
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
|
|
134179
|
+
affiliateClicks?: AffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
134180
|
+
productListItems?: OptinToProductListItemUncheckedCreateNestedManyWithoutOptInInput
|
|
134181
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedCreateNestedManyWithoutOptinInput
|
|
134182
|
+
ImpactRadiusEvent?: ImpactRadiusEventUncheckedCreateNestedManyWithoutOptInInput
|
|
134183
|
+
}
|
|
134184
|
+
|
|
134185
|
+
export type OptInCreateOrConnectWithoutShareASaleEventsInput = {
|
|
134186
|
+
where: OptInWhereUniqueInput
|
|
134187
|
+
create: XOR<OptInCreateWithoutShareASaleEventsInput, OptInUncheckedCreateWithoutShareASaleEventsInput>
|
|
134188
|
+
}
|
|
134189
|
+
|
|
134190
|
+
export type OptInUpsertWithoutShareASaleEventsInput = {
|
|
134191
|
+
update: XOR<OptInUpdateWithoutShareASaleEventsInput, OptInUncheckedUpdateWithoutShareASaleEventsInput>
|
|
134192
|
+
create: XOR<OptInCreateWithoutShareASaleEventsInput, OptInUncheckedCreateWithoutShareASaleEventsInput>
|
|
134193
|
+
where?: OptInWhereInput
|
|
134194
|
+
}
|
|
134195
|
+
|
|
134196
|
+
export type OptInUpdateToOneWithWhereWithoutShareASaleEventsInput = {
|
|
134197
|
+
where?: OptInWhereInput
|
|
134198
|
+
data: XOR<OptInUpdateWithoutShareASaleEventsInput, OptInUncheckedUpdateWithoutShareASaleEventsInput>
|
|
134199
|
+
}
|
|
134200
|
+
|
|
134201
|
+
export type OptInUpdateWithoutShareASaleEventsInput = {
|
|
134202
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
134203
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
134204
|
+
activated?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
134205
|
+
completed?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
134206
|
+
cancelled?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
134207
|
+
cancelledData?: JsonNullValueInput | InputJsonValue
|
|
134208
|
+
cancelRequested?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
134209
|
+
reinvited?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
134210
|
+
seen?: BoolFieldUpdateOperationsInput | boolean
|
|
134211
|
+
instructions?: NullableStringFieldUpdateOperationsInput | string | null
|
|
134212
|
+
paymentAmount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
134213
|
+
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
134214
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
134215
|
+
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
134216
|
+
user?: UserUpdateOneRequiredWithoutOptInsNestedInput
|
|
134217
|
+
campaign?: CampaignUpdateOneRequiredWithoutOptInsNestedInput
|
|
134218
|
+
currentStep?: CampaignStepUpdateOneWithoutCurrentOptInsNestedInput
|
|
134219
|
+
variables?: OptInVariableUpdateManyWithoutOptInNestedInput
|
|
134220
|
+
optInSteps?: OptInStepUpdateManyWithoutOptInNestedInput
|
|
134221
|
+
chat?: ChatUpdateOneWithoutOptInNestedInput
|
|
134222
|
+
campaignInvites?: CampaignInviteUpdateManyWithoutOptInNestedInput
|
|
134223
|
+
trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
|
|
134224
|
+
affiliateClicks?: AffiliateClickUpdateManyWithoutOptinNestedInput
|
|
134225
|
+
productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
|
|
134226
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
|
|
134227
|
+
ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
|
|
134228
|
+
}
|
|
134229
|
+
|
|
134230
|
+
export type OptInUncheckedUpdateWithoutShareASaleEventsInput = {
|
|
134231
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
134232
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
134233
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
134234
|
+
activated?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
134235
|
+
completed?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
134236
|
+
cancelled?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
134237
|
+
cancelledData?: JsonNullValueInput | InputJsonValue
|
|
134238
|
+
cancelRequested?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
134239
|
+
reinvited?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
134240
|
+
seen?: BoolFieldUpdateOperationsInput | boolean
|
|
134241
|
+
instructions?: NullableStringFieldUpdateOperationsInput | string | null
|
|
134242
|
+
paymentAmount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
134243
|
+
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
134244
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
134245
|
+
favoritedDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
134246
|
+
userId?: IntFieldUpdateOperationsInput | number
|
|
134247
|
+
campaignId?: IntFieldUpdateOperationsInput | number
|
|
134248
|
+
currentStepId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
134249
|
+
variables?: OptInVariableUncheckedUpdateManyWithoutOptInNestedInput
|
|
134250
|
+
optInSteps?: OptInStepUncheckedUpdateManyWithoutOptInNestedInput
|
|
134251
|
+
chat?: ChatUncheckedUpdateOneWithoutOptInNestedInput
|
|
134252
|
+
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutOptInNestedInput
|
|
134253
|
+
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
|
|
134254
|
+
affiliateClicks?: AffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
134255
|
+
productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
|
|
134256
|
+
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
134257
|
+
ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
132410
134258
|
}
|
|
132411
134259
|
|
|
132412
134260
|
export type BrandCreateWithoutCreatorsearchfilterInput = {
|
|
@@ -134709,6 +136557,8 @@ export namespace Prisma {
|
|
|
134709
136557
|
closedReason?: string | null
|
|
134710
136558
|
usercomLastSynced?: Date | string | null
|
|
134711
136559
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
136560
|
+
fullName?: string | null
|
|
136561
|
+
phoneNormalised?: string | null
|
|
134712
136562
|
}
|
|
134713
136563
|
|
|
134714
136564
|
export type LogCreateManyUserInput = {
|
|
@@ -134892,6 +136742,8 @@ export namespace Prisma {
|
|
|
134892
136742
|
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
134893
136743
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
134894
136744
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
136745
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136746
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
134895
136747
|
referredUsers?: UserUpdateManyWithoutReferrerNestedInput
|
|
134896
136748
|
logs?: LogUpdateManyWithoutUserNestedInput
|
|
134897
136749
|
creatorProfile?: CreatorProfileUpdateOneWithoutUserNestedInput
|
|
@@ -134933,6 +136785,8 @@ export namespace Prisma {
|
|
|
134933
136785
|
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
134934
136786
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
134935
136787
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
136788
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136789
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
134936
136790
|
referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
|
|
134937
136791
|
logs?: LogUncheckedUpdateManyWithoutUserNestedInput
|
|
134938
136792
|
creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -134974,6 +136828,8 @@ export namespace Prisma {
|
|
|
134974
136828
|
closedReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
134975
136829
|
usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
134976
136830
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
136831
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136832
|
+
phoneNormalised?: NullableStringFieldUpdateOperationsInput | string | null
|
|
134977
136833
|
}
|
|
134978
136834
|
|
|
134979
136835
|
export type LogUpdateWithoutUserInput = {
|
|
@@ -135033,6 +136889,7 @@ export namespace Prisma {
|
|
|
135033
136889
|
productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
|
|
135034
136890
|
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
|
|
135035
136891
|
ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
|
|
136892
|
+
ShareASaleEvents?: ShareASaleEventUpdateManyWithoutOptInNestedInput
|
|
135036
136893
|
}
|
|
135037
136894
|
|
|
135038
136895
|
export type OptInUncheckedUpdateWithoutUserInput = {
|
|
@@ -135062,6 +136919,7 @@ export namespace Prisma {
|
|
|
135062
136919
|
productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
|
|
135063
136920
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
135064
136921
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
136922
|
+
ShareASaleEvents?: ShareASaleEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
135065
136923
|
}
|
|
135066
136924
|
|
|
135067
136925
|
export type OptInUncheckedUpdateManyWithoutUserInput = {
|
|
@@ -136857,6 +138715,7 @@ export namespace Prisma {
|
|
|
136857
138715
|
productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
|
|
136858
138716
|
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
|
|
136859
138717
|
ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
|
|
138718
|
+
ShareASaleEvents?: ShareASaleEventUpdateManyWithoutOptInNestedInput
|
|
136860
138719
|
}
|
|
136861
138720
|
|
|
136862
138721
|
export type OptInUncheckedUpdateWithoutCampaignInput = {
|
|
@@ -136886,6 +138745,7 @@ export namespace Prisma {
|
|
|
136886
138745
|
productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
|
|
136887
138746
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
136888
138747
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
138748
|
+
ShareASaleEvents?: ShareASaleEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
136889
138749
|
}
|
|
136890
138750
|
|
|
136891
138751
|
export type OptInUncheckedUpdateManyWithoutCampaignInput = {
|
|
@@ -137541,6 +139401,7 @@ export namespace Prisma {
|
|
|
137541
139401
|
productListItems?: OptinToProductListItemUpdateManyWithoutOptInNestedInput
|
|
137542
139402
|
ExternalAffiliateClick?: ExternalAffiliateClickUpdateManyWithoutOptinNestedInput
|
|
137543
139403
|
ImpactRadiusEvent?: ImpactRadiusEventUpdateManyWithoutOptInNestedInput
|
|
139404
|
+
ShareASaleEvents?: ShareASaleEventUpdateManyWithoutOptInNestedInput
|
|
137544
139405
|
}
|
|
137545
139406
|
|
|
137546
139407
|
export type OptInUncheckedUpdateWithoutCurrentStepInput = {
|
|
@@ -137570,6 +139431,7 @@ export namespace Prisma {
|
|
|
137570
139431
|
productListItems?: OptinToProductListItemUncheckedUpdateManyWithoutOptInNestedInput
|
|
137571
139432
|
ExternalAffiliateClick?: ExternalAffiliateClickUncheckedUpdateManyWithoutOptinNestedInput
|
|
137572
139433
|
ImpactRadiusEvent?: ImpactRadiusEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
139434
|
+
ShareASaleEvents?: ShareASaleEventUncheckedUpdateManyWithoutOptInNestedInput
|
|
137573
139435
|
}
|
|
137574
139436
|
|
|
137575
139437
|
export type OptInUncheckedUpdateManyWithoutCurrentStepInput = {
|
|
@@ -137733,6 +139595,14 @@ export namespace Prisma {
|
|
|
137733
139595
|
brandId?: number | null
|
|
137734
139596
|
}
|
|
137735
139597
|
|
|
139598
|
+
export type ShareASaleEventCreateManyOptInInput = {
|
|
139599
|
+
id?: number
|
|
139600
|
+
created?: Date | string
|
|
139601
|
+
saleAmount?: number | null
|
|
139602
|
+
commission?: number | null
|
|
139603
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
139604
|
+
}
|
|
139605
|
+
|
|
137736
139606
|
export type OptInVariableUpdateWithoutOptInInput = {
|
|
137737
139607
|
variable?: VariableUpdateOneRequiredWithoutOptInVariablesNestedInput
|
|
137738
139608
|
selectedOption?: VariableOptionUpdateOneRequiredWithoutOptInVariablesNestedInput
|
|
@@ -137938,6 +139808,29 @@ export namespace Prisma {
|
|
|
137938
139808
|
brandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
137939
139809
|
}
|
|
137940
139810
|
|
|
139811
|
+
export type ShareASaleEventUpdateWithoutOptInInput = {
|
|
139812
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
139813
|
+
saleAmount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
139814
|
+
commission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
139815
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
139816
|
+
}
|
|
139817
|
+
|
|
139818
|
+
export type ShareASaleEventUncheckedUpdateWithoutOptInInput = {
|
|
139819
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
139820
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
139821
|
+
saleAmount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
139822
|
+
commission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
139823
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
139824
|
+
}
|
|
139825
|
+
|
|
139826
|
+
export type ShareASaleEventUncheckedUpdateManyWithoutOptInInput = {
|
|
139827
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
139828
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
139829
|
+
saleAmount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
139830
|
+
commission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
139831
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
139832
|
+
}
|
|
139833
|
+
|
|
137941
139834
|
export type ListToSocialPostCreateManySocialPostInput = {
|
|
137942
139835
|
id?: number
|
|
137943
139836
|
listId: number
|
|
@@ -139052,6 +140945,10 @@ export namespace Prisma {
|
|
|
139052
140945
|
* @deprecated Use ImpactRadiusEventDefaultArgs instead
|
|
139053
140946
|
*/
|
|
139054
140947
|
export type ImpactRadiusEventArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = ImpactRadiusEventDefaultArgs<ExtArgs>
|
|
140948
|
+
/**
|
|
140949
|
+
* @deprecated Use ShareASaleEventDefaultArgs instead
|
|
140950
|
+
*/
|
|
140951
|
+
export type ShareASaleEventArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = ShareASaleEventDefaultArgs<ExtArgs>
|
|
139055
140952
|
/**
|
|
139056
140953
|
* @deprecated Use CreatorSearchFilterDefaultArgs instead
|
|
139057
140954
|
*/
|