@creator.co/creatorco-prisma-client 1.0.16 → 1.0.18
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/default.d.ts +1 -0
- package/default.js +1 -0
- package/edge.d.ts +1 -1
- package/edge.js +39 -11
- package/index-browser.js +46 -19
- package/index.d.ts +2028 -289
- package/index.js +40 -12
- package/libquery_engine-darwin-arm64.dylib.node +0 -0
- package/libquery_engine-darwin.dylib.node +0 -0
- package/libquery_engine-debian-openssl-3.0.x.so.node +0 -0
- package/libquery_engine-linux-arm64-openssl-1.0.x.so.node +0 -0
- package/libquery_engine-linux-arm64-openssl-3.0.x.so.node +0 -0
- package/libquery_engine-linux-musl-arm64-openssl-3.0.x.so.node +0 -0
- package/package.json +67 -2
- package/query_engine-windows.dll.node +0 -0
- package/runtime/edge-esm.js +27 -74
- package/runtime/edge.js +27 -74
- package/runtime/index-browser.js +1 -1
- package/runtime/library.d.ts +207 -152
- package/runtime/library.js +59 -57
- package/runtime/wasm.js +94 -0
- package/schema.prisma +52 -2
- package/wasm.d.ts +1 -0
- package/wasm.js +1287 -0
package/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Client
|
|
4
4
|
**/
|
|
5
5
|
|
|
6
|
-
import * as runtime from './runtime/library';
|
|
6
|
+
import * as runtime from './runtime/library.js';
|
|
7
7
|
import $Types = runtime.Types // general types
|
|
8
8
|
import $Public = runtime.Types.Public
|
|
9
9
|
import $Utils = runtime.Types.Utils
|
|
@@ -163,6 +163,11 @@ export type Category = $Result.DefaultSelection<Prisma.$CategoryPayload>
|
|
|
163
163
|
*
|
|
164
164
|
*/
|
|
165
165
|
export type OptIn = $Result.DefaultSelection<Prisma.$OptInPayload>
|
|
166
|
+
/**
|
|
167
|
+
* Model TrolleyPayment
|
|
168
|
+
*
|
|
169
|
+
*/
|
|
170
|
+
export type TrolleyPayment = $Result.DefaultSelection<Prisma.$TrolleyPaymentPayload>
|
|
166
171
|
/**
|
|
167
172
|
* Model OptInVariable
|
|
168
173
|
*
|
|
@@ -314,6 +319,39 @@ export type SequenceInboundEmail = $Result.DefaultSelection<Prisma.$SequenceInbo
|
|
|
314
319
|
*/
|
|
315
320
|
export type SequenceImapCheckpoint = $Result.DefaultSelection<Prisma.$SequenceImapCheckpointPayload>
|
|
316
321
|
|
|
322
|
+
/**
|
|
323
|
+
* Enums
|
|
324
|
+
*/
|
|
325
|
+
export namespace $Enums {
|
|
326
|
+
export const trolleyPaymentType: {
|
|
327
|
+
optIn: 'optIn',
|
|
328
|
+
tip: 'tip',
|
|
329
|
+
affiliate: 'affiliate'
|
|
330
|
+
};
|
|
331
|
+
|
|
332
|
+
export type trolleyPaymentType = (typeof trolleyPaymentType)[keyof typeof trolleyPaymentType]
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
export const trolleyPaymentStatus: {
|
|
336
|
+
pending: 'pending',
|
|
337
|
+
processing: 'processing',
|
|
338
|
+
processed: 'processed',
|
|
339
|
+
failed: 'failed',
|
|
340
|
+
returned: 'returned'
|
|
341
|
+
};
|
|
342
|
+
|
|
343
|
+
export type trolleyPaymentStatus = (typeof trolleyPaymentStatus)[keyof typeof trolleyPaymentStatus]
|
|
344
|
+
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
export type trolleyPaymentType = $Enums.trolleyPaymentType
|
|
348
|
+
|
|
349
|
+
export const trolleyPaymentType: typeof $Enums.trolleyPaymentType
|
|
350
|
+
|
|
351
|
+
export type trolleyPaymentStatus = $Enums.trolleyPaymentStatus
|
|
352
|
+
|
|
353
|
+
export const trolleyPaymentStatus: typeof $Enums.trolleyPaymentStatus
|
|
354
|
+
|
|
317
355
|
/**
|
|
318
356
|
* ## Prisma Client ʲˢ
|
|
319
357
|
*
|
|
@@ -736,6 +774,16 @@ export class PrismaClient<
|
|
|
736
774
|
*/
|
|
737
775
|
get optIn(): Prisma.OptInDelegate<ExtArgs>;
|
|
738
776
|
|
|
777
|
+
/**
|
|
778
|
+
* `prisma.trolleyPayment`: Exposes CRUD operations for the **TrolleyPayment** model.
|
|
779
|
+
* Example usage:
|
|
780
|
+
* ```ts
|
|
781
|
+
* // Fetch zero or more TrolleyPayments
|
|
782
|
+
* const trolleyPayments = await prisma.trolleyPayment.findMany()
|
|
783
|
+
* ```
|
|
784
|
+
*/
|
|
785
|
+
get trolleyPayment(): Prisma.TrolleyPaymentDelegate<ExtArgs>;
|
|
786
|
+
|
|
739
787
|
/**
|
|
740
788
|
* `prisma.optInVariable`: Exposes CRUD operations for the **OptInVariable** model.
|
|
741
789
|
* Example usage:
|
|
@@ -1092,8 +1140,8 @@ export namespace Prisma {
|
|
|
1092
1140
|
export import Exact = $Public.Exact
|
|
1093
1141
|
|
|
1094
1142
|
/**
|
|
1095
|
-
* Prisma Client JS version: 5.
|
|
1096
|
-
* Query Engine version:
|
|
1143
|
+
* Prisma Client JS version: 5.9.1
|
|
1144
|
+
* Query Engine version: 23fdc5965b1e05fc54e5f26ed3de66776b93de64
|
|
1097
1145
|
*/
|
|
1098
1146
|
export type PrismaVersion = {
|
|
1099
1147
|
client: string
|
|
@@ -1535,6 +1583,7 @@ export namespace Prisma {
|
|
|
1535
1583
|
OptInStep: 'OptInStep',
|
|
1536
1584
|
Category: 'Category',
|
|
1537
1585
|
OptIn: 'OptIn',
|
|
1586
|
+
TrolleyPayment: 'TrolleyPayment',
|
|
1538
1587
|
OptInVariable: 'OptInVariable',
|
|
1539
1588
|
SocialPost: 'SocialPost',
|
|
1540
1589
|
SocialPostTag: 'SocialPostTag',
|
|
@@ -1581,7 +1630,7 @@ export namespace Prisma {
|
|
|
1581
1630
|
|
|
1582
1631
|
export type TypeMap<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
1583
1632
|
meta: {
|
|
1584
|
-
modelProps: 'user' | 'log' | 'creatorProfile' | 'instagramProfile' | 'tiktokProfile' | 'youtubeProfile' | 'twitchProfile' | 'facebookProfile' | 'twitterProfile' | 'brandUserProfile' | 'brand' | 'searchContacts' | 'reportCredits' | 'brandToImage' | 'brandToCategory' | 'creatorToCategory' | 'chat' | 'message' | 'campaign' | 'campaignPin' | 'campaignToImage' | 'campaignToCategory' | 'campaignToCountry' | 'variable' | 'variableOption' | 'step' | 'campaignStep' | 'optInStep' | 'category' | 'optIn' | 'optInVariable' | 'socialPost' | 'socialPostTag' | 'image' | 'brandImage' | 'country' | 'state' | 'paymentTransaction' | 'brandAffiliateLink' | 'affiliateLink' | 'affiliateClick' | 'affiliateEvent' | 'savedFile' | 'campaignInvite' | 'creatorList' | 'creatorListItem' | 'socialProfile' | 'messageTemplate' | 'emailTemplate' | 'socialListeningList' | 'listToSocialPost' | 'optInView' | 'rakutenActivity' | 'impactRadiusEvent' | 'creatorSearchFilter' | 'sequence' | 'sequenceStep' | 'sequenceOutboundEmail' | 'sequenceInboundEmail' | 'sequenceImapCheckpoint'
|
|
1633
|
+
modelProps: 'user' | 'log' | 'creatorProfile' | 'instagramProfile' | 'tiktokProfile' | 'youtubeProfile' | 'twitchProfile' | 'facebookProfile' | 'twitterProfile' | 'brandUserProfile' | 'brand' | 'searchContacts' | 'reportCredits' | 'brandToImage' | 'brandToCategory' | 'creatorToCategory' | 'chat' | 'message' | 'campaign' | 'campaignPin' | 'campaignToImage' | 'campaignToCategory' | 'campaignToCountry' | 'variable' | 'variableOption' | 'step' | 'campaignStep' | 'optInStep' | 'category' | 'optIn' | 'trolleyPayment' | 'optInVariable' | 'socialPost' | 'socialPostTag' | 'image' | 'brandImage' | 'country' | 'state' | 'paymentTransaction' | 'brandAffiliateLink' | 'affiliateLink' | 'affiliateClick' | 'affiliateEvent' | 'savedFile' | 'campaignInvite' | 'creatorList' | 'creatorListItem' | 'socialProfile' | 'messageTemplate' | 'emailTemplate' | 'socialListeningList' | 'listToSocialPost' | 'optInView' | 'rakutenActivity' | 'impactRadiusEvent' | 'creatorSearchFilter' | 'sequence' | 'sequenceStep' | 'sequenceOutboundEmail' | 'sequenceInboundEmail' | 'sequenceImapCheckpoint'
|
|
1585
1634
|
txIsolationLevel: Prisma.TransactionIsolationLevel
|
|
1586
1635
|
},
|
|
1587
1636
|
model: {
|
|
@@ -3565,6 +3614,72 @@ export namespace Prisma {
|
|
|
3565
3614
|
}
|
|
3566
3615
|
}
|
|
3567
3616
|
}
|
|
3617
|
+
TrolleyPayment: {
|
|
3618
|
+
payload: Prisma.$TrolleyPaymentPayload<ExtArgs>
|
|
3619
|
+
fields: Prisma.TrolleyPaymentFieldRefs
|
|
3620
|
+
operations: {
|
|
3621
|
+
findUnique: {
|
|
3622
|
+
args: Prisma.TrolleyPaymentFindUniqueArgs<ExtArgs>,
|
|
3623
|
+
result: $Utils.PayloadToResult<Prisma.$TrolleyPaymentPayload> | null
|
|
3624
|
+
}
|
|
3625
|
+
findUniqueOrThrow: {
|
|
3626
|
+
args: Prisma.TrolleyPaymentFindUniqueOrThrowArgs<ExtArgs>,
|
|
3627
|
+
result: $Utils.PayloadToResult<Prisma.$TrolleyPaymentPayload>
|
|
3628
|
+
}
|
|
3629
|
+
findFirst: {
|
|
3630
|
+
args: Prisma.TrolleyPaymentFindFirstArgs<ExtArgs>,
|
|
3631
|
+
result: $Utils.PayloadToResult<Prisma.$TrolleyPaymentPayload> | null
|
|
3632
|
+
}
|
|
3633
|
+
findFirstOrThrow: {
|
|
3634
|
+
args: Prisma.TrolleyPaymentFindFirstOrThrowArgs<ExtArgs>,
|
|
3635
|
+
result: $Utils.PayloadToResult<Prisma.$TrolleyPaymentPayload>
|
|
3636
|
+
}
|
|
3637
|
+
findMany: {
|
|
3638
|
+
args: Prisma.TrolleyPaymentFindManyArgs<ExtArgs>,
|
|
3639
|
+
result: $Utils.PayloadToResult<Prisma.$TrolleyPaymentPayload>[]
|
|
3640
|
+
}
|
|
3641
|
+
create: {
|
|
3642
|
+
args: Prisma.TrolleyPaymentCreateArgs<ExtArgs>,
|
|
3643
|
+
result: $Utils.PayloadToResult<Prisma.$TrolleyPaymentPayload>
|
|
3644
|
+
}
|
|
3645
|
+
createMany: {
|
|
3646
|
+
args: Prisma.TrolleyPaymentCreateManyArgs<ExtArgs>,
|
|
3647
|
+
result: Prisma.BatchPayload
|
|
3648
|
+
}
|
|
3649
|
+
delete: {
|
|
3650
|
+
args: Prisma.TrolleyPaymentDeleteArgs<ExtArgs>,
|
|
3651
|
+
result: $Utils.PayloadToResult<Prisma.$TrolleyPaymentPayload>
|
|
3652
|
+
}
|
|
3653
|
+
update: {
|
|
3654
|
+
args: Prisma.TrolleyPaymentUpdateArgs<ExtArgs>,
|
|
3655
|
+
result: $Utils.PayloadToResult<Prisma.$TrolleyPaymentPayload>
|
|
3656
|
+
}
|
|
3657
|
+
deleteMany: {
|
|
3658
|
+
args: Prisma.TrolleyPaymentDeleteManyArgs<ExtArgs>,
|
|
3659
|
+
result: Prisma.BatchPayload
|
|
3660
|
+
}
|
|
3661
|
+
updateMany: {
|
|
3662
|
+
args: Prisma.TrolleyPaymentUpdateManyArgs<ExtArgs>,
|
|
3663
|
+
result: Prisma.BatchPayload
|
|
3664
|
+
}
|
|
3665
|
+
upsert: {
|
|
3666
|
+
args: Prisma.TrolleyPaymentUpsertArgs<ExtArgs>,
|
|
3667
|
+
result: $Utils.PayloadToResult<Prisma.$TrolleyPaymentPayload>
|
|
3668
|
+
}
|
|
3669
|
+
aggregate: {
|
|
3670
|
+
args: Prisma.TrolleyPaymentAggregateArgs<ExtArgs>,
|
|
3671
|
+
result: $Utils.Optional<AggregateTrolleyPayment>
|
|
3672
|
+
}
|
|
3673
|
+
groupBy: {
|
|
3674
|
+
args: Prisma.TrolleyPaymentGroupByArgs<ExtArgs>,
|
|
3675
|
+
result: $Utils.Optional<TrolleyPaymentGroupByOutputType>[]
|
|
3676
|
+
}
|
|
3677
|
+
count: {
|
|
3678
|
+
args: Prisma.TrolleyPaymentCountArgs<ExtArgs>,
|
|
3679
|
+
result: $Utils.Optional<TrolleyPaymentCountAggregateOutputType> | number
|
|
3680
|
+
}
|
|
3681
|
+
}
|
|
3682
|
+
}
|
|
3568
3683
|
OptInVariable: {
|
|
3569
3684
|
payload: Prisma.$OptInVariablePayload<ExtArgs>
|
|
3570
3685
|
fields: Prisma.OptInVariableFieldRefs
|
|
@@ -6545,12 +6660,14 @@ export namespace Prisma {
|
|
|
6545
6660
|
variables: number
|
|
6546
6661
|
optInSteps: number
|
|
6547
6662
|
campaignInvites: number
|
|
6663
|
+
trolleyPayments: number
|
|
6548
6664
|
}
|
|
6549
6665
|
|
|
6550
6666
|
export type OptInCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6551
6667
|
variables?: boolean | OptInCountOutputTypeCountVariablesArgs
|
|
6552
6668
|
optInSteps?: boolean | OptInCountOutputTypeCountOptInStepsArgs
|
|
6553
6669
|
campaignInvites?: boolean | OptInCountOutputTypeCountCampaignInvitesArgs
|
|
6670
|
+
trolleyPayments?: boolean | OptInCountOutputTypeCountTrolleyPaymentsArgs
|
|
6554
6671
|
}
|
|
6555
6672
|
|
|
6556
6673
|
// Custom InputTypes
|
|
@@ -6590,6 +6707,14 @@ export namespace Prisma {
|
|
|
6590
6707
|
}
|
|
6591
6708
|
|
|
6592
6709
|
|
|
6710
|
+
/**
|
|
6711
|
+
* OptInCountOutputType without action
|
|
6712
|
+
*/
|
|
6713
|
+
export type OptInCountOutputTypeCountTrolleyPaymentsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6714
|
+
where?: TrolleyPaymentWhereInput
|
|
6715
|
+
}
|
|
6716
|
+
|
|
6717
|
+
|
|
6593
6718
|
|
|
6594
6719
|
/**
|
|
6595
6720
|
* Count Type SocialPostCountOutputType
|
|
@@ -7532,7 +7657,7 @@ export namespace Prisma {
|
|
|
7532
7657
|
type UserGetPayload<S extends boolean | null | undefined | UserDefaultArgs> = $Result.GetResult<Prisma.$UserPayload, S>
|
|
7533
7658
|
|
|
7534
7659
|
type UserCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
7535
|
-
Omit<UserFindManyArgs, 'select' | 'include' | 'distinct'
|
|
7660
|
+
Omit<UserFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
7536
7661
|
select?: UserCountAggregateInputType | true
|
|
7537
7662
|
}
|
|
7538
7663
|
|
|
@@ -8919,7 +9044,7 @@ export namespace Prisma {
|
|
|
8919
9044
|
type LogGetPayload<S extends boolean | null | undefined | LogDefaultArgs> = $Result.GetResult<Prisma.$LogPayload, S>
|
|
8920
9045
|
|
|
8921
9046
|
type LogCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
8922
|
-
Omit<LogFindManyArgs, 'select' | 'include' | 'distinct'
|
|
9047
|
+
Omit<LogFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
8923
9048
|
select?: LogCountAggregateInputType | true
|
|
8924
9049
|
}
|
|
8925
9050
|
|
|
@@ -10006,7 +10131,7 @@ export namespace Prisma {
|
|
|
10006
10131
|
type CreatorProfileGetPayload<S extends boolean | null | undefined | CreatorProfileDefaultArgs> = $Result.GetResult<Prisma.$CreatorProfilePayload, S>
|
|
10007
10132
|
|
|
10008
10133
|
type CreatorProfileCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
10009
|
-
Omit<CreatorProfileFindManyArgs, 'select' | 'include' | 'distinct'
|
|
10134
|
+
Omit<CreatorProfileFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
10010
10135
|
select?: CreatorProfileCountAggregateInputType | true
|
|
10011
10136
|
}
|
|
10012
10137
|
|
|
@@ -11318,7 +11443,7 @@ export namespace Prisma {
|
|
|
11318
11443
|
type InstagramProfileGetPayload<S extends boolean | null | undefined | InstagramProfileDefaultArgs> = $Result.GetResult<Prisma.$InstagramProfilePayload, S>
|
|
11319
11444
|
|
|
11320
11445
|
type InstagramProfileCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
11321
|
-
Omit<InstagramProfileFindManyArgs, 'select' | 'include' | 'distinct'
|
|
11446
|
+
Omit<InstagramProfileFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
11322
11447
|
select?: InstagramProfileCountAggregateInputType | true
|
|
11323
11448
|
}
|
|
11324
11449
|
|
|
@@ -12492,7 +12617,7 @@ export namespace Prisma {
|
|
|
12492
12617
|
type TiktokProfileGetPayload<S extends boolean | null | undefined | TiktokProfileDefaultArgs> = $Result.GetResult<Prisma.$TiktokProfilePayload, S>
|
|
12493
12618
|
|
|
12494
12619
|
type TiktokProfileCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
12495
|
-
Omit<TiktokProfileFindManyArgs, 'select' | 'include' | 'distinct'
|
|
12620
|
+
Omit<TiktokProfileFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
12496
12621
|
select?: TiktokProfileCountAggregateInputType | true
|
|
12497
12622
|
}
|
|
12498
12623
|
|
|
@@ -13685,7 +13810,7 @@ export namespace Prisma {
|
|
|
13685
13810
|
type YoutubeProfileGetPayload<S extends boolean | null | undefined | YoutubeProfileDefaultArgs> = $Result.GetResult<Prisma.$YoutubeProfilePayload, S>
|
|
13686
13811
|
|
|
13687
13812
|
type YoutubeProfileCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
13688
|
-
Omit<YoutubeProfileFindManyArgs, 'select' | 'include' | 'distinct'
|
|
13813
|
+
Omit<YoutubeProfileFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
13689
13814
|
select?: YoutubeProfileCountAggregateInputType | true
|
|
13690
13815
|
}
|
|
13691
13816
|
|
|
@@ -14762,7 +14887,7 @@ export namespace Prisma {
|
|
|
14762
14887
|
type TwitchProfileGetPayload<S extends boolean | null | undefined | TwitchProfileDefaultArgs> = $Result.GetResult<Prisma.$TwitchProfilePayload, S>
|
|
14763
14888
|
|
|
14764
14889
|
type TwitchProfileCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
14765
|
-
Omit<TwitchProfileFindManyArgs, 'select' | 'include' | 'distinct'
|
|
14890
|
+
Omit<TwitchProfileFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
14766
14891
|
select?: TwitchProfileCountAggregateInputType | true
|
|
14767
14892
|
}
|
|
14768
14893
|
|
|
@@ -15811,7 +15936,7 @@ export namespace Prisma {
|
|
|
15811
15936
|
type FacebookProfileGetPayload<S extends boolean | null | undefined | FacebookProfileDefaultArgs> = $Result.GetResult<Prisma.$FacebookProfilePayload, S>
|
|
15812
15937
|
|
|
15813
15938
|
type FacebookProfileCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
15814
|
-
Omit<FacebookProfileFindManyArgs, 'select' | 'include' | 'distinct'
|
|
15939
|
+
Omit<FacebookProfileFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
15815
15940
|
select?: FacebookProfileCountAggregateInputType | true
|
|
15816
15941
|
}
|
|
15817
15942
|
|
|
@@ -16860,7 +16985,7 @@ export namespace Prisma {
|
|
|
16860
16985
|
type TwitterProfileGetPayload<S extends boolean | null | undefined | TwitterProfileDefaultArgs> = $Result.GetResult<Prisma.$TwitterProfilePayload, S>
|
|
16861
16986
|
|
|
16862
16987
|
type TwitterProfileCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
16863
|
-
Omit<TwitterProfileFindManyArgs, 'select' | 'include' | 'distinct'
|
|
16988
|
+
Omit<TwitterProfileFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
16864
16989
|
select?: TwitterProfileCountAggregateInputType | true
|
|
16865
16990
|
}
|
|
16866
16991
|
|
|
@@ -17826,7 +17951,7 @@ export namespace Prisma {
|
|
|
17826
17951
|
type BrandUserProfileGetPayload<S extends boolean | null | undefined | BrandUserProfileDefaultArgs> = $Result.GetResult<Prisma.$BrandUserProfilePayload, S>
|
|
17827
17952
|
|
|
17828
17953
|
type BrandUserProfileCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
17829
|
-
Omit<BrandUserProfileFindManyArgs, 'select' | 'include' | 'distinct'
|
|
17954
|
+
Omit<BrandUserProfileFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
17830
17955
|
select?: BrandUserProfileCountAggregateInputType | true
|
|
17831
17956
|
}
|
|
17832
17957
|
|
|
@@ -18952,7 +19077,7 @@ export namespace Prisma {
|
|
|
18952
19077
|
type BrandGetPayload<S extends boolean | null | undefined | BrandDefaultArgs> = $Result.GetResult<Prisma.$BrandPayload, S>
|
|
18953
19078
|
|
|
18954
19079
|
type BrandCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
18955
|
-
Omit<BrandFindManyArgs, 'select' | 'include' | 'distinct'
|
|
19080
|
+
Omit<BrandFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
18956
19081
|
select?: BrandCountAggregateInputType | true
|
|
18957
19082
|
}
|
|
18958
19083
|
|
|
@@ -20471,7 +20596,7 @@ export namespace Prisma {
|
|
|
20471
20596
|
type SearchContactsGetPayload<S extends boolean | null | undefined | SearchContactsDefaultArgs> = $Result.GetResult<Prisma.$SearchContactsPayload, S>
|
|
20472
20597
|
|
|
20473
20598
|
type SearchContactsCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
20474
|
-
Omit<SearchContactsFindManyArgs, 'select' | 'include' | 'distinct'
|
|
20599
|
+
Omit<SearchContactsFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
20475
20600
|
select?: SearchContactsCountAggregateInputType | true
|
|
20476
20601
|
}
|
|
20477
20602
|
|
|
@@ -21518,7 +21643,7 @@ export namespace Prisma {
|
|
|
21518
21643
|
type ReportCreditsGetPayload<S extends boolean | null | undefined | ReportCreditsDefaultArgs> = $Result.GetResult<Prisma.$ReportCreditsPayload, S>
|
|
21519
21644
|
|
|
21520
21645
|
type ReportCreditsCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
21521
|
-
Omit<ReportCreditsFindManyArgs, 'select' | 'include' | 'distinct'
|
|
21646
|
+
Omit<ReportCreditsFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
21522
21647
|
select?: ReportCreditsCountAggregateInputType | true
|
|
21523
21648
|
}
|
|
21524
21649
|
|
|
@@ -22498,7 +22623,7 @@ export namespace Prisma {
|
|
|
22498
22623
|
type BrandToImageGetPayload<S extends boolean | null | undefined | BrandToImageDefaultArgs> = $Result.GetResult<Prisma.$BrandToImagePayload, S>
|
|
22499
22624
|
|
|
22500
22625
|
type BrandToImageCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
22501
|
-
Omit<BrandToImageFindManyArgs, 'select' | 'include' | 'distinct'
|
|
22626
|
+
Omit<BrandToImageFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
22502
22627
|
select?: BrandToImageCountAggregateInputType | true
|
|
22503
22628
|
}
|
|
22504
22629
|
|
|
@@ -23448,7 +23573,7 @@ export namespace Prisma {
|
|
|
23448
23573
|
type BrandToCategoryGetPayload<S extends boolean | null | undefined | BrandToCategoryDefaultArgs> = $Result.GetResult<Prisma.$BrandToCategoryPayload, S>
|
|
23449
23574
|
|
|
23450
23575
|
type BrandToCategoryCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
23451
|
-
Omit<BrandToCategoryFindManyArgs, 'select' | 'include' | 'distinct'
|
|
23576
|
+
Omit<BrandToCategoryFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
23452
23577
|
select?: BrandToCategoryCountAggregateInputType | true
|
|
23453
23578
|
}
|
|
23454
23579
|
|
|
@@ -24376,7 +24501,7 @@ export namespace Prisma {
|
|
|
24376
24501
|
type CreatorToCategoryGetPayload<S extends boolean | null | undefined | CreatorToCategoryDefaultArgs> = $Result.GetResult<Prisma.$CreatorToCategoryPayload, S>
|
|
24377
24502
|
|
|
24378
24503
|
type CreatorToCategoryCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
24379
|
-
Omit<CreatorToCategoryFindManyArgs, 'select' | 'include' | 'distinct'
|
|
24504
|
+
Omit<CreatorToCategoryFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
24380
24505
|
select?: CreatorToCategoryCountAggregateInputType | true
|
|
24381
24506
|
}
|
|
24382
24507
|
|
|
@@ -25332,7 +25457,7 @@ export namespace Prisma {
|
|
|
25332
25457
|
type ChatGetPayload<S extends boolean | null | undefined | ChatDefaultArgs> = $Result.GetResult<Prisma.$ChatPayload, S>
|
|
25333
25458
|
|
|
25334
25459
|
type ChatCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
25335
|
-
Omit<ChatFindManyArgs, 'select' | 'include' | 'distinct'
|
|
25460
|
+
Omit<ChatFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
25336
25461
|
select?: ChatCountAggregateInputType | true
|
|
25337
25462
|
}
|
|
25338
25463
|
|
|
@@ -26374,7 +26499,7 @@ export namespace Prisma {
|
|
|
26374
26499
|
type MessageGetPayload<S extends boolean | null | undefined | MessageDefaultArgs> = $Result.GetResult<Prisma.$MessagePayload, S>
|
|
26375
26500
|
|
|
26376
26501
|
type MessageCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
26377
|
-
Omit<MessageFindManyArgs, 'select' | 'include' | 'distinct'
|
|
26502
|
+
Omit<MessageFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
26378
26503
|
select?: MessageCountAggregateInputType | true
|
|
26379
26504
|
}
|
|
26380
26505
|
|
|
@@ -27928,7 +28053,7 @@ export namespace Prisma {
|
|
|
27928
28053
|
type CampaignGetPayload<S extends boolean | null | undefined | CampaignDefaultArgs> = $Result.GetResult<Prisma.$CampaignPayload, S>
|
|
27929
28054
|
|
|
27930
28055
|
type CampaignCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
27931
|
-
Omit<CampaignFindManyArgs, 'select' | 'include' | 'distinct'
|
|
28056
|
+
Omit<CampaignFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
27932
28057
|
select?: CampaignCountAggregateInputType | true
|
|
27933
28058
|
}
|
|
27934
28059
|
|
|
@@ -29214,7 +29339,7 @@ export namespace Prisma {
|
|
|
29214
29339
|
type CampaignPinGetPayload<S extends boolean | null | undefined | CampaignPinDefaultArgs> = $Result.GetResult<Prisma.$CampaignPinPayload, S>
|
|
29215
29340
|
|
|
29216
29341
|
type CampaignPinCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
29217
|
-
Omit<CampaignPinFindManyArgs, 'select' | 'include' | 'distinct'
|
|
29342
|
+
Omit<CampaignPinFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
29218
29343
|
select?: CampaignPinCountAggregateInputType | true
|
|
29219
29344
|
}
|
|
29220
29345
|
|
|
@@ -30157,7 +30282,7 @@ export namespace Prisma {
|
|
|
30157
30282
|
type CampaignToImageGetPayload<S extends boolean | null | undefined | CampaignToImageDefaultArgs> = $Result.GetResult<Prisma.$CampaignToImagePayload, S>
|
|
30158
30283
|
|
|
30159
30284
|
type CampaignToImageCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
30160
|
-
Omit<CampaignToImageFindManyArgs, 'select' | 'include' | 'distinct'
|
|
30285
|
+
Omit<CampaignToImageFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
30161
30286
|
select?: CampaignToImageCountAggregateInputType | true
|
|
30162
30287
|
}
|
|
30163
30288
|
|
|
@@ -31107,7 +31232,7 @@ export namespace Prisma {
|
|
|
31107
31232
|
type CampaignToCategoryGetPayload<S extends boolean | null | undefined | CampaignToCategoryDefaultArgs> = $Result.GetResult<Prisma.$CampaignToCategoryPayload, S>
|
|
31108
31233
|
|
|
31109
31234
|
type CampaignToCategoryCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
31110
|
-
Omit<CampaignToCategoryFindManyArgs, 'select' | 'include' | 'distinct'
|
|
31235
|
+
Omit<CampaignToCategoryFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
31111
31236
|
select?: CampaignToCategoryCountAggregateInputType | true
|
|
31112
31237
|
}
|
|
31113
31238
|
|
|
@@ -32035,7 +32160,7 @@ export namespace Prisma {
|
|
|
32035
32160
|
type CampaignToCountryGetPayload<S extends boolean | null | undefined | CampaignToCountryDefaultArgs> = $Result.GetResult<Prisma.$CampaignToCountryPayload, S>
|
|
32036
32161
|
|
|
32037
32162
|
type CampaignToCountryCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
32038
|
-
Omit<CampaignToCountryFindManyArgs, 'select' | 'include' | 'distinct'
|
|
32163
|
+
Omit<CampaignToCountryFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
32039
32164
|
select?: CampaignToCountryCountAggregateInputType | true
|
|
32040
32165
|
}
|
|
32041
32166
|
|
|
@@ -32994,7 +33119,7 @@ export namespace Prisma {
|
|
|
32994
33119
|
type VariableGetPayload<S extends boolean | null | undefined | VariableDefaultArgs> = $Result.GetResult<Prisma.$VariablePayload, S>
|
|
32995
33120
|
|
|
32996
33121
|
type VariableCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
32997
|
-
Omit<VariableFindManyArgs, 'select' | 'include' | 'distinct'
|
|
33122
|
+
Omit<VariableFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
32998
33123
|
select?: VariableCountAggregateInputType | true
|
|
32999
33124
|
}
|
|
33000
33125
|
|
|
@@ -33997,7 +34122,7 @@ export namespace Prisma {
|
|
|
33997
34122
|
type VariableOptionGetPayload<S extends boolean | null | undefined | VariableOptionDefaultArgs> = $Result.GetResult<Prisma.$VariableOptionPayload, S>
|
|
33998
34123
|
|
|
33999
34124
|
type VariableOptionCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
34000
|
-
Omit<VariableOptionFindManyArgs, 'select' | 'include' | 'distinct'
|
|
34125
|
+
Omit<VariableOptionFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
34001
34126
|
select?: VariableOptionCountAggregateInputType | true
|
|
34002
34127
|
}
|
|
34003
34128
|
|
|
@@ -34970,7 +35095,7 @@ export namespace Prisma {
|
|
|
34970
35095
|
type StepGetPayload<S extends boolean | null | undefined | StepDefaultArgs> = $Result.GetResult<Prisma.$StepPayload, S>
|
|
34971
35096
|
|
|
34972
35097
|
type StepCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
34973
|
-
Omit<StepFindManyArgs, 'select' | 'include' | 'distinct'
|
|
35098
|
+
Omit<StepFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
34974
35099
|
select?: StepCountAggregateInputType | true
|
|
34975
35100
|
}
|
|
34976
35101
|
|
|
@@ -36004,7 +36129,7 @@ export namespace Prisma {
|
|
|
36004
36129
|
type CampaignStepGetPayload<S extends boolean | null | undefined | CampaignStepDefaultArgs> = $Result.GetResult<Prisma.$CampaignStepPayload, S>
|
|
36005
36130
|
|
|
36006
36131
|
type CampaignStepCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
36007
|
-
Omit<CampaignStepFindManyArgs, 'select' | 'include' | 'distinct'
|
|
36132
|
+
Omit<CampaignStepFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
36008
36133
|
select?: CampaignStepCountAggregateInputType | true
|
|
36009
36134
|
}
|
|
36010
36135
|
|
|
@@ -37046,7 +37171,7 @@ export namespace Prisma {
|
|
|
37046
37171
|
type OptInStepGetPayload<S extends boolean | null | undefined | OptInStepDefaultArgs> = $Result.GetResult<Prisma.$OptInStepPayload, S>
|
|
37047
37172
|
|
|
37048
37173
|
type OptInStepCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
37049
|
-
Omit<OptInStepFindManyArgs, 'select' | 'include' | 'distinct'
|
|
37174
|
+
Omit<OptInStepFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
37050
37175
|
select?: OptInStepCountAggregateInputType | true
|
|
37051
37176
|
}
|
|
37052
37177
|
|
|
@@ -37989,7 +38114,7 @@ export namespace Prisma {
|
|
|
37989
38114
|
type CategoryGetPayload<S extends boolean | null | undefined | CategoryDefaultArgs> = $Result.GetResult<Prisma.$CategoryPayload, S>
|
|
37990
38115
|
|
|
37991
38116
|
type CategoryCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
37992
|
-
Omit<CategoryFindManyArgs, 'select' | 'include' | 'distinct'
|
|
38117
|
+
Omit<CategoryFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
37993
38118
|
select?: CategoryCountAggregateInputType | true
|
|
37994
38119
|
}
|
|
37995
38120
|
|
|
@@ -39082,6 +39207,7 @@ export namespace Prisma {
|
|
|
39082
39207
|
optInSteps?: boolean | OptIn$optInStepsArgs<ExtArgs>
|
|
39083
39208
|
chat?: boolean | OptIn$chatArgs<ExtArgs>
|
|
39084
39209
|
campaignInvites?: boolean | OptIn$campaignInvitesArgs<ExtArgs>
|
|
39210
|
+
trolleyPayments?: boolean | OptIn$trolleyPaymentsArgs<ExtArgs>
|
|
39085
39211
|
_count?: boolean | OptInCountOutputTypeDefaultArgs<ExtArgs>
|
|
39086
39212
|
}, ExtArgs["result"]["optIn"]>
|
|
39087
39213
|
|
|
@@ -39113,6 +39239,7 @@ export namespace Prisma {
|
|
|
39113
39239
|
optInSteps?: boolean | OptIn$optInStepsArgs<ExtArgs>
|
|
39114
39240
|
chat?: boolean | OptIn$chatArgs<ExtArgs>
|
|
39115
39241
|
campaignInvites?: boolean | OptIn$campaignInvitesArgs<ExtArgs>
|
|
39242
|
+
trolleyPayments?: boolean | OptIn$trolleyPaymentsArgs<ExtArgs>
|
|
39116
39243
|
_count?: boolean | OptInCountOutputTypeDefaultArgs<ExtArgs>
|
|
39117
39244
|
}
|
|
39118
39245
|
|
|
@@ -39127,6 +39254,7 @@ export namespace Prisma {
|
|
|
39127
39254
|
optInSteps: Prisma.$OptInStepPayload<ExtArgs>[]
|
|
39128
39255
|
chat: Prisma.$ChatPayload<ExtArgs> | null
|
|
39129
39256
|
campaignInvites: Prisma.$CampaignInvitePayload<ExtArgs>[]
|
|
39257
|
+
trolleyPayments: Prisma.$TrolleyPaymentPayload<ExtArgs>[]
|
|
39130
39258
|
}
|
|
39131
39259
|
scalars: $Extensions.GetPayloadResult<{
|
|
39132
39260
|
id: number
|
|
@@ -39154,7 +39282,7 @@ export namespace Prisma {
|
|
|
39154
39282
|
type OptInGetPayload<S extends boolean | null | undefined | OptInDefaultArgs> = $Result.GetResult<Prisma.$OptInPayload, S>
|
|
39155
39283
|
|
|
39156
39284
|
type OptInCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
39157
|
-
Omit<OptInFindManyArgs, 'select' | 'include' | 'distinct'
|
|
39285
|
+
Omit<OptInFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
39158
39286
|
select?: OptInCountAggregateInputType | true
|
|
39159
39287
|
}
|
|
39160
39288
|
|
|
@@ -39525,6 +39653,1112 @@ export namespace Prisma {
|
|
|
39525
39653
|
|
|
39526
39654
|
campaignInvites<T extends OptIn$campaignInvitesArgs<ExtArgs> = {}>(args?: Subset<T, OptIn$campaignInvitesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CampaignInvitePayload<ExtArgs>, T, 'findMany'> | Null>;
|
|
39527
39655
|
|
|
39656
|
+
trolleyPayments<T extends OptIn$trolleyPaymentsArgs<ExtArgs> = {}>(args?: Subset<T, OptIn$trolleyPaymentsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TrolleyPaymentPayload<ExtArgs>, T, 'findMany'> | Null>;
|
|
39657
|
+
|
|
39658
|
+
/**
|
|
39659
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
39660
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
39661
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
39662
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
39663
|
+
*/
|
|
39664
|
+
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>;
|
|
39665
|
+
/**
|
|
39666
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
39667
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
39668
|
+
* @returns A Promise for the completion of the callback.
|
|
39669
|
+
*/
|
|
39670
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>;
|
|
39671
|
+
/**
|
|
39672
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
39673
|
+
* resolved value cannot be modified from the callback.
|
|
39674
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
39675
|
+
* @returns A Promise for the completion of the callback.
|
|
39676
|
+
*/
|
|
39677
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>;
|
|
39678
|
+
}
|
|
39679
|
+
|
|
39680
|
+
|
|
39681
|
+
|
|
39682
|
+
/**
|
|
39683
|
+
* Fields of the OptIn model
|
|
39684
|
+
*/
|
|
39685
|
+
interface OptInFieldRefs {
|
|
39686
|
+
readonly id: FieldRef<"OptIn", 'Int'>
|
|
39687
|
+
readonly status: FieldRef<"OptIn", 'String'>
|
|
39688
|
+
readonly created: FieldRef<"OptIn", 'DateTime'>
|
|
39689
|
+
readonly activated: FieldRef<"OptIn", 'DateTime'>
|
|
39690
|
+
readonly completed: FieldRef<"OptIn", 'DateTime'>
|
|
39691
|
+
readonly cancelled: FieldRef<"OptIn", 'DateTime'>
|
|
39692
|
+
readonly cancelledData: FieldRef<"OptIn", 'Json'>
|
|
39693
|
+
readonly cancelRequested: FieldRef<"OptIn", 'DateTime'>
|
|
39694
|
+
readonly reinvited: FieldRef<"OptIn", 'DateTime'>
|
|
39695
|
+
readonly seen: FieldRef<"OptIn", 'Boolean'>
|
|
39696
|
+
readonly instructions: FieldRef<"OptIn", 'String'>
|
|
39697
|
+
readonly paymentAmount: FieldRef<"OptIn", 'Float'>
|
|
39698
|
+
readonly paymentStatus: FieldRef<"OptIn", 'String'>
|
|
39699
|
+
readonly extraData: FieldRef<"OptIn", 'Json'>
|
|
39700
|
+
readonly userId: FieldRef<"OptIn", 'Int'>
|
|
39701
|
+
readonly campaignId: FieldRef<"OptIn", 'Int'>
|
|
39702
|
+
readonly currentStepId: FieldRef<"OptIn", 'Int'>
|
|
39703
|
+
}
|
|
39704
|
+
|
|
39705
|
+
|
|
39706
|
+
// Custom InputTypes
|
|
39707
|
+
|
|
39708
|
+
/**
|
|
39709
|
+
* OptIn findUnique
|
|
39710
|
+
*/
|
|
39711
|
+
export type OptInFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39712
|
+
/**
|
|
39713
|
+
* Select specific fields to fetch from the OptIn
|
|
39714
|
+
*/
|
|
39715
|
+
select?: OptInSelect<ExtArgs> | null
|
|
39716
|
+
/**
|
|
39717
|
+
* Choose, which related nodes to fetch as well.
|
|
39718
|
+
*/
|
|
39719
|
+
include?: OptInInclude<ExtArgs> | null
|
|
39720
|
+
/**
|
|
39721
|
+
* Filter, which OptIn to fetch.
|
|
39722
|
+
*/
|
|
39723
|
+
where: OptInWhereUniqueInput
|
|
39724
|
+
}
|
|
39725
|
+
|
|
39726
|
+
|
|
39727
|
+
/**
|
|
39728
|
+
* OptIn findUniqueOrThrow
|
|
39729
|
+
*/
|
|
39730
|
+
export type OptInFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39731
|
+
/**
|
|
39732
|
+
* Select specific fields to fetch from the OptIn
|
|
39733
|
+
*/
|
|
39734
|
+
select?: OptInSelect<ExtArgs> | null
|
|
39735
|
+
/**
|
|
39736
|
+
* Choose, which related nodes to fetch as well.
|
|
39737
|
+
*/
|
|
39738
|
+
include?: OptInInclude<ExtArgs> | null
|
|
39739
|
+
/**
|
|
39740
|
+
* Filter, which OptIn to fetch.
|
|
39741
|
+
*/
|
|
39742
|
+
where: OptInWhereUniqueInput
|
|
39743
|
+
}
|
|
39744
|
+
|
|
39745
|
+
|
|
39746
|
+
/**
|
|
39747
|
+
* OptIn findFirst
|
|
39748
|
+
*/
|
|
39749
|
+
export type OptInFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39750
|
+
/**
|
|
39751
|
+
* Select specific fields to fetch from the OptIn
|
|
39752
|
+
*/
|
|
39753
|
+
select?: OptInSelect<ExtArgs> | null
|
|
39754
|
+
/**
|
|
39755
|
+
* Choose, which related nodes to fetch as well.
|
|
39756
|
+
*/
|
|
39757
|
+
include?: OptInInclude<ExtArgs> | null
|
|
39758
|
+
/**
|
|
39759
|
+
* Filter, which OptIn to fetch.
|
|
39760
|
+
*/
|
|
39761
|
+
where?: OptInWhereInput
|
|
39762
|
+
/**
|
|
39763
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
39764
|
+
*
|
|
39765
|
+
* Determine the order of OptIns to fetch.
|
|
39766
|
+
*/
|
|
39767
|
+
orderBy?: OptInOrderByWithRelationAndSearchRelevanceInput | OptInOrderByWithRelationAndSearchRelevanceInput[]
|
|
39768
|
+
/**
|
|
39769
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
39770
|
+
*
|
|
39771
|
+
* Sets the position for searching for OptIns.
|
|
39772
|
+
*/
|
|
39773
|
+
cursor?: OptInWhereUniqueInput
|
|
39774
|
+
/**
|
|
39775
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
39776
|
+
*
|
|
39777
|
+
* Take `±n` OptIns from the position of the cursor.
|
|
39778
|
+
*/
|
|
39779
|
+
take?: number
|
|
39780
|
+
/**
|
|
39781
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
39782
|
+
*
|
|
39783
|
+
* Skip the first `n` OptIns.
|
|
39784
|
+
*/
|
|
39785
|
+
skip?: number
|
|
39786
|
+
/**
|
|
39787
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
39788
|
+
*
|
|
39789
|
+
* Filter by unique combinations of OptIns.
|
|
39790
|
+
*/
|
|
39791
|
+
distinct?: OptInScalarFieldEnum | OptInScalarFieldEnum[]
|
|
39792
|
+
}
|
|
39793
|
+
|
|
39794
|
+
|
|
39795
|
+
/**
|
|
39796
|
+
* OptIn findFirstOrThrow
|
|
39797
|
+
*/
|
|
39798
|
+
export type OptInFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39799
|
+
/**
|
|
39800
|
+
* Select specific fields to fetch from the OptIn
|
|
39801
|
+
*/
|
|
39802
|
+
select?: OptInSelect<ExtArgs> | null
|
|
39803
|
+
/**
|
|
39804
|
+
* Choose, which related nodes to fetch as well.
|
|
39805
|
+
*/
|
|
39806
|
+
include?: OptInInclude<ExtArgs> | null
|
|
39807
|
+
/**
|
|
39808
|
+
* Filter, which OptIn to fetch.
|
|
39809
|
+
*/
|
|
39810
|
+
where?: OptInWhereInput
|
|
39811
|
+
/**
|
|
39812
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
39813
|
+
*
|
|
39814
|
+
* Determine the order of OptIns to fetch.
|
|
39815
|
+
*/
|
|
39816
|
+
orderBy?: OptInOrderByWithRelationAndSearchRelevanceInput | OptInOrderByWithRelationAndSearchRelevanceInput[]
|
|
39817
|
+
/**
|
|
39818
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
39819
|
+
*
|
|
39820
|
+
* Sets the position for searching for OptIns.
|
|
39821
|
+
*/
|
|
39822
|
+
cursor?: OptInWhereUniqueInput
|
|
39823
|
+
/**
|
|
39824
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
39825
|
+
*
|
|
39826
|
+
* Take `±n` OptIns from the position of the cursor.
|
|
39827
|
+
*/
|
|
39828
|
+
take?: number
|
|
39829
|
+
/**
|
|
39830
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
39831
|
+
*
|
|
39832
|
+
* Skip the first `n` OptIns.
|
|
39833
|
+
*/
|
|
39834
|
+
skip?: number
|
|
39835
|
+
/**
|
|
39836
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
39837
|
+
*
|
|
39838
|
+
* Filter by unique combinations of OptIns.
|
|
39839
|
+
*/
|
|
39840
|
+
distinct?: OptInScalarFieldEnum | OptInScalarFieldEnum[]
|
|
39841
|
+
}
|
|
39842
|
+
|
|
39843
|
+
|
|
39844
|
+
/**
|
|
39845
|
+
* OptIn findMany
|
|
39846
|
+
*/
|
|
39847
|
+
export type OptInFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39848
|
+
/**
|
|
39849
|
+
* Select specific fields to fetch from the OptIn
|
|
39850
|
+
*/
|
|
39851
|
+
select?: OptInSelect<ExtArgs> | null
|
|
39852
|
+
/**
|
|
39853
|
+
* Choose, which related nodes to fetch as well.
|
|
39854
|
+
*/
|
|
39855
|
+
include?: OptInInclude<ExtArgs> | null
|
|
39856
|
+
/**
|
|
39857
|
+
* Filter, which OptIns to fetch.
|
|
39858
|
+
*/
|
|
39859
|
+
where?: OptInWhereInput
|
|
39860
|
+
/**
|
|
39861
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
39862
|
+
*
|
|
39863
|
+
* Determine the order of OptIns to fetch.
|
|
39864
|
+
*/
|
|
39865
|
+
orderBy?: OptInOrderByWithRelationAndSearchRelevanceInput | OptInOrderByWithRelationAndSearchRelevanceInput[]
|
|
39866
|
+
/**
|
|
39867
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
39868
|
+
*
|
|
39869
|
+
* Sets the position for listing OptIns.
|
|
39870
|
+
*/
|
|
39871
|
+
cursor?: OptInWhereUniqueInput
|
|
39872
|
+
/**
|
|
39873
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
39874
|
+
*
|
|
39875
|
+
* Take `±n` OptIns from the position of the cursor.
|
|
39876
|
+
*/
|
|
39877
|
+
take?: number
|
|
39878
|
+
/**
|
|
39879
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
39880
|
+
*
|
|
39881
|
+
* Skip the first `n` OptIns.
|
|
39882
|
+
*/
|
|
39883
|
+
skip?: number
|
|
39884
|
+
distinct?: OptInScalarFieldEnum | OptInScalarFieldEnum[]
|
|
39885
|
+
}
|
|
39886
|
+
|
|
39887
|
+
|
|
39888
|
+
/**
|
|
39889
|
+
* OptIn create
|
|
39890
|
+
*/
|
|
39891
|
+
export type OptInCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39892
|
+
/**
|
|
39893
|
+
* Select specific fields to fetch from the OptIn
|
|
39894
|
+
*/
|
|
39895
|
+
select?: OptInSelect<ExtArgs> | null
|
|
39896
|
+
/**
|
|
39897
|
+
* Choose, which related nodes to fetch as well.
|
|
39898
|
+
*/
|
|
39899
|
+
include?: OptInInclude<ExtArgs> | null
|
|
39900
|
+
/**
|
|
39901
|
+
* The data needed to create a OptIn.
|
|
39902
|
+
*/
|
|
39903
|
+
data: XOR<OptInCreateInput, OptInUncheckedCreateInput>
|
|
39904
|
+
}
|
|
39905
|
+
|
|
39906
|
+
|
|
39907
|
+
/**
|
|
39908
|
+
* OptIn createMany
|
|
39909
|
+
*/
|
|
39910
|
+
export type OptInCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39911
|
+
/**
|
|
39912
|
+
* The data used to create many OptIns.
|
|
39913
|
+
*/
|
|
39914
|
+
data: OptInCreateManyInput | OptInCreateManyInput[]
|
|
39915
|
+
skipDuplicates?: boolean
|
|
39916
|
+
}
|
|
39917
|
+
|
|
39918
|
+
|
|
39919
|
+
/**
|
|
39920
|
+
* OptIn update
|
|
39921
|
+
*/
|
|
39922
|
+
export type OptInUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39923
|
+
/**
|
|
39924
|
+
* Select specific fields to fetch from the OptIn
|
|
39925
|
+
*/
|
|
39926
|
+
select?: OptInSelect<ExtArgs> | null
|
|
39927
|
+
/**
|
|
39928
|
+
* Choose, which related nodes to fetch as well.
|
|
39929
|
+
*/
|
|
39930
|
+
include?: OptInInclude<ExtArgs> | null
|
|
39931
|
+
/**
|
|
39932
|
+
* The data needed to update a OptIn.
|
|
39933
|
+
*/
|
|
39934
|
+
data: XOR<OptInUpdateInput, OptInUncheckedUpdateInput>
|
|
39935
|
+
/**
|
|
39936
|
+
* Choose, which OptIn to update.
|
|
39937
|
+
*/
|
|
39938
|
+
where: OptInWhereUniqueInput
|
|
39939
|
+
}
|
|
39940
|
+
|
|
39941
|
+
|
|
39942
|
+
/**
|
|
39943
|
+
* OptIn updateMany
|
|
39944
|
+
*/
|
|
39945
|
+
export type OptInUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39946
|
+
/**
|
|
39947
|
+
* The data used to update OptIns.
|
|
39948
|
+
*/
|
|
39949
|
+
data: XOR<OptInUpdateManyMutationInput, OptInUncheckedUpdateManyInput>
|
|
39950
|
+
/**
|
|
39951
|
+
* Filter which OptIns to update
|
|
39952
|
+
*/
|
|
39953
|
+
where?: OptInWhereInput
|
|
39954
|
+
}
|
|
39955
|
+
|
|
39956
|
+
|
|
39957
|
+
/**
|
|
39958
|
+
* OptIn upsert
|
|
39959
|
+
*/
|
|
39960
|
+
export type OptInUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39961
|
+
/**
|
|
39962
|
+
* Select specific fields to fetch from the OptIn
|
|
39963
|
+
*/
|
|
39964
|
+
select?: OptInSelect<ExtArgs> | null
|
|
39965
|
+
/**
|
|
39966
|
+
* Choose, which related nodes to fetch as well.
|
|
39967
|
+
*/
|
|
39968
|
+
include?: OptInInclude<ExtArgs> | null
|
|
39969
|
+
/**
|
|
39970
|
+
* The filter to search for the OptIn to update in case it exists.
|
|
39971
|
+
*/
|
|
39972
|
+
where: OptInWhereUniqueInput
|
|
39973
|
+
/**
|
|
39974
|
+
* In case the OptIn found by the `where` argument doesn't exist, create a new OptIn with this data.
|
|
39975
|
+
*/
|
|
39976
|
+
create: XOR<OptInCreateInput, OptInUncheckedCreateInput>
|
|
39977
|
+
/**
|
|
39978
|
+
* In case the OptIn was found with the provided `where` argument, update it with this data.
|
|
39979
|
+
*/
|
|
39980
|
+
update: XOR<OptInUpdateInput, OptInUncheckedUpdateInput>
|
|
39981
|
+
}
|
|
39982
|
+
|
|
39983
|
+
|
|
39984
|
+
/**
|
|
39985
|
+
* OptIn delete
|
|
39986
|
+
*/
|
|
39987
|
+
export type OptInDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39988
|
+
/**
|
|
39989
|
+
* Select specific fields to fetch from the OptIn
|
|
39990
|
+
*/
|
|
39991
|
+
select?: OptInSelect<ExtArgs> | null
|
|
39992
|
+
/**
|
|
39993
|
+
* Choose, which related nodes to fetch as well.
|
|
39994
|
+
*/
|
|
39995
|
+
include?: OptInInclude<ExtArgs> | null
|
|
39996
|
+
/**
|
|
39997
|
+
* Filter which OptIn to delete.
|
|
39998
|
+
*/
|
|
39999
|
+
where: OptInWhereUniqueInput
|
|
40000
|
+
}
|
|
40001
|
+
|
|
40002
|
+
|
|
40003
|
+
/**
|
|
40004
|
+
* OptIn deleteMany
|
|
40005
|
+
*/
|
|
40006
|
+
export type OptInDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
40007
|
+
/**
|
|
40008
|
+
* Filter which OptIns to delete
|
|
40009
|
+
*/
|
|
40010
|
+
where?: OptInWhereInput
|
|
40011
|
+
}
|
|
40012
|
+
|
|
40013
|
+
|
|
40014
|
+
/**
|
|
40015
|
+
* OptIn.currentStep
|
|
40016
|
+
*/
|
|
40017
|
+
export type OptIn$currentStepArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
40018
|
+
/**
|
|
40019
|
+
* Select specific fields to fetch from the CampaignStep
|
|
40020
|
+
*/
|
|
40021
|
+
select?: CampaignStepSelect<ExtArgs> | null
|
|
40022
|
+
/**
|
|
40023
|
+
* Choose, which related nodes to fetch as well.
|
|
40024
|
+
*/
|
|
40025
|
+
include?: CampaignStepInclude<ExtArgs> | null
|
|
40026
|
+
where?: CampaignStepWhereInput
|
|
40027
|
+
}
|
|
40028
|
+
|
|
40029
|
+
|
|
40030
|
+
/**
|
|
40031
|
+
* OptIn.variables
|
|
40032
|
+
*/
|
|
40033
|
+
export type OptIn$variablesArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
40034
|
+
/**
|
|
40035
|
+
* Select specific fields to fetch from the OptInVariable
|
|
40036
|
+
*/
|
|
40037
|
+
select?: OptInVariableSelect<ExtArgs> | null
|
|
40038
|
+
/**
|
|
40039
|
+
* Choose, which related nodes to fetch as well.
|
|
40040
|
+
*/
|
|
40041
|
+
include?: OptInVariableInclude<ExtArgs> | null
|
|
40042
|
+
where?: OptInVariableWhereInput
|
|
40043
|
+
orderBy?: OptInVariableOrderByWithRelationAndSearchRelevanceInput | OptInVariableOrderByWithRelationAndSearchRelevanceInput[]
|
|
40044
|
+
cursor?: OptInVariableWhereUniqueInput
|
|
40045
|
+
take?: number
|
|
40046
|
+
skip?: number
|
|
40047
|
+
distinct?: OptInVariableScalarFieldEnum | OptInVariableScalarFieldEnum[]
|
|
40048
|
+
}
|
|
40049
|
+
|
|
40050
|
+
|
|
40051
|
+
/**
|
|
40052
|
+
* OptIn.optInSteps
|
|
40053
|
+
*/
|
|
40054
|
+
export type OptIn$optInStepsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
40055
|
+
/**
|
|
40056
|
+
* Select specific fields to fetch from the OptInStep
|
|
40057
|
+
*/
|
|
40058
|
+
select?: OptInStepSelect<ExtArgs> | null
|
|
40059
|
+
/**
|
|
40060
|
+
* Choose, which related nodes to fetch as well.
|
|
40061
|
+
*/
|
|
40062
|
+
include?: OptInStepInclude<ExtArgs> | null
|
|
40063
|
+
where?: OptInStepWhereInput
|
|
40064
|
+
orderBy?: OptInStepOrderByWithRelationAndSearchRelevanceInput | OptInStepOrderByWithRelationAndSearchRelevanceInput[]
|
|
40065
|
+
cursor?: OptInStepWhereUniqueInput
|
|
40066
|
+
take?: number
|
|
40067
|
+
skip?: number
|
|
40068
|
+
distinct?: OptInStepScalarFieldEnum | OptInStepScalarFieldEnum[]
|
|
40069
|
+
}
|
|
40070
|
+
|
|
40071
|
+
|
|
40072
|
+
/**
|
|
40073
|
+
* OptIn.chat
|
|
40074
|
+
*/
|
|
40075
|
+
export type OptIn$chatArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
40076
|
+
/**
|
|
40077
|
+
* Select specific fields to fetch from the Chat
|
|
40078
|
+
*/
|
|
40079
|
+
select?: ChatSelect<ExtArgs> | null
|
|
40080
|
+
/**
|
|
40081
|
+
* Choose, which related nodes to fetch as well.
|
|
40082
|
+
*/
|
|
40083
|
+
include?: ChatInclude<ExtArgs> | null
|
|
40084
|
+
where?: ChatWhereInput
|
|
40085
|
+
}
|
|
40086
|
+
|
|
40087
|
+
|
|
40088
|
+
/**
|
|
40089
|
+
* OptIn.campaignInvites
|
|
40090
|
+
*/
|
|
40091
|
+
export type OptIn$campaignInvitesArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
40092
|
+
/**
|
|
40093
|
+
* Select specific fields to fetch from the CampaignInvite
|
|
40094
|
+
*/
|
|
40095
|
+
select?: CampaignInviteSelect<ExtArgs> | null
|
|
40096
|
+
/**
|
|
40097
|
+
* Choose, which related nodes to fetch as well.
|
|
40098
|
+
*/
|
|
40099
|
+
include?: CampaignInviteInclude<ExtArgs> | null
|
|
40100
|
+
where?: CampaignInviteWhereInput
|
|
40101
|
+
orderBy?: CampaignInviteOrderByWithRelationAndSearchRelevanceInput | CampaignInviteOrderByWithRelationAndSearchRelevanceInput[]
|
|
40102
|
+
cursor?: CampaignInviteWhereUniqueInput
|
|
40103
|
+
take?: number
|
|
40104
|
+
skip?: number
|
|
40105
|
+
distinct?: CampaignInviteScalarFieldEnum | CampaignInviteScalarFieldEnum[]
|
|
40106
|
+
}
|
|
40107
|
+
|
|
40108
|
+
|
|
40109
|
+
/**
|
|
40110
|
+
* OptIn.trolleyPayments
|
|
40111
|
+
*/
|
|
40112
|
+
export type OptIn$trolleyPaymentsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
40113
|
+
/**
|
|
40114
|
+
* Select specific fields to fetch from the TrolleyPayment
|
|
40115
|
+
*/
|
|
40116
|
+
select?: TrolleyPaymentSelect<ExtArgs> | null
|
|
40117
|
+
/**
|
|
40118
|
+
* Choose, which related nodes to fetch as well.
|
|
40119
|
+
*/
|
|
40120
|
+
include?: TrolleyPaymentInclude<ExtArgs> | null
|
|
40121
|
+
where?: TrolleyPaymentWhereInput
|
|
40122
|
+
orderBy?: TrolleyPaymentOrderByWithRelationAndSearchRelevanceInput | TrolleyPaymentOrderByWithRelationAndSearchRelevanceInput[]
|
|
40123
|
+
cursor?: TrolleyPaymentWhereUniqueInput
|
|
40124
|
+
take?: number
|
|
40125
|
+
skip?: number
|
|
40126
|
+
distinct?: TrolleyPaymentScalarFieldEnum | TrolleyPaymentScalarFieldEnum[]
|
|
40127
|
+
}
|
|
40128
|
+
|
|
40129
|
+
|
|
40130
|
+
/**
|
|
40131
|
+
* OptIn without action
|
|
40132
|
+
*/
|
|
40133
|
+
export type OptInDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
40134
|
+
/**
|
|
40135
|
+
* Select specific fields to fetch from the OptIn
|
|
40136
|
+
*/
|
|
40137
|
+
select?: OptInSelect<ExtArgs> | null
|
|
40138
|
+
/**
|
|
40139
|
+
* Choose, which related nodes to fetch as well.
|
|
40140
|
+
*/
|
|
40141
|
+
include?: OptInInclude<ExtArgs> | null
|
|
40142
|
+
}
|
|
40143
|
+
|
|
40144
|
+
|
|
40145
|
+
|
|
40146
|
+
/**
|
|
40147
|
+
* Model TrolleyPayment
|
|
40148
|
+
*/
|
|
40149
|
+
|
|
40150
|
+
export type AggregateTrolleyPayment = {
|
|
40151
|
+
_count: TrolleyPaymentCountAggregateOutputType | null
|
|
40152
|
+
_avg: TrolleyPaymentAvgAggregateOutputType | null
|
|
40153
|
+
_sum: TrolleyPaymentSumAggregateOutputType | null
|
|
40154
|
+
_min: TrolleyPaymentMinAggregateOutputType | null
|
|
40155
|
+
_max: TrolleyPaymentMaxAggregateOutputType | null
|
|
40156
|
+
}
|
|
40157
|
+
|
|
40158
|
+
export type TrolleyPaymentAvgAggregateOutputType = {
|
|
40159
|
+
id: number | null
|
|
40160
|
+
optInId: number | null
|
|
40161
|
+
paymentAmount: number | null
|
|
40162
|
+
}
|
|
40163
|
+
|
|
40164
|
+
export type TrolleyPaymentSumAggregateOutputType = {
|
|
40165
|
+
id: number | null
|
|
40166
|
+
optInId: number | null
|
|
40167
|
+
paymentAmount: number | null
|
|
40168
|
+
}
|
|
40169
|
+
|
|
40170
|
+
export type TrolleyPaymentMinAggregateOutputType = {
|
|
40171
|
+
id: number | null
|
|
40172
|
+
paymentId: string | null
|
|
40173
|
+
type: $Enums.trolleyPaymentType | null
|
|
40174
|
+
status: $Enums.trolleyPaymentStatus | null
|
|
40175
|
+
optInId: number | null
|
|
40176
|
+
paymentAmount: number | null
|
|
40177
|
+
}
|
|
40178
|
+
|
|
40179
|
+
export type TrolleyPaymentMaxAggregateOutputType = {
|
|
40180
|
+
id: number | null
|
|
40181
|
+
paymentId: string | null
|
|
40182
|
+
type: $Enums.trolleyPaymentType | null
|
|
40183
|
+
status: $Enums.trolleyPaymentStatus | null
|
|
40184
|
+
optInId: number | null
|
|
40185
|
+
paymentAmount: number | null
|
|
40186
|
+
}
|
|
40187
|
+
|
|
40188
|
+
export type TrolleyPaymentCountAggregateOutputType = {
|
|
40189
|
+
id: number
|
|
40190
|
+
paymentId: number
|
|
40191
|
+
type: number
|
|
40192
|
+
status: number
|
|
40193
|
+
optInId: number
|
|
40194
|
+
paymentAmount: number
|
|
40195
|
+
metaData: number
|
|
40196
|
+
_all: number
|
|
40197
|
+
}
|
|
40198
|
+
|
|
40199
|
+
|
|
40200
|
+
export type TrolleyPaymentAvgAggregateInputType = {
|
|
40201
|
+
id?: true
|
|
40202
|
+
optInId?: true
|
|
40203
|
+
paymentAmount?: true
|
|
40204
|
+
}
|
|
40205
|
+
|
|
40206
|
+
export type TrolleyPaymentSumAggregateInputType = {
|
|
40207
|
+
id?: true
|
|
40208
|
+
optInId?: true
|
|
40209
|
+
paymentAmount?: true
|
|
40210
|
+
}
|
|
40211
|
+
|
|
40212
|
+
export type TrolleyPaymentMinAggregateInputType = {
|
|
40213
|
+
id?: true
|
|
40214
|
+
paymentId?: true
|
|
40215
|
+
type?: true
|
|
40216
|
+
status?: true
|
|
40217
|
+
optInId?: true
|
|
40218
|
+
paymentAmount?: true
|
|
40219
|
+
}
|
|
40220
|
+
|
|
40221
|
+
export type TrolleyPaymentMaxAggregateInputType = {
|
|
40222
|
+
id?: true
|
|
40223
|
+
paymentId?: true
|
|
40224
|
+
type?: true
|
|
40225
|
+
status?: true
|
|
40226
|
+
optInId?: true
|
|
40227
|
+
paymentAmount?: true
|
|
40228
|
+
}
|
|
40229
|
+
|
|
40230
|
+
export type TrolleyPaymentCountAggregateInputType = {
|
|
40231
|
+
id?: true
|
|
40232
|
+
paymentId?: true
|
|
40233
|
+
type?: true
|
|
40234
|
+
status?: true
|
|
40235
|
+
optInId?: true
|
|
40236
|
+
paymentAmount?: true
|
|
40237
|
+
metaData?: true
|
|
40238
|
+
_all?: true
|
|
40239
|
+
}
|
|
40240
|
+
|
|
40241
|
+
export type TrolleyPaymentAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
40242
|
+
/**
|
|
40243
|
+
* Filter which TrolleyPayment to aggregate.
|
|
40244
|
+
*/
|
|
40245
|
+
where?: TrolleyPaymentWhereInput
|
|
40246
|
+
/**
|
|
40247
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
40248
|
+
*
|
|
40249
|
+
* Determine the order of TrolleyPayments to fetch.
|
|
40250
|
+
*/
|
|
40251
|
+
orderBy?: TrolleyPaymentOrderByWithRelationAndSearchRelevanceInput | TrolleyPaymentOrderByWithRelationAndSearchRelevanceInput[]
|
|
40252
|
+
/**
|
|
40253
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
40254
|
+
*
|
|
40255
|
+
* Sets the start position
|
|
40256
|
+
*/
|
|
40257
|
+
cursor?: TrolleyPaymentWhereUniqueInput
|
|
40258
|
+
/**
|
|
40259
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
40260
|
+
*
|
|
40261
|
+
* Take `±n` TrolleyPayments from the position of the cursor.
|
|
40262
|
+
*/
|
|
40263
|
+
take?: number
|
|
40264
|
+
/**
|
|
40265
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
40266
|
+
*
|
|
40267
|
+
* Skip the first `n` TrolleyPayments.
|
|
40268
|
+
*/
|
|
40269
|
+
skip?: number
|
|
40270
|
+
/**
|
|
40271
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
40272
|
+
*
|
|
40273
|
+
* Count returned TrolleyPayments
|
|
40274
|
+
**/
|
|
40275
|
+
_count?: true | TrolleyPaymentCountAggregateInputType
|
|
40276
|
+
/**
|
|
40277
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
40278
|
+
*
|
|
40279
|
+
* Select which fields to average
|
|
40280
|
+
**/
|
|
40281
|
+
_avg?: TrolleyPaymentAvgAggregateInputType
|
|
40282
|
+
/**
|
|
40283
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
40284
|
+
*
|
|
40285
|
+
* Select which fields to sum
|
|
40286
|
+
**/
|
|
40287
|
+
_sum?: TrolleyPaymentSumAggregateInputType
|
|
40288
|
+
/**
|
|
40289
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
40290
|
+
*
|
|
40291
|
+
* Select which fields to find the minimum value
|
|
40292
|
+
**/
|
|
40293
|
+
_min?: TrolleyPaymentMinAggregateInputType
|
|
40294
|
+
/**
|
|
40295
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
40296
|
+
*
|
|
40297
|
+
* Select which fields to find the maximum value
|
|
40298
|
+
**/
|
|
40299
|
+
_max?: TrolleyPaymentMaxAggregateInputType
|
|
40300
|
+
}
|
|
40301
|
+
|
|
40302
|
+
export type GetTrolleyPaymentAggregateType<T extends TrolleyPaymentAggregateArgs> = {
|
|
40303
|
+
[P in keyof T & keyof AggregateTrolleyPayment]: P extends '_count' | 'count'
|
|
40304
|
+
? T[P] extends true
|
|
40305
|
+
? number
|
|
40306
|
+
: GetScalarType<T[P], AggregateTrolleyPayment[P]>
|
|
40307
|
+
: GetScalarType<T[P], AggregateTrolleyPayment[P]>
|
|
40308
|
+
}
|
|
40309
|
+
|
|
40310
|
+
|
|
40311
|
+
|
|
40312
|
+
|
|
40313
|
+
export type TrolleyPaymentGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
40314
|
+
where?: TrolleyPaymentWhereInput
|
|
40315
|
+
orderBy?: TrolleyPaymentOrderByWithAggregationInput | TrolleyPaymentOrderByWithAggregationInput[]
|
|
40316
|
+
by: TrolleyPaymentScalarFieldEnum[] | TrolleyPaymentScalarFieldEnum
|
|
40317
|
+
having?: TrolleyPaymentScalarWhereWithAggregatesInput
|
|
40318
|
+
take?: number
|
|
40319
|
+
skip?: number
|
|
40320
|
+
_count?: TrolleyPaymentCountAggregateInputType | true
|
|
40321
|
+
_avg?: TrolleyPaymentAvgAggregateInputType
|
|
40322
|
+
_sum?: TrolleyPaymentSumAggregateInputType
|
|
40323
|
+
_min?: TrolleyPaymentMinAggregateInputType
|
|
40324
|
+
_max?: TrolleyPaymentMaxAggregateInputType
|
|
40325
|
+
}
|
|
40326
|
+
|
|
40327
|
+
export type TrolleyPaymentGroupByOutputType = {
|
|
40328
|
+
id: number
|
|
40329
|
+
paymentId: string
|
|
40330
|
+
type: $Enums.trolleyPaymentType | null
|
|
40331
|
+
status: $Enums.trolleyPaymentStatus
|
|
40332
|
+
optInId: number
|
|
40333
|
+
paymentAmount: number
|
|
40334
|
+
metaData: JsonValue
|
|
40335
|
+
_count: TrolleyPaymentCountAggregateOutputType | null
|
|
40336
|
+
_avg: TrolleyPaymentAvgAggregateOutputType | null
|
|
40337
|
+
_sum: TrolleyPaymentSumAggregateOutputType | null
|
|
40338
|
+
_min: TrolleyPaymentMinAggregateOutputType | null
|
|
40339
|
+
_max: TrolleyPaymentMaxAggregateOutputType | null
|
|
40340
|
+
}
|
|
40341
|
+
|
|
40342
|
+
type GetTrolleyPaymentGroupByPayload<T extends TrolleyPaymentGroupByArgs> = Prisma.PrismaPromise<
|
|
40343
|
+
Array<
|
|
40344
|
+
PickEnumerable<TrolleyPaymentGroupByOutputType, T['by']> &
|
|
40345
|
+
{
|
|
40346
|
+
[P in ((keyof T) & (keyof TrolleyPaymentGroupByOutputType))]: P extends '_count'
|
|
40347
|
+
? T[P] extends boolean
|
|
40348
|
+
? number
|
|
40349
|
+
: GetScalarType<T[P], TrolleyPaymentGroupByOutputType[P]>
|
|
40350
|
+
: GetScalarType<T[P], TrolleyPaymentGroupByOutputType[P]>
|
|
40351
|
+
}
|
|
40352
|
+
>
|
|
40353
|
+
>
|
|
40354
|
+
|
|
40355
|
+
|
|
40356
|
+
export type TrolleyPaymentSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
40357
|
+
id?: boolean
|
|
40358
|
+
paymentId?: boolean
|
|
40359
|
+
type?: boolean
|
|
40360
|
+
status?: boolean
|
|
40361
|
+
optInId?: boolean
|
|
40362
|
+
paymentAmount?: boolean
|
|
40363
|
+
metaData?: boolean
|
|
40364
|
+
optIn?: boolean | OptInDefaultArgs<ExtArgs>
|
|
40365
|
+
}, ExtArgs["result"]["trolleyPayment"]>
|
|
40366
|
+
|
|
40367
|
+
export type TrolleyPaymentSelectScalar = {
|
|
40368
|
+
id?: boolean
|
|
40369
|
+
paymentId?: boolean
|
|
40370
|
+
type?: boolean
|
|
40371
|
+
status?: boolean
|
|
40372
|
+
optInId?: boolean
|
|
40373
|
+
paymentAmount?: boolean
|
|
40374
|
+
metaData?: boolean
|
|
40375
|
+
}
|
|
40376
|
+
|
|
40377
|
+
export type TrolleyPaymentInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
40378
|
+
optIn?: boolean | OptInDefaultArgs<ExtArgs>
|
|
40379
|
+
}
|
|
40380
|
+
|
|
40381
|
+
|
|
40382
|
+
export type $TrolleyPaymentPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
40383
|
+
name: "TrolleyPayment"
|
|
40384
|
+
objects: {
|
|
40385
|
+
optIn: Prisma.$OptInPayload<ExtArgs>
|
|
40386
|
+
}
|
|
40387
|
+
scalars: $Extensions.GetPayloadResult<{
|
|
40388
|
+
id: number
|
|
40389
|
+
paymentId: string
|
|
40390
|
+
type: $Enums.trolleyPaymentType | null
|
|
40391
|
+
status: $Enums.trolleyPaymentStatus
|
|
40392
|
+
optInId: number
|
|
40393
|
+
paymentAmount: number
|
|
40394
|
+
metaData: Prisma.JsonValue
|
|
40395
|
+
}, ExtArgs["result"]["trolleyPayment"]>
|
|
40396
|
+
composites: {}
|
|
40397
|
+
}
|
|
40398
|
+
|
|
40399
|
+
|
|
40400
|
+
type TrolleyPaymentGetPayload<S extends boolean | null | undefined | TrolleyPaymentDefaultArgs> = $Result.GetResult<Prisma.$TrolleyPaymentPayload, S>
|
|
40401
|
+
|
|
40402
|
+
type TrolleyPaymentCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
40403
|
+
Omit<TrolleyPaymentFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
40404
|
+
select?: TrolleyPaymentCountAggregateInputType | true
|
|
40405
|
+
}
|
|
40406
|
+
|
|
40407
|
+
export interface TrolleyPaymentDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
40408
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['TrolleyPayment'], meta: { name: 'TrolleyPayment' } }
|
|
40409
|
+
/**
|
|
40410
|
+
* Find zero or one TrolleyPayment that matches the filter.
|
|
40411
|
+
* @param {TrolleyPaymentFindUniqueArgs} args - Arguments to find a TrolleyPayment
|
|
40412
|
+
* @example
|
|
40413
|
+
* // Get one TrolleyPayment
|
|
40414
|
+
* const trolleyPayment = await prisma.trolleyPayment.findUnique({
|
|
40415
|
+
* where: {
|
|
40416
|
+
* // ... provide filter here
|
|
40417
|
+
* }
|
|
40418
|
+
* })
|
|
40419
|
+
**/
|
|
40420
|
+
findUnique<T extends TrolleyPaymentFindUniqueArgs<ExtArgs>>(
|
|
40421
|
+
args: SelectSubset<T, TrolleyPaymentFindUniqueArgs<ExtArgs>>
|
|
40422
|
+
): Prisma__TrolleyPaymentClient<$Result.GetResult<Prisma.$TrolleyPaymentPayload<ExtArgs>, T, 'findUnique'> | null, null, ExtArgs>
|
|
40423
|
+
|
|
40424
|
+
/**
|
|
40425
|
+
* Find one TrolleyPayment that matches the filter or throw an error with `error.code='P2025'`
|
|
40426
|
+
* if no matches were found.
|
|
40427
|
+
* @param {TrolleyPaymentFindUniqueOrThrowArgs} args - Arguments to find a TrolleyPayment
|
|
40428
|
+
* @example
|
|
40429
|
+
* // Get one TrolleyPayment
|
|
40430
|
+
* const trolleyPayment = await prisma.trolleyPayment.findUniqueOrThrow({
|
|
40431
|
+
* where: {
|
|
40432
|
+
* // ... provide filter here
|
|
40433
|
+
* }
|
|
40434
|
+
* })
|
|
40435
|
+
**/
|
|
40436
|
+
findUniqueOrThrow<T extends TrolleyPaymentFindUniqueOrThrowArgs<ExtArgs>>(
|
|
40437
|
+
args?: SelectSubset<T, TrolleyPaymentFindUniqueOrThrowArgs<ExtArgs>>
|
|
40438
|
+
): Prisma__TrolleyPaymentClient<$Result.GetResult<Prisma.$TrolleyPaymentPayload<ExtArgs>, T, 'findUniqueOrThrow'>, never, ExtArgs>
|
|
40439
|
+
|
|
40440
|
+
/**
|
|
40441
|
+
* Find the first TrolleyPayment that matches the filter.
|
|
40442
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
40443
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
40444
|
+
* @param {TrolleyPaymentFindFirstArgs} args - Arguments to find a TrolleyPayment
|
|
40445
|
+
* @example
|
|
40446
|
+
* // Get one TrolleyPayment
|
|
40447
|
+
* const trolleyPayment = await prisma.trolleyPayment.findFirst({
|
|
40448
|
+
* where: {
|
|
40449
|
+
* // ... provide filter here
|
|
40450
|
+
* }
|
|
40451
|
+
* })
|
|
40452
|
+
**/
|
|
40453
|
+
findFirst<T extends TrolleyPaymentFindFirstArgs<ExtArgs>>(
|
|
40454
|
+
args?: SelectSubset<T, TrolleyPaymentFindFirstArgs<ExtArgs>>
|
|
40455
|
+
): Prisma__TrolleyPaymentClient<$Result.GetResult<Prisma.$TrolleyPaymentPayload<ExtArgs>, T, 'findFirst'> | null, null, ExtArgs>
|
|
40456
|
+
|
|
40457
|
+
/**
|
|
40458
|
+
* Find the first TrolleyPayment that matches the filter or
|
|
40459
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
40460
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
40461
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
40462
|
+
* @param {TrolleyPaymentFindFirstOrThrowArgs} args - Arguments to find a TrolleyPayment
|
|
40463
|
+
* @example
|
|
40464
|
+
* // Get one TrolleyPayment
|
|
40465
|
+
* const trolleyPayment = await prisma.trolleyPayment.findFirstOrThrow({
|
|
40466
|
+
* where: {
|
|
40467
|
+
* // ... provide filter here
|
|
40468
|
+
* }
|
|
40469
|
+
* })
|
|
40470
|
+
**/
|
|
40471
|
+
findFirstOrThrow<T extends TrolleyPaymentFindFirstOrThrowArgs<ExtArgs>>(
|
|
40472
|
+
args?: SelectSubset<T, TrolleyPaymentFindFirstOrThrowArgs<ExtArgs>>
|
|
40473
|
+
): Prisma__TrolleyPaymentClient<$Result.GetResult<Prisma.$TrolleyPaymentPayload<ExtArgs>, T, 'findFirstOrThrow'>, never, ExtArgs>
|
|
40474
|
+
|
|
40475
|
+
/**
|
|
40476
|
+
* Find zero or more TrolleyPayments that matches the filter.
|
|
40477
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
40478
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
40479
|
+
* @param {TrolleyPaymentFindManyArgs=} args - Arguments to filter and select certain fields only.
|
|
40480
|
+
* @example
|
|
40481
|
+
* // Get all TrolleyPayments
|
|
40482
|
+
* const trolleyPayments = await prisma.trolleyPayment.findMany()
|
|
40483
|
+
*
|
|
40484
|
+
* // Get first 10 TrolleyPayments
|
|
40485
|
+
* const trolleyPayments = await prisma.trolleyPayment.findMany({ take: 10 })
|
|
40486
|
+
*
|
|
40487
|
+
* // Only select the `id`
|
|
40488
|
+
* const trolleyPaymentWithIdOnly = await prisma.trolleyPayment.findMany({ select: { id: true } })
|
|
40489
|
+
*
|
|
40490
|
+
**/
|
|
40491
|
+
findMany<T extends TrolleyPaymentFindManyArgs<ExtArgs>>(
|
|
40492
|
+
args?: SelectSubset<T, TrolleyPaymentFindManyArgs<ExtArgs>>
|
|
40493
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TrolleyPaymentPayload<ExtArgs>, T, 'findMany'>>
|
|
40494
|
+
|
|
40495
|
+
/**
|
|
40496
|
+
* Create a TrolleyPayment.
|
|
40497
|
+
* @param {TrolleyPaymentCreateArgs} args - Arguments to create a TrolleyPayment.
|
|
40498
|
+
* @example
|
|
40499
|
+
* // Create one TrolleyPayment
|
|
40500
|
+
* const TrolleyPayment = await prisma.trolleyPayment.create({
|
|
40501
|
+
* data: {
|
|
40502
|
+
* // ... data to create a TrolleyPayment
|
|
40503
|
+
* }
|
|
40504
|
+
* })
|
|
40505
|
+
*
|
|
40506
|
+
**/
|
|
40507
|
+
create<T extends TrolleyPaymentCreateArgs<ExtArgs>>(
|
|
40508
|
+
args: SelectSubset<T, TrolleyPaymentCreateArgs<ExtArgs>>
|
|
40509
|
+
): Prisma__TrolleyPaymentClient<$Result.GetResult<Prisma.$TrolleyPaymentPayload<ExtArgs>, T, 'create'>, never, ExtArgs>
|
|
40510
|
+
|
|
40511
|
+
/**
|
|
40512
|
+
* Create many TrolleyPayments.
|
|
40513
|
+
* @param {TrolleyPaymentCreateManyArgs} args - Arguments to create many TrolleyPayments.
|
|
40514
|
+
* @example
|
|
40515
|
+
* // Create many TrolleyPayments
|
|
40516
|
+
* const trolleyPayment = await prisma.trolleyPayment.createMany({
|
|
40517
|
+
* data: {
|
|
40518
|
+
* // ... provide data here
|
|
40519
|
+
* }
|
|
40520
|
+
* })
|
|
40521
|
+
*
|
|
40522
|
+
**/
|
|
40523
|
+
createMany<T extends TrolleyPaymentCreateManyArgs<ExtArgs>>(
|
|
40524
|
+
args?: SelectSubset<T, TrolleyPaymentCreateManyArgs<ExtArgs>>
|
|
40525
|
+
): Prisma.PrismaPromise<BatchPayload>
|
|
40526
|
+
|
|
40527
|
+
/**
|
|
40528
|
+
* Delete a TrolleyPayment.
|
|
40529
|
+
* @param {TrolleyPaymentDeleteArgs} args - Arguments to delete one TrolleyPayment.
|
|
40530
|
+
* @example
|
|
40531
|
+
* // Delete one TrolleyPayment
|
|
40532
|
+
* const TrolleyPayment = await prisma.trolleyPayment.delete({
|
|
40533
|
+
* where: {
|
|
40534
|
+
* // ... filter to delete one TrolleyPayment
|
|
40535
|
+
* }
|
|
40536
|
+
* })
|
|
40537
|
+
*
|
|
40538
|
+
**/
|
|
40539
|
+
delete<T extends TrolleyPaymentDeleteArgs<ExtArgs>>(
|
|
40540
|
+
args: SelectSubset<T, TrolleyPaymentDeleteArgs<ExtArgs>>
|
|
40541
|
+
): Prisma__TrolleyPaymentClient<$Result.GetResult<Prisma.$TrolleyPaymentPayload<ExtArgs>, T, 'delete'>, never, ExtArgs>
|
|
40542
|
+
|
|
40543
|
+
/**
|
|
40544
|
+
* Update one TrolleyPayment.
|
|
40545
|
+
* @param {TrolleyPaymentUpdateArgs} args - Arguments to update one TrolleyPayment.
|
|
40546
|
+
* @example
|
|
40547
|
+
* // Update one TrolleyPayment
|
|
40548
|
+
* const trolleyPayment = await prisma.trolleyPayment.update({
|
|
40549
|
+
* where: {
|
|
40550
|
+
* // ... provide filter here
|
|
40551
|
+
* },
|
|
40552
|
+
* data: {
|
|
40553
|
+
* // ... provide data here
|
|
40554
|
+
* }
|
|
40555
|
+
* })
|
|
40556
|
+
*
|
|
40557
|
+
**/
|
|
40558
|
+
update<T extends TrolleyPaymentUpdateArgs<ExtArgs>>(
|
|
40559
|
+
args: SelectSubset<T, TrolleyPaymentUpdateArgs<ExtArgs>>
|
|
40560
|
+
): Prisma__TrolleyPaymentClient<$Result.GetResult<Prisma.$TrolleyPaymentPayload<ExtArgs>, T, 'update'>, never, ExtArgs>
|
|
40561
|
+
|
|
40562
|
+
/**
|
|
40563
|
+
* Delete zero or more TrolleyPayments.
|
|
40564
|
+
* @param {TrolleyPaymentDeleteManyArgs} args - Arguments to filter TrolleyPayments to delete.
|
|
40565
|
+
* @example
|
|
40566
|
+
* // Delete a few TrolleyPayments
|
|
40567
|
+
* const { count } = await prisma.trolleyPayment.deleteMany({
|
|
40568
|
+
* where: {
|
|
40569
|
+
* // ... provide filter here
|
|
40570
|
+
* }
|
|
40571
|
+
* })
|
|
40572
|
+
*
|
|
40573
|
+
**/
|
|
40574
|
+
deleteMany<T extends TrolleyPaymentDeleteManyArgs<ExtArgs>>(
|
|
40575
|
+
args?: SelectSubset<T, TrolleyPaymentDeleteManyArgs<ExtArgs>>
|
|
40576
|
+
): Prisma.PrismaPromise<BatchPayload>
|
|
40577
|
+
|
|
40578
|
+
/**
|
|
40579
|
+
* Update zero or more TrolleyPayments.
|
|
40580
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
40581
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
40582
|
+
* @param {TrolleyPaymentUpdateManyArgs} args - Arguments to update one or more rows.
|
|
40583
|
+
* @example
|
|
40584
|
+
* // Update many TrolleyPayments
|
|
40585
|
+
* const trolleyPayment = await prisma.trolleyPayment.updateMany({
|
|
40586
|
+
* where: {
|
|
40587
|
+
* // ... provide filter here
|
|
40588
|
+
* },
|
|
40589
|
+
* data: {
|
|
40590
|
+
* // ... provide data here
|
|
40591
|
+
* }
|
|
40592
|
+
* })
|
|
40593
|
+
*
|
|
40594
|
+
**/
|
|
40595
|
+
updateMany<T extends TrolleyPaymentUpdateManyArgs<ExtArgs>>(
|
|
40596
|
+
args: SelectSubset<T, TrolleyPaymentUpdateManyArgs<ExtArgs>>
|
|
40597
|
+
): Prisma.PrismaPromise<BatchPayload>
|
|
40598
|
+
|
|
40599
|
+
/**
|
|
40600
|
+
* Create or update one TrolleyPayment.
|
|
40601
|
+
* @param {TrolleyPaymentUpsertArgs} args - Arguments to update or create a TrolleyPayment.
|
|
40602
|
+
* @example
|
|
40603
|
+
* // Update or create a TrolleyPayment
|
|
40604
|
+
* const trolleyPayment = await prisma.trolleyPayment.upsert({
|
|
40605
|
+
* create: {
|
|
40606
|
+
* // ... data to create a TrolleyPayment
|
|
40607
|
+
* },
|
|
40608
|
+
* update: {
|
|
40609
|
+
* // ... in case it already exists, update
|
|
40610
|
+
* },
|
|
40611
|
+
* where: {
|
|
40612
|
+
* // ... the filter for the TrolleyPayment we want to update
|
|
40613
|
+
* }
|
|
40614
|
+
* })
|
|
40615
|
+
**/
|
|
40616
|
+
upsert<T extends TrolleyPaymentUpsertArgs<ExtArgs>>(
|
|
40617
|
+
args: SelectSubset<T, TrolleyPaymentUpsertArgs<ExtArgs>>
|
|
40618
|
+
): Prisma__TrolleyPaymentClient<$Result.GetResult<Prisma.$TrolleyPaymentPayload<ExtArgs>, T, 'upsert'>, never, ExtArgs>
|
|
40619
|
+
|
|
40620
|
+
/**
|
|
40621
|
+
* Count the number of TrolleyPayments.
|
|
40622
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
40623
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
40624
|
+
* @param {TrolleyPaymentCountArgs} args - Arguments to filter TrolleyPayments to count.
|
|
40625
|
+
* @example
|
|
40626
|
+
* // Count the number of TrolleyPayments
|
|
40627
|
+
* const count = await prisma.trolleyPayment.count({
|
|
40628
|
+
* where: {
|
|
40629
|
+
* // ... the filter for the TrolleyPayments we want to count
|
|
40630
|
+
* }
|
|
40631
|
+
* })
|
|
40632
|
+
**/
|
|
40633
|
+
count<T extends TrolleyPaymentCountArgs>(
|
|
40634
|
+
args?: Subset<T, TrolleyPaymentCountArgs>,
|
|
40635
|
+
): Prisma.PrismaPromise<
|
|
40636
|
+
T extends $Utils.Record<'select', any>
|
|
40637
|
+
? T['select'] extends true
|
|
40638
|
+
? number
|
|
40639
|
+
: GetScalarType<T['select'], TrolleyPaymentCountAggregateOutputType>
|
|
40640
|
+
: number
|
|
40641
|
+
>
|
|
40642
|
+
|
|
40643
|
+
/**
|
|
40644
|
+
* Allows you to perform aggregations operations on a TrolleyPayment.
|
|
40645
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
40646
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
40647
|
+
* @param {TrolleyPaymentAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
40648
|
+
* @example
|
|
40649
|
+
* // Ordered by age ascending
|
|
40650
|
+
* // Where email contains prisma.io
|
|
40651
|
+
* // Limited to the 10 users
|
|
40652
|
+
* const aggregations = await prisma.user.aggregate({
|
|
40653
|
+
* _avg: {
|
|
40654
|
+
* age: true,
|
|
40655
|
+
* },
|
|
40656
|
+
* where: {
|
|
40657
|
+
* email: {
|
|
40658
|
+
* contains: "prisma.io",
|
|
40659
|
+
* },
|
|
40660
|
+
* },
|
|
40661
|
+
* orderBy: {
|
|
40662
|
+
* age: "asc",
|
|
40663
|
+
* },
|
|
40664
|
+
* take: 10,
|
|
40665
|
+
* })
|
|
40666
|
+
**/
|
|
40667
|
+
aggregate<T extends TrolleyPaymentAggregateArgs>(args: Subset<T, TrolleyPaymentAggregateArgs>): Prisma.PrismaPromise<GetTrolleyPaymentAggregateType<T>>
|
|
40668
|
+
|
|
40669
|
+
/**
|
|
40670
|
+
* Group by TrolleyPayment.
|
|
40671
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
40672
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
40673
|
+
* @param {TrolleyPaymentGroupByArgs} args - Group by arguments.
|
|
40674
|
+
* @example
|
|
40675
|
+
* // Group by city, order by createdAt, get count
|
|
40676
|
+
* const result = await prisma.user.groupBy({
|
|
40677
|
+
* by: ['city', 'createdAt'],
|
|
40678
|
+
* orderBy: {
|
|
40679
|
+
* createdAt: true
|
|
40680
|
+
* },
|
|
40681
|
+
* _count: {
|
|
40682
|
+
* _all: true
|
|
40683
|
+
* },
|
|
40684
|
+
* })
|
|
40685
|
+
*
|
|
40686
|
+
**/
|
|
40687
|
+
groupBy<
|
|
40688
|
+
T extends TrolleyPaymentGroupByArgs,
|
|
40689
|
+
HasSelectOrTake extends Or<
|
|
40690
|
+
Extends<'skip', Keys<T>>,
|
|
40691
|
+
Extends<'take', Keys<T>>
|
|
40692
|
+
>,
|
|
40693
|
+
OrderByArg extends True extends HasSelectOrTake
|
|
40694
|
+
? { orderBy: TrolleyPaymentGroupByArgs['orderBy'] }
|
|
40695
|
+
: { orderBy?: TrolleyPaymentGroupByArgs['orderBy'] },
|
|
40696
|
+
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
40697
|
+
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
40698
|
+
ByValid extends Has<ByFields, OrderFields>,
|
|
40699
|
+
HavingFields extends GetHavingFields<T['having']>,
|
|
40700
|
+
HavingValid extends Has<ByFields, HavingFields>,
|
|
40701
|
+
ByEmpty extends T['by'] extends never[] ? True : False,
|
|
40702
|
+
InputErrors extends ByEmpty extends True
|
|
40703
|
+
? `Error: "by" must not be empty.`
|
|
40704
|
+
: HavingValid extends False
|
|
40705
|
+
? {
|
|
40706
|
+
[P in HavingFields]: P extends ByFields
|
|
40707
|
+
? never
|
|
40708
|
+
: P extends string
|
|
40709
|
+
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
|
40710
|
+
: [
|
|
40711
|
+
Error,
|
|
40712
|
+
'Field ',
|
|
40713
|
+
P,
|
|
40714
|
+
` in "having" needs to be provided in "by"`,
|
|
40715
|
+
]
|
|
40716
|
+
}[HavingFields]
|
|
40717
|
+
: 'take' extends Keys<T>
|
|
40718
|
+
? 'orderBy' extends Keys<T>
|
|
40719
|
+
? ByValid extends True
|
|
40720
|
+
? {}
|
|
40721
|
+
: {
|
|
40722
|
+
[P in OrderFields]: P extends ByFields
|
|
40723
|
+
? never
|
|
40724
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
40725
|
+
}[OrderFields]
|
|
40726
|
+
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
|
40727
|
+
: 'skip' extends Keys<T>
|
|
40728
|
+
? 'orderBy' extends Keys<T>
|
|
40729
|
+
? ByValid extends True
|
|
40730
|
+
? {}
|
|
40731
|
+
: {
|
|
40732
|
+
[P in OrderFields]: P extends ByFields
|
|
40733
|
+
? never
|
|
40734
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
40735
|
+
}[OrderFields]
|
|
40736
|
+
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
|
40737
|
+
: ByValid extends True
|
|
40738
|
+
? {}
|
|
40739
|
+
: {
|
|
40740
|
+
[P in OrderFields]: P extends ByFields
|
|
40741
|
+
? never
|
|
40742
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
40743
|
+
}[OrderFields]
|
|
40744
|
+
>(args: SubsetIntersection<T, TrolleyPaymentGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetTrolleyPaymentGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
40745
|
+
/**
|
|
40746
|
+
* Fields of the TrolleyPayment model
|
|
40747
|
+
*/
|
|
40748
|
+
readonly fields: TrolleyPaymentFieldRefs;
|
|
40749
|
+
}
|
|
40750
|
+
|
|
40751
|
+
/**
|
|
40752
|
+
* The delegate class that acts as a "Promise-like" for TrolleyPayment.
|
|
40753
|
+
* Why is this prefixed with `Prisma__`?
|
|
40754
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
40755
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
40756
|
+
*/
|
|
40757
|
+
export interface Prisma__TrolleyPaymentClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
40758
|
+
readonly [Symbol.toStringTag]: 'PrismaPromise';
|
|
40759
|
+
|
|
40760
|
+
optIn<T extends OptInDefaultArgs<ExtArgs> = {}>(args?: Subset<T, OptInDefaultArgs<ExtArgs>>): Prisma__OptInClient<$Result.GetResult<Prisma.$OptInPayload<ExtArgs>, T, 'findUniqueOrThrow'> | Null, Null, ExtArgs>;
|
|
40761
|
+
|
|
39528
40762
|
/**
|
|
39529
40763
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
39530
40764
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -39550,444 +40784,339 @@ export namespace Prisma {
|
|
|
39550
40784
|
|
|
39551
40785
|
|
|
39552
40786
|
/**
|
|
39553
|
-
* Fields of the
|
|
40787
|
+
* Fields of the TrolleyPayment model
|
|
39554
40788
|
*/
|
|
39555
|
-
interface
|
|
39556
|
-
readonly id: FieldRef<"
|
|
39557
|
-
readonly
|
|
39558
|
-
readonly
|
|
39559
|
-
readonly
|
|
39560
|
-
readonly
|
|
39561
|
-
readonly
|
|
39562
|
-
readonly
|
|
39563
|
-
readonly cancelRequested: FieldRef<"OptIn", 'DateTime'>
|
|
39564
|
-
readonly reinvited: FieldRef<"OptIn", 'DateTime'>
|
|
39565
|
-
readonly seen: FieldRef<"OptIn", 'Boolean'>
|
|
39566
|
-
readonly instructions: FieldRef<"OptIn", 'String'>
|
|
39567
|
-
readonly paymentAmount: FieldRef<"OptIn", 'Float'>
|
|
39568
|
-
readonly paymentStatus: FieldRef<"OptIn", 'String'>
|
|
39569
|
-
readonly extraData: FieldRef<"OptIn", 'Json'>
|
|
39570
|
-
readonly userId: FieldRef<"OptIn", 'Int'>
|
|
39571
|
-
readonly campaignId: FieldRef<"OptIn", 'Int'>
|
|
39572
|
-
readonly currentStepId: FieldRef<"OptIn", 'Int'>
|
|
40789
|
+
interface TrolleyPaymentFieldRefs {
|
|
40790
|
+
readonly id: FieldRef<"TrolleyPayment", 'Int'>
|
|
40791
|
+
readonly paymentId: FieldRef<"TrolleyPayment", 'String'>
|
|
40792
|
+
readonly type: FieldRef<"TrolleyPayment", 'trolleyPaymentType'>
|
|
40793
|
+
readonly status: FieldRef<"TrolleyPayment", 'trolleyPaymentStatus'>
|
|
40794
|
+
readonly optInId: FieldRef<"TrolleyPayment", 'Int'>
|
|
40795
|
+
readonly paymentAmount: FieldRef<"TrolleyPayment", 'Int'>
|
|
40796
|
+
readonly metaData: FieldRef<"TrolleyPayment", 'Json'>
|
|
39573
40797
|
}
|
|
39574
40798
|
|
|
39575
40799
|
|
|
39576
40800
|
// Custom InputTypes
|
|
39577
40801
|
|
|
39578
40802
|
/**
|
|
39579
|
-
*
|
|
40803
|
+
* TrolleyPayment findUnique
|
|
39580
40804
|
*/
|
|
39581
|
-
export type
|
|
40805
|
+
export type TrolleyPaymentFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39582
40806
|
/**
|
|
39583
|
-
* Select specific fields to fetch from the
|
|
40807
|
+
* Select specific fields to fetch from the TrolleyPayment
|
|
39584
40808
|
*/
|
|
39585
|
-
select?:
|
|
40809
|
+
select?: TrolleyPaymentSelect<ExtArgs> | null
|
|
39586
40810
|
/**
|
|
39587
40811
|
* Choose, which related nodes to fetch as well.
|
|
39588
40812
|
*/
|
|
39589
|
-
include?:
|
|
40813
|
+
include?: TrolleyPaymentInclude<ExtArgs> | null
|
|
39590
40814
|
/**
|
|
39591
|
-
* Filter, which
|
|
40815
|
+
* Filter, which TrolleyPayment to fetch.
|
|
39592
40816
|
*/
|
|
39593
|
-
where:
|
|
40817
|
+
where: TrolleyPaymentWhereUniqueInput
|
|
39594
40818
|
}
|
|
39595
40819
|
|
|
39596
40820
|
|
|
39597
40821
|
/**
|
|
39598
|
-
*
|
|
40822
|
+
* TrolleyPayment findUniqueOrThrow
|
|
39599
40823
|
*/
|
|
39600
|
-
export type
|
|
40824
|
+
export type TrolleyPaymentFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39601
40825
|
/**
|
|
39602
|
-
* Select specific fields to fetch from the
|
|
40826
|
+
* Select specific fields to fetch from the TrolleyPayment
|
|
39603
40827
|
*/
|
|
39604
|
-
select?:
|
|
40828
|
+
select?: TrolleyPaymentSelect<ExtArgs> | null
|
|
39605
40829
|
/**
|
|
39606
40830
|
* Choose, which related nodes to fetch as well.
|
|
39607
40831
|
*/
|
|
39608
|
-
include?:
|
|
40832
|
+
include?: TrolleyPaymentInclude<ExtArgs> | null
|
|
39609
40833
|
/**
|
|
39610
|
-
* Filter, which
|
|
40834
|
+
* Filter, which TrolleyPayment to fetch.
|
|
39611
40835
|
*/
|
|
39612
|
-
where:
|
|
40836
|
+
where: TrolleyPaymentWhereUniqueInput
|
|
39613
40837
|
}
|
|
39614
40838
|
|
|
39615
40839
|
|
|
39616
40840
|
/**
|
|
39617
|
-
*
|
|
40841
|
+
* TrolleyPayment findFirst
|
|
39618
40842
|
*/
|
|
39619
|
-
export type
|
|
40843
|
+
export type TrolleyPaymentFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39620
40844
|
/**
|
|
39621
|
-
* Select specific fields to fetch from the
|
|
40845
|
+
* Select specific fields to fetch from the TrolleyPayment
|
|
39622
40846
|
*/
|
|
39623
|
-
select?:
|
|
40847
|
+
select?: TrolleyPaymentSelect<ExtArgs> | null
|
|
39624
40848
|
/**
|
|
39625
40849
|
* Choose, which related nodes to fetch as well.
|
|
39626
40850
|
*/
|
|
39627
|
-
include?:
|
|
40851
|
+
include?: TrolleyPaymentInclude<ExtArgs> | null
|
|
39628
40852
|
/**
|
|
39629
|
-
* Filter, which
|
|
40853
|
+
* Filter, which TrolleyPayment to fetch.
|
|
39630
40854
|
*/
|
|
39631
|
-
where?:
|
|
40855
|
+
where?: TrolleyPaymentWhereInput
|
|
39632
40856
|
/**
|
|
39633
40857
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
39634
40858
|
*
|
|
39635
|
-
* Determine the order of
|
|
40859
|
+
* Determine the order of TrolleyPayments to fetch.
|
|
39636
40860
|
*/
|
|
39637
|
-
orderBy?:
|
|
40861
|
+
orderBy?: TrolleyPaymentOrderByWithRelationAndSearchRelevanceInput | TrolleyPaymentOrderByWithRelationAndSearchRelevanceInput[]
|
|
39638
40862
|
/**
|
|
39639
40863
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
39640
40864
|
*
|
|
39641
|
-
* Sets the position for searching for
|
|
40865
|
+
* Sets the position for searching for TrolleyPayments.
|
|
39642
40866
|
*/
|
|
39643
|
-
cursor?:
|
|
40867
|
+
cursor?: TrolleyPaymentWhereUniqueInput
|
|
39644
40868
|
/**
|
|
39645
40869
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
39646
40870
|
*
|
|
39647
|
-
* Take `±n`
|
|
40871
|
+
* Take `±n` TrolleyPayments from the position of the cursor.
|
|
39648
40872
|
*/
|
|
39649
40873
|
take?: number
|
|
39650
40874
|
/**
|
|
39651
40875
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
39652
40876
|
*
|
|
39653
|
-
* Skip the first `n`
|
|
40877
|
+
* Skip the first `n` TrolleyPayments.
|
|
39654
40878
|
*/
|
|
39655
40879
|
skip?: number
|
|
39656
40880
|
/**
|
|
39657
40881
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
39658
40882
|
*
|
|
39659
|
-
* Filter by unique combinations of
|
|
40883
|
+
* Filter by unique combinations of TrolleyPayments.
|
|
39660
40884
|
*/
|
|
39661
|
-
distinct?:
|
|
40885
|
+
distinct?: TrolleyPaymentScalarFieldEnum | TrolleyPaymentScalarFieldEnum[]
|
|
39662
40886
|
}
|
|
39663
40887
|
|
|
39664
40888
|
|
|
39665
40889
|
/**
|
|
39666
|
-
*
|
|
40890
|
+
* TrolleyPayment findFirstOrThrow
|
|
39667
40891
|
*/
|
|
39668
|
-
export type
|
|
40892
|
+
export type TrolleyPaymentFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39669
40893
|
/**
|
|
39670
|
-
* Select specific fields to fetch from the
|
|
40894
|
+
* Select specific fields to fetch from the TrolleyPayment
|
|
39671
40895
|
*/
|
|
39672
|
-
select?:
|
|
40896
|
+
select?: TrolleyPaymentSelect<ExtArgs> | null
|
|
39673
40897
|
/**
|
|
39674
40898
|
* Choose, which related nodes to fetch as well.
|
|
39675
40899
|
*/
|
|
39676
|
-
include?:
|
|
40900
|
+
include?: TrolleyPaymentInclude<ExtArgs> | null
|
|
39677
40901
|
/**
|
|
39678
|
-
* Filter, which
|
|
40902
|
+
* Filter, which TrolleyPayment to fetch.
|
|
39679
40903
|
*/
|
|
39680
|
-
where?:
|
|
40904
|
+
where?: TrolleyPaymentWhereInput
|
|
39681
40905
|
/**
|
|
39682
40906
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
39683
40907
|
*
|
|
39684
|
-
* Determine the order of
|
|
40908
|
+
* Determine the order of TrolleyPayments to fetch.
|
|
39685
40909
|
*/
|
|
39686
|
-
orderBy?:
|
|
40910
|
+
orderBy?: TrolleyPaymentOrderByWithRelationAndSearchRelevanceInput | TrolleyPaymentOrderByWithRelationAndSearchRelevanceInput[]
|
|
39687
40911
|
/**
|
|
39688
40912
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
39689
40913
|
*
|
|
39690
|
-
* Sets the position for searching for
|
|
40914
|
+
* Sets the position for searching for TrolleyPayments.
|
|
39691
40915
|
*/
|
|
39692
|
-
cursor?:
|
|
40916
|
+
cursor?: TrolleyPaymentWhereUniqueInput
|
|
39693
40917
|
/**
|
|
39694
40918
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
39695
40919
|
*
|
|
39696
|
-
* Take `±n`
|
|
40920
|
+
* Take `±n` TrolleyPayments from the position of the cursor.
|
|
39697
40921
|
*/
|
|
39698
40922
|
take?: number
|
|
39699
40923
|
/**
|
|
39700
40924
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
39701
40925
|
*
|
|
39702
|
-
* Skip the first `n`
|
|
40926
|
+
* Skip the first `n` TrolleyPayments.
|
|
39703
40927
|
*/
|
|
39704
40928
|
skip?: number
|
|
39705
40929
|
/**
|
|
39706
40930
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
39707
40931
|
*
|
|
39708
|
-
* Filter by unique combinations of
|
|
40932
|
+
* Filter by unique combinations of TrolleyPayments.
|
|
39709
40933
|
*/
|
|
39710
|
-
distinct?:
|
|
40934
|
+
distinct?: TrolleyPaymentScalarFieldEnum | TrolleyPaymentScalarFieldEnum[]
|
|
39711
40935
|
}
|
|
39712
40936
|
|
|
39713
40937
|
|
|
39714
40938
|
/**
|
|
39715
|
-
*
|
|
40939
|
+
* TrolleyPayment findMany
|
|
39716
40940
|
*/
|
|
39717
|
-
export type
|
|
40941
|
+
export type TrolleyPaymentFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39718
40942
|
/**
|
|
39719
|
-
* Select specific fields to fetch from the
|
|
40943
|
+
* Select specific fields to fetch from the TrolleyPayment
|
|
39720
40944
|
*/
|
|
39721
|
-
select?:
|
|
40945
|
+
select?: TrolleyPaymentSelect<ExtArgs> | null
|
|
39722
40946
|
/**
|
|
39723
40947
|
* Choose, which related nodes to fetch as well.
|
|
39724
40948
|
*/
|
|
39725
|
-
include?:
|
|
40949
|
+
include?: TrolleyPaymentInclude<ExtArgs> | null
|
|
39726
40950
|
/**
|
|
39727
|
-
* Filter, which
|
|
40951
|
+
* Filter, which TrolleyPayments to fetch.
|
|
39728
40952
|
*/
|
|
39729
|
-
where?:
|
|
40953
|
+
where?: TrolleyPaymentWhereInput
|
|
39730
40954
|
/**
|
|
39731
40955
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
39732
40956
|
*
|
|
39733
|
-
* Determine the order of
|
|
40957
|
+
* Determine the order of TrolleyPayments to fetch.
|
|
39734
40958
|
*/
|
|
39735
|
-
orderBy?:
|
|
40959
|
+
orderBy?: TrolleyPaymentOrderByWithRelationAndSearchRelevanceInput | TrolleyPaymentOrderByWithRelationAndSearchRelevanceInput[]
|
|
39736
40960
|
/**
|
|
39737
40961
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
39738
40962
|
*
|
|
39739
|
-
* Sets the position for listing
|
|
40963
|
+
* Sets the position for listing TrolleyPayments.
|
|
39740
40964
|
*/
|
|
39741
|
-
cursor?:
|
|
40965
|
+
cursor?: TrolleyPaymentWhereUniqueInput
|
|
39742
40966
|
/**
|
|
39743
40967
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
39744
40968
|
*
|
|
39745
|
-
* Take `±n`
|
|
40969
|
+
* Take `±n` TrolleyPayments from the position of the cursor.
|
|
39746
40970
|
*/
|
|
39747
40971
|
take?: number
|
|
39748
40972
|
/**
|
|
39749
40973
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
39750
40974
|
*
|
|
39751
|
-
* Skip the first `n`
|
|
40975
|
+
* Skip the first `n` TrolleyPayments.
|
|
39752
40976
|
*/
|
|
39753
40977
|
skip?: number
|
|
39754
|
-
distinct?:
|
|
40978
|
+
distinct?: TrolleyPaymentScalarFieldEnum | TrolleyPaymentScalarFieldEnum[]
|
|
39755
40979
|
}
|
|
39756
40980
|
|
|
39757
40981
|
|
|
39758
40982
|
/**
|
|
39759
|
-
*
|
|
40983
|
+
* TrolleyPayment create
|
|
39760
40984
|
*/
|
|
39761
|
-
export type
|
|
40985
|
+
export type TrolleyPaymentCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39762
40986
|
/**
|
|
39763
|
-
* Select specific fields to fetch from the
|
|
40987
|
+
* Select specific fields to fetch from the TrolleyPayment
|
|
39764
40988
|
*/
|
|
39765
|
-
select?:
|
|
40989
|
+
select?: TrolleyPaymentSelect<ExtArgs> | null
|
|
39766
40990
|
/**
|
|
39767
40991
|
* Choose, which related nodes to fetch as well.
|
|
39768
40992
|
*/
|
|
39769
|
-
include?:
|
|
40993
|
+
include?: TrolleyPaymentInclude<ExtArgs> | null
|
|
39770
40994
|
/**
|
|
39771
|
-
* The data needed to create a
|
|
40995
|
+
* The data needed to create a TrolleyPayment.
|
|
39772
40996
|
*/
|
|
39773
|
-
data: XOR<
|
|
40997
|
+
data: XOR<TrolleyPaymentCreateInput, TrolleyPaymentUncheckedCreateInput>
|
|
39774
40998
|
}
|
|
39775
40999
|
|
|
39776
41000
|
|
|
39777
41001
|
/**
|
|
39778
|
-
*
|
|
41002
|
+
* TrolleyPayment createMany
|
|
39779
41003
|
*/
|
|
39780
|
-
export type
|
|
41004
|
+
export type TrolleyPaymentCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39781
41005
|
/**
|
|
39782
|
-
* The data used to create many
|
|
41006
|
+
* The data used to create many TrolleyPayments.
|
|
39783
41007
|
*/
|
|
39784
|
-
data:
|
|
41008
|
+
data: TrolleyPaymentCreateManyInput | TrolleyPaymentCreateManyInput[]
|
|
39785
41009
|
skipDuplicates?: boolean
|
|
39786
41010
|
}
|
|
39787
41011
|
|
|
39788
41012
|
|
|
39789
41013
|
/**
|
|
39790
|
-
*
|
|
41014
|
+
* TrolleyPayment update
|
|
39791
41015
|
*/
|
|
39792
|
-
export type
|
|
41016
|
+
export type TrolleyPaymentUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39793
41017
|
/**
|
|
39794
|
-
* Select specific fields to fetch from the
|
|
41018
|
+
* Select specific fields to fetch from the TrolleyPayment
|
|
39795
41019
|
*/
|
|
39796
|
-
select?:
|
|
41020
|
+
select?: TrolleyPaymentSelect<ExtArgs> | null
|
|
39797
41021
|
/**
|
|
39798
41022
|
* Choose, which related nodes to fetch as well.
|
|
39799
41023
|
*/
|
|
39800
|
-
include?:
|
|
41024
|
+
include?: TrolleyPaymentInclude<ExtArgs> | null
|
|
39801
41025
|
/**
|
|
39802
|
-
* The data needed to update a
|
|
41026
|
+
* The data needed to update a TrolleyPayment.
|
|
39803
41027
|
*/
|
|
39804
|
-
data: XOR<
|
|
41028
|
+
data: XOR<TrolleyPaymentUpdateInput, TrolleyPaymentUncheckedUpdateInput>
|
|
39805
41029
|
/**
|
|
39806
|
-
* Choose, which
|
|
41030
|
+
* Choose, which TrolleyPayment to update.
|
|
39807
41031
|
*/
|
|
39808
|
-
where:
|
|
41032
|
+
where: TrolleyPaymentWhereUniqueInput
|
|
39809
41033
|
}
|
|
39810
41034
|
|
|
39811
41035
|
|
|
39812
41036
|
/**
|
|
39813
|
-
*
|
|
41037
|
+
* TrolleyPayment updateMany
|
|
39814
41038
|
*/
|
|
39815
|
-
export type
|
|
41039
|
+
export type TrolleyPaymentUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39816
41040
|
/**
|
|
39817
|
-
* The data used to update
|
|
41041
|
+
* The data used to update TrolleyPayments.
|
|
39818
41042
|
*/
|
|
39819
|
-
data: XOR<
|
|
41043
|
+
data: XOR<TrolleyPaymentUpdateManyMutationInput, TrolleyPaymentUncheckedUpdateManyInput>
|
|
39820
41044
|
/**
|
|
39821
|
-
* Filter which
|
|
41045
|
+
* Filter which TrolleyPayments to update
|
|
39822
41046
|
*/
|
|
39823
|
-
where?:
|
|
41047
|
+
where?: TrolleyPaymentWhereInput
|
|
39824
41048
|
}
|
|
39825
41049
|
|
|
39826
41050
|
|
|
39827
41051
|
/**
|
|
39828
|
-
*
|
|
41052
|
+
* TrolleyPayment upsert
|
|
39829
41053
|
*/
|
|
39830
|
-
export type
|
|
41054
|
+
export type TrolleyPaymentUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39831
41055
|
/**
|
|
39832
|
-
* Select specific fields to fetch from the
|
|
41056
|
+
* Select specific fields to fetch from the TrolleyPayment
|
|
39833
41057
|
*/
|
|
39834
|
-
select?:
|
|
41058
|
+
select?: TrolleyPaymentSelect<ExtArgs> | null
|
|
39835
41059
|
/**
|
|
39836
41060
|
* Choose, which related nodes to fetch as well.
|
|
39837
41061
|
*/
|
|
39838
|
-
include?:
|
|
41062
|
+
include?: TrolleyPaymentInclude<ExtArgs> | null
|
|
39839
41063
|
/**
|
|
39840
|
-
* The filter to search for the
|
|
41064
|
+
* The filter to search for the TrolleyPayment to update in case it exists.
|
|
39841
41065
|
*/
|
|
39842
|
-
where:
|
|
41066
|
+
where: TrolleyPaymentWhereUniqueInput
|
|
39843
41067
|
/**
|
|
39844
|
-
* In case the
|
|
41068
|
+
* In case the TrolleyPayment found by the `where` argument doesn't exist, create a new TrolleyPayment with this data.
|
|
39845
41069
|
*/
|
|
39846
|
-
create: XOR<
|
|
41070
|
+
create: XOR<TrolleyPaymentCreateInput, TrolleyPaymentUncheckedCreateInput>
|
|
39847
41071
|
/**
|
|
39848
|
-
* In case the
|
|
41072
|
+
* In case the TrolleyPayment was found with the provided `where` argument, update it with this data.
|
|
39849
41073
|
*/
|
|
39850
|
-
update: XOR<
|
|
41074
|
+
update: XOR<TrolleyPaymentUpdateInput, TrolleyPaymentUncheckedUpdateInput>
|
|
39851
41075
|
}
|
|
39852
41076
|
|
|
39853
41077
|
|
|
39854
41078
|
/**
|
|
39855
|
-
*
|
|
41079
|
+
* TrolleyPayment delete
|
|
39856
41080
|
*/
|
|
39857
|
-
export type
|
|
41081
|
+
export type TrolleyPaymentDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39858
41082
|
/**
|
|
39859
|
-
* Select specific fields to fetch from the
|
|
41083
|
+
* Select specific fields to fetch from the TrolleyPayment
|
|
39860
41084
|
*/
|
|
39861
|
-
select?:
|
|
41085
|
+
select?: TrolleyPaymentSelect<ExtArgs> | null
|
|
39862
41086
|
/**
|
|
39863
41087
|
* Choose, which related nodes to fetch as well.
|
|
39864
41088
|
*/
|
|
39865
|
-
include?:
|
|
41089
|
+
include?: TrolleyPaymentInclude<ExtArgs> | null
|
|
39866
41090
|
/**
|
|
39867
|
-
* Filter which
|
|
41091
|
+
* Filter which TrolleyPayment to delete.
|
|
39868
41092
|
*/
|
|
39869
|
-
where:
|
|
41093
|
+
where: TrolleyPaymentWhereUniqueInput
|
|
39870
41094
|
}
|
|
39871
41095
|
|
|
39872
41096
|
|
|
39873
41097
|
/**
|
|
39874
|
-
*
|
|
41098
|
+
* TrolleyPayment deleteMany
|
|
39875
41099
|
*/
|
|
39876
|
-
export type
|
|
41100
|
+
export type TrolleyPaymentDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39877
41101
|
/**
|
|
39878
|
-
* Filter which
|
|
41102
|
+
* Filter which TrolleyPayments to delete
|
|
39879
41103
|
*/
|
|
39880
|
-
where?:
|
|
41104
|
+
where?: TrolleyPaymentWhereInput
|
|
39881
41105
|
}
|
|
39882
41106
|
|
|
39883
41107
|
|
|
39884
41108
|
/**
|
|
39885
|
-
*
|
|
41109
|
+
* TrolleyPayment without action
|
|
39886
41110
|
*/
|
|
39887
|
-
export type
|
|
41111
|
+
export type TrolleyPaymentDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39888
41112
|
/**
|
|
39889
|
-
* Select specific fields to fetch from the
|
|
41113
|
+
* Select specific fields to fetch from the TrolleyPayment
|
|
39890
41114
|
*/
|
|
39891
|
-
select?:
|
|
41115
|
+
select?: TrolleyPaymentSelect<ExtArgs> | null
|
|
39892
41116
|
/**
|
|
39893
41117
|
* Choose, which related nodes to fetch as well.
|
|
39894
41118
|
*/
|
|
39895
|
-
include?:
|
|
39896
|
-
where?: CampaignStepWhereInput
|
|
39897
|
-
}
|
|
39898
|
-
|
|
39899
|
-
|
|
39900
|
-
/**
|
|
39901
|
-
* OptIn.variables
|
|
39902
|
-
*/
|
|
39903
|
-
export type OptIn$variablesArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39904
|
-
/**
|
|
39905
|
-
* Select specific fields to fetch from the OptInVariable
|
|
39906
|
-
*/
|
|
39907
|
-
select?: OptInVariableSelect<ExtArgs> | null
|
|
39908
|
-
/**
|
|
39909
|
-
* Choose, which related nodes to fetch as well.
|
|
39910
|
-
*/
|
|
39911
|
-
include?: OptInVariableInclude<ExtArgs> | null
|
|
39912
|
-
where?: OptInVariableWhereInput
|
|
39913
|
-
orderBy?: OptInVariableOrderByWithRelationAndSearchRelevanceInput | OptInVariableOrderByWithRelationAndSearchRelevanceInput[]
|
|
39914
|
-
cursor?: OptInVariableWhereUniqueInput
|
|
39915
|
-
take?: number
|
|
39916
|
-
skip?: number
|
|
39917
|
-
distinct?: OptInVariableScalarFieldEnum | OptInVariableScalarFieldEnum[]
|
|
39918
|
-
}
|
|
39919
|
-
|
|
39920
|
-
|
|
39921
|
-
/**
|
|
39922
|
-
* OptIn.optInSteps
|
|
39923
|
-
*/
|
|
39924
|
-
export type OptIn$optInStepsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39925
|
-
/**
|
|
39926
|
-
* Select specific fields to fetch from the OptInStep
|
|
39927
|
-
*/
|
|
39928
|
-
select?: OptInStepSelect<ExtArgs> | null
|
|
39929
|
-
/**
|
|
39930
|
-
* Choose, which related nodes to fetch as well.
|
|
39931
|
-
*/
|
|
39932
|
-
include?: OptInStepInclude<ExtArgs> | null
|
|
39933
|
-
where?: OptInStepWhereInput
|
|
39934
|
-
orderBy?: OptInStepOrderByWithRelationAndSearchRelevanceInput | OptInStepOrderByWithRelationAndSearchRelevanceInput[]
|
|
39935
|
-
cursor?: OptInStepWhereUniqueInput
|
|
39936
|
-
take?: number
|
|
39937
|
-
skip?: number
|
|
39938
|
-
distinct?: OptInStepScalarFieldEnum | OptInStepScalarFieldEnum[]
|
|
39939
|
-
}
|
|
39940
|
-
|
|
39941
|
-
|
|
39942
|
-
/**
|
|
39943
|
-
* OptIn.chat
|
|
39944
|
-
*/
|
|
39945
|
-
export type OptIn$chatArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39946
|
-
/**
|
|
39947
|
-
* Select specific fields to fetch from the Chat
|
|
39948
|
-
*/
|
|
39949
|
-
select?: ChatSelect<ExtArgs> | null
|
|
39950
|
-
/**
|
|
39951
|
-
* Choose, which related nodes to fetch as well.
|
|
39952
|
-
*/
|
|
39953
|
-
include?: ChatInclude<ExtArgs> | null
|
|
39954
|
-
where?: ChatWhereInput
|
|
39955
|
-
}
|
|
39956
|
-
|
|
39957
|
-
|
|
39958
|
-
/**
|
|
39959
|
-
* OptIn.campaignInvites
|
|
39960
|
-
*/
|
|
39961
|
-
export type OptIn$campaignInvitesArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39962
|
-
/**
|
|
39963
|
-
* Select specific fields to fetch from the CampaignInvite
|
|
39964
|
-
*/
|
|
39965
|
-
select?: CampaignInviteSelect<ExtArgs> | null
|
|
39966
|
-
/**
|
|
39967
|
-
* Choose, which related nodes to fetch as well.
|
|
39968
|
-
*/
|
|
39969
|
-
include?: CampaignInviteInclude<ExtArgs> | null
|
|
39970
|
-
where?: CampaignInviteWhereInput
|
|
39971
|
-
orderBy?: CampaignInviteOrderByWithRelationAndSearchRelevanceInput | CampaignInviteOrderByWithRelationAndSearchRelevanceInput[]
|
|
39972
|
-
cursor?: CampaignInviteWhereUniqueInput
|
|
39973
|
-
take?: number
|
|
39974
|
-
skip?: number
|
|
39975
|
-
distinct?: CampaignInviteScalarFieldEnum | CampaignInviteScalarFieldEnum[]
|
|
39976
|
-
}
|
|
39977
|
-
|
|
39978
|
-
|
|
39979
|
-
/**
|
|
39980
|
-
* OptIn without action
|
|
39981
|
-
*/
|
|
39982
|
-
export type OptInDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39983
|
-
/**
|
|
39984
|
-
* Select specific fields to fetch from the OptIn
|
|
39985
|
-
*/
|
|
39986
|
-
select?: OptInSelect<ExtArgs> | null
|
|
39987
|
-
/**
|
|
39988
|
-
* Choose, which related nodes to fetch as well.
|
|
39989
|
-
*/
|
|
39990
|
-
include?: OptInInclude<ExtArgs> | null
|
|
41119
|
+
include?: TrolleyPaymentInclude<ExtArgs> | null
|
|
39991
41120
|
}
|
|
39992
41121
|
|
|
39993
41122
|
|
|
@@ -40233,7 +41362,7 @@ export namespace Prisma {
|
|
|
40233
41362
|
type OptInVariableGetPayload<S extends boolean | null | undefined | OptInVariableDefaultArgs> = $Result.GetResult<Prisma.$OptInVariablePayload, S>
|
|
40234
41363
|
|
|
40235
41364
|
type OptInVariableCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
40236
|
-
Omit<OptInVariableFindManyArgs, 'select' | 'include' | 'distinct'
|
|
41365
|
+
Omit<OptInVariableFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
40237
41366
|
select?: OptInVariableCountAggregateInputType | true
|
|
40238
41367
|
}
|
|
40239
41368
|
|
|
@@ -41531,7 +42660,7 @@ export namespace Prisma {
|
|
|
41531
42660
|
type SocialPostGetPayload<S extends boolean | null | undefined | SocialPostDefaultArgs> = $Result.GetResult<Prisma.$SocialPostPayload, S>
|
|
41532
42661
|
|
|
41533
42662
|
type SocialPostCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
41534
|
-
Omit<SocialPostFindManyArgs, 'select' | 'include' | 'distinct'
|
|
42663
|
+
Omit<SocialPostFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
41535
42664
|
select?: SocialPostCountAggregateInputType | true
|
|
41536
42665
|
}
|
|
41537
42666
|
|
|
@@ -42585,7 +43714,7 @@ export namespace Prisma {
|
|
|
42585
43714
|
type SocialPostTagGetPayload<S extends boolean | null | undefined | SocialPostTagDefaultArgs> = $Result.GetResult<Prisma.$SocialPostTagPayload, S>
|
|
42586
43715
|
|
|
42587
43716
|
type SocialPostTagCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
42588
|
-
Omit<SocialPostTagFindManyArgs, 'select' | 'include' | 'distinct'
|
|
43717
|
+
Omit<SocialPostTagFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
42589
43718
|
select?: SocialPostTagCountAggregateInputType | true
|
|
42590
43719
|
}
|
|
42591
43720
|
|
|
@@ -43530,7 +44659,7 @@ export namespace Prisma {
|
|
|
43530
44659
|
type ImageGetPayload<S extends boolean | null | undefined | ImageDefaultArgs> = $Result.GetResult<Prisma.$ImagePayload, S>
|
|
43531
44660
|
|
|
43532
44661
|
type ImageCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
43533
|
-
Omit<ImageFindManyArgs, 'select' | 'include' | 'distinct'
|
|
44662
|
+
Omit<ImageFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
43534
44663
|
select?: ImageCountAggregateInputType | true
|
|
43535
44664
|
}
|
|
43536
44665
|
|
|
@@ -44475,7 +45604,7 @@ export namespace Prisma {
|
|
|
44475
45604
|
type BrandImageGetPayload<S extends boolean | null | undefined | BrandImageDefaultArgs> = $Result.GetResult<Prisma.$BrandImagePayload, S>
|
|
44476
45605
|
|
|
44477
45606
|
type BrandImageCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
44478
|
-
Omit<BrandImageFindManyArgs, 'select' | 'include' | 'distinct'
|
|
45607
|
+
Omit<BrandImageFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
44479
45608
|
select?: BrandImageCountAggregateInputType | true
|
|
44480
45609
|
}
|
|
44481
45610
|
|
|
@@ -45421,7 +46550,7 @@ export namespace Prisma {
|
|
|
45421
46550
|
type CountryGetPayload<S extends boolean | null | undefined | CountryDefaultArgs> = $Result.GetResult<Prisma.$CountryPayload, S>
|
|
45422
46551
|
|
|
45423
46552
|
type CountryCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
45424
|
-
Omit<CountryFindManyArgs, 'select' | 'include' | 'distinct'
|
|
46553
|
+
Omit<CountryFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
45425
46554
|
select?: CountryCountAggregateInputType | true
|
|
45426
46555
|
}
|
|
45427
46556
|
|
|
@@ -46410,7 +47539,7 @@ export namespace Prisma {
|
|
|
46410
47539
|
type StateGetPayload<S extends boolean | null | undefined | StateDefaultArgs> = $Result.GetResult<Prisma.$StatePayload, S>
|
|
46411
47540
|
|
|
46412
47541
|
type StateCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
46413
|
-
Omit<StateFindManyArgs, 'select' | 'include' | 'distinct'
|
|
47542
|
+
Omit<StateFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
46414
47543
|
select?: StateCountAggregateInputType | true
|
|
46415
47544
|
}
|
|
46416
47545
|
|
|
@@ -47450,7 +48579,7 @@ export namespace Prisma {
|
|
|
47450
48579
|
type PaymentTransactionGetPayload<S extends boolean | null | undefined | PaymentTransactionDefaultArgs> = $Result.GetResult<Prisma.$PaymentTransactionPayload, S>
|
|
47451
48580
|
|
|
47452
48581
|
type PaymentTransactionCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
47453
|
-
Omit<PaymentTransactionFindManyArgs, 'select' | 'include' | 'distinct'
|
|
48582
|
+
Omit<PaymentTransactionFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
47454
48583
|
select?: PaymentTransactionCountAggregateInputType | true
|
|
47455
48584
|
}
|
|
47456
48585
|
|
|
@@ -48507,7 +49636,7 @@ export namespace Prisma {
|
|
|
48507
49636
|
type BrandAffiliateLinkGetPayload<S extends boolean | null | undefined | BrandAffiliateLinkDefaultArgs> = $Result.GetResult<Prisma.$BrandAffiliateLinkPayload, S>
|
|
48508
49637
|
|
|
48509
49638
|
type BrandAffiliateLinkCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
48510
|
-
Omit<BrandAffiliateLinkFindManyArgs, 'select' | 'include' | 'distinct'
|
|
49639
|
+
Omit<BrandAffiliateLinkFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
48511
49640
|
select?: BrandAffiliateLinkCountAggregateInputType | true
|
|
48512
49641
|
}
|
|
48513
49642
|
|
|
@@ -49496,7 +50625,7 @@ export namespace Prisma {
|
|
|
49496
50625
|
type AffiliateLinkGetPayload<S extends boolean | null | undefined | AffiliateLinkDefaultArgs> = $Result.GetResult<Prisma.$AffiliateLinkPayload, S>
|
|
49497
50626
|
|
|
49498
50627
|
type AffiliateLinkCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
49499
|
-
Omit<AffiliateLinkFindManyArgs, 'select' | 'include' | 'distinct'
|
|
50628
|
+
Omit<AffiliateLinkFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
49500
50629
|
select?: AffiliateLinkCountAggregateInputType | true
|
|
49501
50630
|
}
|
|
49502
50631
|
|
|
@@ -50478,7 +51607,7 @@ export namespace Prisma {
|
|
|
50478
51607
|
type AffiliateClickGetPayload<S extends boolean | null | undefined | AffiliateClickDefaultArgs> = $Result.GetResult<Prisma.$AffiliateClickPayload, S>
|
|
50479
51608
|
|
|
50480
51609
|
type AffiliateClickCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
50481
|
-
Omit<AffiliateClickFindManyArgs, 'select' | 'include' | 'distinct'
|
|
51610
|
+
Omit<AffiliateClickFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
50482
51611
|
select?: AffiliateClickCountAggregateInputType | true
|
|
50483
51612
|
}
|
|
50484
51613
|
|
|
@@ -51515,7 +52644,7 @@ export namespace Prisma {
|
|
|
51515
52644
|
type AffiliateEventGetPayload<S extends boolean | null | undefined | AffiliateEventDefaultArgs> = $Result.GetResult<Prisma.$AffiliateEventPayload, S>
|
|
51516
52645
|
|
|
51517
52646
|
type AffiliateEventCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
51518
|
-
Omit<AffiliateEventFindManyArgs, 'select' | 'include' | 'distinct'
|
|
52647
|
+
Omit<AffiliateEventFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
51519
52648
|
select?: AffiliateEventCountAggregateInputType | true
|
|
51520
52649
|
}
|
|
51521
52650
|
|
|
@@ -52508,7 +53637,7 @@ export namespace Prisma {
|
|
|
52508
53637
|
type SavedFileGetPayload<S extends boolean | null | undefined | SavedFileDefaultArgs> = $Result.GetResult<Prisma.$SavedFilePayload, S>
|
|
52509
53638
|
|
|
52510
53639
|
type SavedFileCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
52511
|
-
Omit<SavedFileFindManyArgs, 'select' | 'include' | 'distinct'
|
|
53640
|
+
Omit<SavedFileFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
52512
53641
|
select?: SavedFileCountAggregateInputType | true
|
|
52513
53642
|
}
|
|
52514
53643
|
|
|
@@ -53549,7 +54678,7 @@ export namespace Prisma {
|
|
|
53549
54678
|
type CampaignInviteGetPayload<S extends boolean | null | undefined | CampaignInviteDefaultArgs> = $Result.GetResult<Prisma.$CampaignInvitePayload, S>
|
|
53550
54679
|
|
|
53551
54680
|
type CampaignInviteCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
53552
|
-
Omit<CampaignInviteFindManyArgs, 'select' | 'include' | 'distinct'
|
|
54681
|
+
Omit<CampaignInviteFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
53553
54682
|
select?: CampaignInviteCountAggregateInputType | true
|
|
53554
54683
|
}
|
|
53555
54684
|
|
|
@@ -54595,7 +55724,7 @@ export namespace Prisma {
|
|
|
54595
55724
|
type CreatorListGetPayload<S extends boolean | null | undefined | CreatorListDefaultArgs> = $Result.GetResult<Prisma.$CreatorListPayload, S>
|
|
54596
55725
|
|
|
54597
55726
|
type CreatorListCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
54598
|
-
Omit<CreatorListFindManyArgs, 'select' | 'include' | 'distinct'
|
|
55727
|
+
Omit<CreatorListFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
54599
55728
|
select?: CreatorListCountAggregateInputType | true
|
|
54600
55729
|
}
|
|
54601
55730
|
|
|
@@ -55667,7 +56796,7 @@ export namespace Prisma {
|
|
|
55667
56796
|
type CreatorListItemGetPayload<S extends boolean | null | undefined | CreatorListItemDefaultArgs> = $Result.GetResult<Prisma.$CreatorListItemPayload, S>
|
|
55668
56797
|
|
|
55669
56798
|
type CreatorListItemCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
55670
|
-
Omit<CreatorListItemFindManyArgs, 'select' | 'include' | 'distinct'
|
|
56799
|
+
Omit<CreatorListItemFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
55671
56800
|
select?: CreatorListItemCountAggregateInputType | true
|
|
55672
56801
|
}
|
|
55673
56802
|
|
|
@@ -56842,7 +57971,7 @@ export namespace Prisma {
|
|
|
56842
57971
|
type SocialProfileGetPayload<S extends boolean | null | undefined | SocialProfileDefaultArgs> = $Result.GetResult<Prisma.$SocialProfilePayload, S>
|
|
56843
57972
|
|
|
56844
57973
|
type SocialProfileCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
56845
|
-
Omit<SocialProfileFindManyArgs, 'select' | 'include' | 'distinct'
|
|
57974
|
+
Omit<SocialProfileFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
56846
57975
|
select?: SocialProfileCountAggregateInputType | true
|
|
56847
57976
|
}
|
|
56848
57977
|
|
|
@@ -57868,7 +58997,7 @@ export namespace Prisma {
|
|
|
57868
58997
|
type MessageTemplateGetPayload<S extends boolean | null | undefined | MessageTemplateDefaultArgs> = $Result.GetResult<Prisma.$MessageTemplatePayload, S>
|
|
57869
58998
|
|
|
57870
58999
|
type MessageTemplateCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
57871
|
-
Omit<MessageTemplateFindManyArgs, 'select' | 'include' | 'distinct'
|
|
59000
|
+
Omit<MessageTemplateFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
57872
59001
|
select?: MessageTemplateCountAggregateInputType | true
|
|
57873
59002
|
}
|
|
57874
59003
|
|
|
@@ -58851,7 +59980,7 @@ export namespace Prisma {
|
|
|
58851
59980
|
type EmailTemplateGetPayload<S extends boolean | null | undefined | EmailTemplateDefaultArgs> = $Result.GetResult<Prisma.$EmailTemplatePayload, S>
|
|
58852
59981
|
|
|
58853
59982
|
type EmailTemplateCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
58854
|
-
Omit<EmailTemplateFindManyArgs, 'select' | 'include' | 'distinct'
|
|
59983
|
+
Omit<EmailTemplateFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
58855
59984
|
select?: EmailTemplateCountAggregateInputType | true
|
|
58856
59985
|
}
|
|
58857
59986
|
|
|
@@ -59892,7 +61021,7 @@ export namespace Prisma {
|
|
|
59892
61021
|
type SocialListeningListGetPayload<S extends boolean | null | undefined | SocialListeningListDefaultArgs> = $Result.GetResult<Prisma.$SocialListeningListPayload, S>
|
|
59893
61022
|
|
|
59894
61023
|
type SocialListeningListCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
59895
|
-
Omit<SocialListeningListFindManyArgs, 'select' | 'include' | 'distinct'
|
|
61024
|
+
Omit<SocialListeningListFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
59896
61025
|
select?: SocialListeningListCountAggregateInputType | true
|
|
59897
61026
|
}
|
|
59898
61027
|
|
|
@@ -60862,7 +61991,7 @@ export namespace Prisma {
|
|
|
60862
61991
|
type ListToSocialPostGetPayload<S extends boolean | null | undefined | ListToSocialPostDefaultArgs> = $Result.GetResult<Prisma.$ListToSocialPostPayload, S>
|
|
60863
61992
|
|
|
60864
61993
|
type ListToSocialPostCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
60865
|
-
Omit<ListToSocialPostFindManyArgs, 'select' | 'include' | 'distinct'
|
|
61994
|
+
Omit<ListToSocialPostFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
60866
61995
|
select?: ListToSocialPostCountAggregateInputType | true
|
|
60867
61996
|
}
|
|
60868
61997
|
|
|
@@ -61804,7 +62933,7 @@ export namespace Prisma {
|
|
|
61804
62933
|
type OptInViewGetPayload<S extends boolean | null | undefined | OptInViewDefaultArgs> = $Result.GetResult<Prisma.$OptInViewPayload, S>
|
|
61805
62934
|
|
|
61806
62935
|
type OptInViewCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
61807
|
-
Omit<OptInViewFindManyArgs, 'select' | 'include' | 'distinct'
|
|
62936
|
+
Omit<OptInViewFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
61808
62937
|
select?: OptInViewCountAggregateInputType | true
|
|
61809
62938
|
}
|
|
61810
62939
|
|
|
@@ -62841,7 +63970,7 @@ export namespace Prisma {
|
|
|
62841
63970
|
type RakutenActivityGetPayload<S extends boolean | null | undefined | RakutenActivityDefaultArgs> = $Result.GetResult<Prisma.$RakutenActivityPayload, S>
|
|
62842
63971
|
|
|
62843
63972
|
type RakutenActivityCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
62844
|
-
Omit<RakutenActivityFindManyArgs, 'select' | 'include' | 'distinct'
|
|
63973
|
+
Omit<RakutenActivityFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
62845
63974
|
select?: RakutenActivityCountAggregateInputType | true
|
|
62846
63975
|
}
|
|
62847
63976
|
|
|
@@ -63843,7 +64972,7 @@ export namespace Prisma {
|
|
|
63843
64972
|
type ImpactRadiusEventGetPayload<S extends boolean | null | undefined | ImpactRadiusEventDefaultArgs> = $Result.GetResult<Prisma.$ImpactRadiusEventPayload, S>
|
|
63844
64973
|
|
|
63845
64974
|
type ImpactRadiusEventCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
63846
|
-
Omit<ImpactRadiusEventFindManyArgs, 'select' | 'include' | 'distinct'
|
|
64975
|
+
Omit<ImpactRadiusEventFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
63847
64976
|
select?: ImpactRadiusEventCountAggregateInputType | true
|
|
63848
64977
|
}
|
|
63849
64978
|
|
|
@@ -64826,7 +65955,7 @@ export namespace Prisma {
|
|
|
64826
65955
|
type CreatorSearchFilterGetPayload<S extends boolean | null | undefined | CreatorSearchFilterDefaultArgs> = $Result.GetResult<Prisma.$CreatorSearchFilterPayload, S>
|
|
64827
65956
|
|
|
64828
65957
|
type CreatorSearchFilterCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
64829
|
-
Omit<CreatorSearchFilterFindManyArgs, 'select' | 'include' | 'distinct'
|
|
65958
|
+
Omit<CreatorSearchFilterFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
64830
65959
|
select?: CreatorSearchFilterCountAggregateInputType | true
|
|
64831
65960
|
}
|
|
64832
65961
|
|
|
@@ -65841,7 +66970,7 @@ export namespace Prisma {
|
|
|
65841
66970
|
type SequenceGetPayload<S extends boolean | null | undefined | SequenceDefaultArgs> = $Result.GetResult<Prisma.$SequencePayload, S>
|
|
65842
66971
|
|
|
65843
66972
|
type SequenceCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
65844
|
-
Omit<SequenceFindManyArgs, 'select' | 'include' | 'distinct'
|
|
66973
|
+
Omit<SequenceFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
65845
66974
|
select?: SequenceCountAggregateInputType | true
|
|
65846
66975
|
}
|
|
65847
66976
|
|
|
@@ -66940,7 +68069,7 @@ export namespace Prisma {
|
|
|
66940
68069
|
type SequenceStepGetPayload<S extends boolean | null | undefined | SequenceStepDefaultArgs> = $Result.GetResult<Prisma.$SequenceStepPayload, S>
|
|
66941
68070
|
|
|
66942
68071
|
type SequenceStepCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
66943
|
-
Omit<SequenceStepFindManyArgs, 'select' | 'include' | 'distinct'
|
|
68072
|
+
Omit<SequenceStepFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
66944
68073
|
select?: SequenceStepCountAggregateInputType | true
|
|
66945
68074
|
}
|
|
66946
68075
|
|
|
@@ -67937,7 +69066,7 @@ export namespace Prisma {
|
|
|
67937
69066
|
type SequenceOutboundEmailGetPayload<S extends boolean | null | undefined | SequenceOutboundEmailDefaultArgs> = $Result.GetResult<Prisma.$SequenceOutboundEmailPayload, S>
|
|
67938
69067
|
|
|
67939
69068
|
type SequenceOutboundEmailCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
67940
|
-
Omit<SequenceOutboundEmailFindManyArgs, 'select' | 'include' | 'distinct'
|
|
69069
|
+
Omit<SequenceOutboundEmailFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
67941
69070
|
select?: SequenceOutboundEmailCountAggregateInputType | true
|
|
67942
69071
|
}
|
|
67943
69072
|
|
|
@@ -68904,7 +70033,7 @@ export namespace Prisma {
|
|
|
68904
70033
|
type SequenceInboundEmailGetPayload<S extends boolean | null | undefined | SequenceInboundEmailDefaultArgs> = $Result.GetResult<Prisma.$SequenceInboundEmailPayload, S>
|
|
68905
70034
|
|
|
68906
70035
|
type SequenceInboundEmailCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
68907
|
-
Omit<SequenceInboundEmailFindManyArgs, 'select' | 'include' | 'distinct'
|
|
70036
|
+
Omit<SequenceInboundEmailFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
68908
70037
|
select?: SequenceInboundEmailCountAggregateInputType | true
|
|
68909
70038
|
}
|
|
68910
70039
|
|
|
@@ -69865,7 +70994,7 @@ export namespace Prisma {
|
|
|
69865
70994
|
type SequenceImapCheckpointGetPayload<S extends boolean | null | undefined | SequenceImapCheckpointDefaultArgs> = $Result.GetResult<Prisma.$SequenceImapCheckpointPayload, S>
|
|
69866
70995
|
|
|
69867
70996
|
type SequenceImapCheckpointCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
69868
|
-
Omit<SequenceImapCheckpointFindManyArgs, 'select' | 'include' | 'distinct'
|
|
70997
|
+
Omit<SequenceImapCheckpointFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
69869
70998
|
select?: SequenceImapCheckpointCountAggregateInputType | true
|
|
69870
70999
|
}
|
|
69871
71000
|
|
|
@@ -71099,6 +72228,19 @@ export namespace Prisma {
|
|
|
71099
72228
|
export type OptInScalarFieldEnum = (typeof OptInScalarFieldEnum)[keyof typeof OptInScalarFieldEnum]
|
|
71100
72229
|
|
|
71101
72230
|
|
|
72231
|
+
export const TrolleyPaymentScalarFieldEnum: {
|
|
72232
|
+
id: 'id',
|
|
72233
|
+
paymentId: 'paymentId',
|
|
72234
|
+
type: 'type',
|
|
72235
|
+
status: 'status',
|
|
72236
|
+
optInId: 'optInId',
|
|
72237
|
+
paymentAmount: 'paymentAmount',
|
|
72238
|
+
metaData: 'metaData'
|
|
72239
|
+
};
|
|
72240
|
+
|
|
72241
|
+
export type TrolleyPaymentScalarFieldEnum = (typeof TrolleyPaymentScalarFieldEnum)[keyof typeof TrolleyPaymentScalarFieldEnum]
|
|
72242
|
+
|
|
72243
|
+
|
|
71102
72244
|
export const OptInVariableScalarFieldEnum: {
|
|
71103
72245
|
id: 'id',
|
|
71104
72246
|
optInId: 'optInId',
|
|
@@ -71791,6 +72933,13 @@ export namespace Prisma {
|
|
|
71791
72933
|
export type OptInOrderByRelevanceFieldEnum = (typeof OptInOrderByRelevanceFieldEnum)[keyof typeof OptInOrderByRelevanceFieldEnum]
|
|
71792
72934
|
|
|
71793
72935
|
|
|
72936
|
+
export const TrolleyPaymentOrderByRelevanceFieldEnum: {
|
|
72937
|
+
paymentId: 'paymentId'
|
|
72938
|
+
};
|
|
72939
|
+
|
|
72940
|
+
export type TrolleyPaymentOrderByRelevanceFieldEnum = (typeof TrolleyPaymentOrderByRelevanceFieldEnum)[keyof typeof TrolleyPaymentOrderByRelevanceFieldEnum]
|
|
72941
|
+
|
|
72942
|
+
|
|
71794
72943
|
export const SocialPostOrderByRelevanceFieldEnum: {
|
|
71795
72944
|
phylloId: 'phylloId',
|
|
71796
72945
|
title: 'title',
|
|
@@ -72062,6 +73211,34 @@ export namespace Prisma {
|
|
|
72062
73211
|
*/
|
|
72063
73212
|
export type BooleanFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Boolean'>
|
|
72064
73213
|
|
|
73214
|
+
|
|
73215
|
+
|
|
73216
|
+
/**
|
|
73217
|
+
* Reference to a field of type 'trolleyPaymentType'
|
|
73218
|
+
*/
|
|
73219
|
+
export type EnumtrolleyPaymentTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'trolleyPaymentType'>
|
|
73220
|
+
|
|
73221
|
+
|
|
73222
|
+
|
|
73223
|
+
/**
|
|
73224
|
+
* Reference to a field of type 'trolleyPaymentType[]'
|
|
73225
|
+
*/
|
|
73226
|
+
export type ListEnumtrolleyPaymentTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'trolleyPaymentType[]'>
|
|
73227
|
+
|
|
73228
|
+
|
|
73229
|
+
|
|
73230
|
+
/**
|
|
73231
|
+
* Reference to a field of type 'trolleyPaymentStatus'
|
|
73232
|
+
*/
|
|
73233
|
+
export type EnumtrolleyPaymentStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'trolleyPaymentStatus'>
|
|
73234
|
+
|
|
73235
|
+
|
|
73236
|
+
|
|
73237
|
+
/**
|
|
73238
|
+
* Reference to a field of type 'trolleyPaymentStatus[]'
|
|
73239
|
+
*/
|
|
73240
|
+
export type ListEnumtrolleyPaymentStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'trolleyPaymentStatus[]'>
|
|
73241
|
+
|
|
72065
73242
|
/**
|
|
72066
73243
|
* Deep Input Types
|
|
72067
73244
|
*/
|
|
@@ -74801,6 +75978,7 @@ export namespace Prisma {
|
|
|
74801
75978
|
optInSteps?: OptInStepListRelationFilter
|
|
74802
75979
|
chat?: XOR<ChatNullableRelationFilter, ChatWhereInput> | null
|
|
74803
75980
|
campaignInvites?: CampaignInviteListRelationFilter
|
|
75981
|
+
trolleyPayments?: TrolleyPaymentListRelationFilter
|
|
74804
75982
|
}
|
|
74805
75983
|
|
|
74806
75984
|
export type OptInOrderByWithRelationAndSearchRelevanceInput = {
|
|
@@ -74828,6 +76006,7 @@ export namespace Prisma {
|
|
|
74828
76006
|
optInSteps?: OptInStepOrderByRelationAggregateInput
|
|
74829
76007
|
chat?: ChatOrderByWithRelationAndSearchRelevanceInput
|
|
74830
76008
|
campaignInvites?: CampaignInviteOrderByRelationAggregateInput
|
|
76009
|
+
trolleyPayments?: TrolleyPaymentOrderByRelationAggregateInput
|
|
74831
76010
|
_relevance?: OptInOrderByRelevanceInput
|
|
74832
76011
|
}
|
|
74833
76012
|
|
|
@@ -74859,6 +76038,7 @@ export namespace Prisma {
|
|
|
74859
76038
|
optInSteps?: OptInStepListRelationFilter
|
|
74860
76039
|
chat?: XOR<ChatNullableRelationFilter, ChatWhereInput> | null
|
|
74861
76040
|
campaignInvites?: CampaignInviteListRelationFilter
|
|
76041
|
+
trolleyPayments?: TrolleyPaymentListRelationFilter
|
|
74862
76042
|
}, "id">
|
|
74863
76043
|
|
|
74864
76044
|
export type OptInOrderByWithAggregationInput = {
|
|
@@ -74909,6 +76089,74 @@ export namespace Prisma {
|
|
|
74909
76089
|
currentStepId?: IntNullableWithAggregatesFilter<"OptIn"> | number | null
|
|
74910
76090
|
}
|
|
74911
76091
|
|
|
76092
|
+
export type TrolleyPaymentWhereInput = {
|
|
76093
|
+
AND?: TrolleyPaymentWhereInput | TrolleyPaymentWhereInput[]
|
|
76094
|
+
OR?: TrolleyPaymentWhereInput[]
|
|
76095
|
+
NOT?: TrolleyPaymentWhereInput | TrolleyPaymentWhereInput[]
|
|
76096
|
+
id?: IntFilter<"TrolleyPayment"> | number
|
|
76097
|
+
paymentId?: StringFilter<"TrolleyPayment"> | string
|
|
76098
|
+
type?: EnumtrolleyPaymentTypeNullableFilter<"TrolleyPayment"> | $Enums.trolleyPaymentType | null
|
|
76099
|
+
status?: EnumtrolleyPaymentStatusFilter<"TrolleyPayment"> | $Enums.trolleyPaymentStatus
|
|
76100
|
+
optInId?: IntFilter<"TrolleyPayment"> | number
|
|
76101
|
+
paymentAmount?: IntFilter<"TrolleyPayment"> | number
|
|
76102
|
+
metaData?: JsonFilter<"TrolleyPayment">
|
|
76103
|
+
optIn?: XOR<OptInRelationFilter, OptInWhereInput>
|
|
76104
|
+
}
|
|
76105
|
+
|
|
76106
|
+
export type TrolleyPaymentOrderByWithRelationAndSearchRelevanceInput = {
|
|
76107
|
+
id?: SortOrder
|
|
76108
|
+
paymentId?: SortOrder
|
|
76109
|
+
type?: SortOrderInput | SortOrder
|
|
76110
|
+
status?: SortOrder
|
|
76111
|
+
optInId?: SortOrder
|
|
76112
|
+
paymentAmount?: SortOrder
|
|
76113
|
+
metaData?: SortOrder
|
|
76114
|
+
optIn?: OptInOrderByWithRelationAndSearchRelevanceInput
|
|
76115
|
+
_relevance?: TrolleyPaymentOrderByRelevanceInput
|
|
76116
|
+
}
|
|
76117
|
+
|
|
76118
|
+
export type TrolleyPaymentWhereUniqueInput = Prisma.AtLeast<{
|
|
76119
|
+
id?: number
|
|
76120
|
+
paymentId?: string
|
|
76121
|
+
AND?: TrolleyPaymentWhereInput | TrolleyPaymentWhereInput[]
|
|
76122
|
+
OR?: TrolleyPaymentWhereInput[]
|
|
76123
|
+
NOT?: TrolleyPaymentWhereInput | TrolleyPaymentWhereInput[]
|
|
76124
|
+
type?: EnumtrolleyPaymentTypeNullableFilter<"TrolleyPayment"> | $Enums.trolleyPaymentType | null
|
|
76125
|
+
status?: EnumtrolleyPaymentStatusFilter<"TrolleyPayment"> | $Enums.trolleyPaymentStatus
|
|
76126
|
+
optInId?: IntFilter<"TrolleyPayment"> | number
|
|
76127
|
+
paymentAmount?: IntFilter<"TrolleyPayment"> | number
|
|
76128
|
+
metaData?: JsonFilter<"TrolleyPayment">
|
|
76129
|
+
optIn?: XOR<OptInRelationFilter, OptInWhereInput>
|
|
76130
|
+
}, "id" | "paymentId">
|
|
76131
|
+
|
|
76132
|
+
export type TrolleyPaymentOrderByWithAggregationInput = {
|
|
76133
|
+
id?: SortOrder
|
|
76134
|
+
paymentId?: SortOrder
|
|
76135
|
+
type?: SortOrderInput | SortOrder
|
|
76136
|
+
status?: SortOrder
|
|
76137
|
+
optInId?: SortOrder
|
|
76138
|
+
paymentAmount?: SortOrder
|
|
76139
|
+
metaData?: SortOrder
|
|
76140
|
+
_count?: TrolleyPaymentCountOrderByAggregateInput
|
|
76141
|
+
_avg?: TrolleyPaymentAvgOrderByAggregateInput
|
|
76142
|
+
_max?: TrolleyPaymentMaxOrderByAggregateInput
|
|
76143
|
+
_min?: TrolleyPaymentMinOrderByAggregateInput
|
|
76144
|
+
_sum?: TrolleyPaymentSumOrderByAggregateInput
|
|
76145
|
+
}
|
|
76146
|
+
|
|
76147
|
+
export type TrolleyPaymentScalarWhereWithAggregatesInput = {
|
|
76148
|
+
AND?: TrolleyPaymentScalarWhereWithAggregatesInput | TrolleyPaymentScalarWhereWithAggregatesInput[]
|
|
76149
|
+
OR?: TrolleyPaymentScalarWhereWithAggregatesInput[]
|
|
76150
|
+
NOT?: TrolleyPaymentScalarWhereWithAggregatesInput | TrolleyPaymentScalarWhereWithAggregatesInput[]
|
|
76151
|
+
id?: IntWithAggregatesFilter<"TrolleyPayment"> | number
|
|
76152
|
+
paymentId?: StringWithAggregatesFilter<"TrolleyPayment"> | string
|
|
76153
|
+
type?: EnumtrolleyPaymentTypeNullableWithAggregatesFilter<"TrolleyPayment"> | $Enums.trolleyPaymentType | null
|
|
76154
|
+
status?: EnumtrolleyPaymentStatusWithAggregatesFilter<"TrolleyPayment"> | $Enums.trolleyPaymentStatus
|
|
76155
|
+
optInId?: IntWithAggregatesFilter<"TrolleyPayment"> | number
|
|
76156
|
+
paymentAmount?: IntWithAggregatesFilter<"TrolleyPayment"> | number
|
|
76157
|
+
metaData?: JsonWithAggregatesFilter<"TrolleyPayment">
|
|
76158
|
+
}
|
|
76159
|
+
|
|
74912
76160
|
export type OptInVariableWhereInput = {
|
|
74913
76161
|
AND?: OptInVariableWhereInput | OptInVariableWhereInput[]
|
|
74914
76162
|
OR?: OptInVariableWhereInput[]
|
|
@@ -80051,6 +81299,7 @@ export namespace Prisma {
|
|
|
80051
81299
|
optInSteps?: OptInStepCreateNestedManyWithoutOptInInput
|
|
80052
81300
|
chat?: ChatCreateNestedOneWithoutOptInInput
|
|
80053
81301
|
campaignInvites?: CampaignInviteCreateNestedManyWithoutOptInInput
|
|
81302
|
+
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
|
|
80054
81303
|
}
|
|
80055
81304
|
|
|
80056
81305
|
export type OptInUncheckedCreateInput = {
|
|
@@ -80075,6 +81324,7 @@ export namespace Prisma {
|
|
|
80075
81324
|
optInSteps?: OptInStepUncheckedCreateNestedManyWithoutOptInInput
|
|
80076
81325
|
chat?: ChatUncheckedCreateNestedOneWithoutOptInInput
|
|
80077
81326
|
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutOptInInput
|
|
81327
|
+
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
|
|
80078
81328
|
}
|
|
80079
81329
|
|
|
80080
81330
|
export type OptInUpdateInput = {
|
|
@@ -80098,6 +81348,7 @@ export namespace Prisma {
|
|
|
80098
81348
|
optInSteps?: OptInStepUpdateManyWithoutOptInNestedInput
|
|
80099
81349
|
chat?: ChatUpdateOneWithoutOptInNestedInput
|
|
80100
81350
|
campaignInvites?: CampaignInviteUpdateManyWithoutOptInNestedInput
|
|
81351
|
+
trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
|
|
80101
81352
|
}
|
|
80102
81353
|
|
|
80103
81354
|
export type OptInUncheckedUpdateInput = {
|
|
@@ -80122,6 +81373,7 @@ export namespace Prisma {
|
|
|
80122
81373
|
optInSteps?: OptInStepUncheckedUpdateManyWithoutOptInNestedInput
|
|
80123
81374
|
chat?: ChatUncheckedUpdateOneWithoutOptInNestedInput
|
|
80124
81375
|
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutOptInNestedInput
|
|
81376
|
+
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
|
|
80125
81377
|
}
|
|
80126
81378
|
|
|
80127
81379
|
export type OptInCreateManyInput = {
|
|
@@ -80180,6 +81432,72 @@ export namespace Prisma {
|
|
|
80180
81432
|
currentStepId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
80181
81433
|
}
|
|
80182
81434
|
|
|
81435
|
+
export type TrolleyPaymentCreateInput = {
|
|
81436
|
+
paymentId: string
|
|
81437
|
+
type?: $Enums.trolleyPaymentType | null
|
|
81438
|
+
status: $Enums.trolleyPaymentStatus
|
|
81439
|
+
paymentAmount: number
|
|
81440
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
81441
|
+
optIn: OptInCreateNestedOneWithoutTrolleyPaymentsInput
|
|
81442
|
+
}
|
|
81443
|
+
|
|
81444
|
+
export type TrolleyPaymentUncheckedCreateInput = {
|
|
81445
|
+
id?: number
|
|
81446
|
+
paymentId: string
|
|
81447
|
+
type?: $Enums.trolleyPaymentType | null
|
|
81448
|
+
status: $Enums.trolleyPaymentStatus
|
|
81449
|
+
optInId: number
|
|
81450
|
+
paymentAmount: number
|
|
81451
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
81452
|
+
}
|
|
81453
|
+
|
|
81454
|
+
export type TrolleyPaymentUpdateInput = {
|
|
81455
|
+
paymentId?: StringFieldUpdateOperationsInput | string
|
|
81456
|
+
type?: NullableEnumtrolleyPaymentTypeFieldUpdateOperationsInput | $Enums.trolleyPaymentType | null
|
|
81457
|
+
status?: EnumtrolleyPaymentStatusFieldUpdateOperationsInput | $Enums.trolleyPaymentStatus
|
|
81458
|
+
paymentAmount?: IntFieldUpdateOperationsInput | number
|
|
81459
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
81460
|
+
optIn?: OptInUpdateOneRequiredWithoutTrolleyPaymentsNestedInput
|
|
81461
|
+
}
|
|
81462
|
+
|
|
81463
|
+
export type TrolleyPaymentUncheckedUpdateInput = {
|
|
81464
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
81465
|
+
paymentId?: StringFieldUpdateOperationsInput | string
|
|
81466
|
+
type?: NullableEnumtrolleyPaymentTypeFieldUpdateOperationsInput | $Enums.trolleyPaymentType | null
|
|
81467
|
+
status?: EnumtrolleyPaymentStatusFieldUpdateOperationsInput | $Enums.trolleyPaymentStatus
|
|
81468
|
+
optInId?: IntFieldUpdateOperationsInput | number
|
|
81469
|
+
paymentAmount?: IntFieldUpdateOperationsInput | number
|
|
81470
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
81471
|
+
}
|
|
81472
|
+
|
|
81473
|
+
export type TrolleyPaymentCreateManyInput = {
|
|
81474
|
+
id?: number
|
|
81475
|
+
paymentId: string
|
|
81476
|
+
type?: $Enums.trolleyPaymentType | null
|
|
81477
|
+
status: $Enums.trolleyPaymentStatus
|
|
81478
|
+
optInId: number
|
|
81479
|
+
paymentAmount: number
|
|
81480
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
81481
|
+
}
|
|
81482
|
+
|
|
81483
|
+
export type TrolleyPaymentUpdateManyMutationInput = {
|
|
81484
|
+
paymentId?: StringFieldUpdateOperationsInput | string
|
|
81485
|
+
type?: NullableEnumtrolleyPaymentTypeFieldUpdateOperationsInput | $Enums.trolleyPaymentType | null
|
|
81486
|
+
status?: EnumtrolleyPaymentStatusFieldUpdateOperationsInput | $Enums.trolleyPaymentStatus
|
|
81487
|
+
paymentAmount?: IntFieldUpdateOperationsInput | number
|
|
81488
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
81489
|
+
}
|
|
81490
|
+
|
|
81491
|
+
export type TrolleyPaymentUncheckedUpdateManyInput = {
|
|
81492
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
81493
|
+
paymentId?: StringFieldUpdateOperationsInput | string
|
|
81494
|
+
type?: NullableEnumtrolleyPaymentTypeFieldUpdateOperationsInput | $Enums.trolleyPaymentType | null
|
|
81495
|
+
status?: EnumtrolleyPaymentStatusFieldUpdateOperationsInput | $Enums.trolleyPaymentStatus
|
|
81496
|
+
optInId?: IntFieldUpdateOperationsInput | number
|
|
81497
|
+
paymentAmount?: IntFieldUpdateOperationsInput | number
|
|
81498
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
81499
|
+
}
|
|
81500
|
+
|
|
80183
81501
|
export type OptInVariableCreateInput = {
|
|
80184
81502
|
optIn: OptInCreateNestedOneWithoutVariablesInput
|
|
80185
81503
|
variable: VariableCreateNestedOneWithoutOptInVariablesInput
|
|
@@ -84889,6 +86207,16 @@ export namespace Prisma {
|
|
|
84889
86207
|
isNot?: ChatWhereInput | null
|
|
84890
86208
|
}
|
|
84891
86209
|
|
|
86210
|
+
export type TrolleyPaymentListRelationFilter = {
|
|
86211
|
+
every?: TrolleyPaymentWhereInput
|
|
86212
|
+
some?: TrolleyPaymentWhereInput
|
|
86213
|
+
none?: TrolleyPaymentWhereInput
|
|
86214
|
+
}
|
|
86215
|
+
|
|
86216
|
+
export type TrolleyPaymentOrderByRelationAggregateInput = {
|
|
86217
|
+
_count?: SortOrder
|
|
86218
|
+
}
|
|
86219
|
+
|
|
84892
86220
|
export type OptInOrderByRelevanceInput = {
|
|
84893
86221
|
fields: OptInOrderByRelevanceFieldEnum | OptInOrderByRelevanceFieldEnum[]
|
|
84894
86222
|
sort: SortOrder
|
|
@@ -84967,6 +86295,86 @@ export namespace Prisma {
|
|
|
84967
86295
|
currentStepId?: SortOrder
|
|
84968
86296
|
}
|
|
84969
86297
|
|
|
86298
|
+
export type EnumtrolleyPaymentTypeNullableFilter<$PrismaModel = never> = {
|
|
86299
|
+
equals?: $Enums.trolleyPaymentType | EnumtrolleyPaymentTypeFieldRefInput<$PrismaModel> | null
|
|
86300
|
+
in?: $Enums.trolleyPaymentType[] | ListEnumtrolleyPaymentTypeFieldRefInput<$PrismaModel> | null
|
|
86301
|
+
notIn?: $Enums.trolleyPaymentType[] | ListEnumtrolleyPaymentTypeFieldRefInput<$PrismaModel> | null
|
|
86302
|
+
not?: NestedEnumtrolleyPaymentTypeNullableFilter<$PrismaModel> | $Enums.trolleyPaymentType | null
|
|
86303
|
+
}
|
|
86304
|
+
|
|
86305
|
+
export type EnumtrolleyPaymentStatusFilter<$PrismaModel = never> = {
|
|
86306
|
+
equals?: $Enums.trolleyPaymentStatus | EnumtrolleyPaymentStatusFieldRefInput<$PrismaModel>
|
|
86307
|
+
in?: $Enums.trolleyPaymentStatus[] | ListEnumtrolleyPaymentStatusFieldRefInput<$PrismaModel>
|
|
86308
|
+
notIn?: $Enums.trolleyPaymentStatus[] | ListEnumtrolleyPaymentStatusFieldRefInput<$PrismaModel>
|
|
86309
|
+
not?: NestedEnumtrolleyPaymentStatusFilter<$PrismaModel> | $Enums.trolleyPaymentStatus
|
|
86310
|
+
}
|
|
86311
|
+
|
|
86312
|
+
export type TrolleyPaymentOrderByRelevanceInput = {
|
|
86313
|
+
fields: TrolleyPaymentOrderByRelevanceFieldEnum | TrolleyPaymentOrderByRelevanceFieldEnum[]
|
|
86314
|
+
sort: SortOrder
|
|
86315
|
+
search: string
|
|
86316
|
+
}
|
|
86317
|
+
|
|
86318
|
+
export type TrolleyPaymentCountOrderByAggregateInput = {
|
|
86319
|
+
id?: SortOrder
|
|
86320
|
+
paymentId?: SortOrder
|
|
86321
|
+
type?: SortOrder
|
|
86322
|
+
status?: SortOrder
|
|
86323
|
+
optInId?: SortOrder
|
|
86324
|
+
paymentAmount?: SortOrder
|
|
86325
|
+
metaData?: SortOrder
|
|
86326
|
+
}
|
|
86327
|
+
|
|
86328
|
+
export type TrolleyPaymentAvgOrderByAggregateInput = {
|
|
86329
|
+
id?: SortOrder
|
|
86330
|
+
optInId?: SortOrder
|
|
86331
|
+
paymentAmount?: SortOrder
|
|
86332
|
+
}
|
|
86333
|
+
|
|
86334
|
+
export type TrolleyPaymentMaxOrderByAggregateInput = {
|
|
86335
|
+
id?: SortOrder
|
|
86336
|
+
paymentId?: SortOrder
|
|
86337
|
+
type?: SortOrder
|
|
86338
|
+
status?: SortOrder
|
|
86339
|
+
optInId?: SortOrder
|
|
86340
|
+
paymentAmount?: SortOrder
|
|
86341
|
+
}
|
|
86342
|
+
|
|
86343
|
+
export type TrolleyPaymentMinOrderByAggregateInput = {
|
|
86344
|
+
id?: SortOrder
|
|
86345
|
+
paymentId?: SortOrder
|
|
86346
|
+
type?: SortOrder
|
|
86347
|
+
status?: SortOrder
|
|
86348
|
+
optInId?: SortOrder
|
|
86349
|
+
paymentAmount?: SortOrder
|
|
86350
|
+
}
|
|
86351
|
+
|
|
86352
|
+
export type TrolleyPaymentSumOrderByAggregateInput = {
|
|
86353
|
+
id?: SortOrder
|
|
86354
|
+
optInId?: SortOrder
|
|
86355
|
+
paymentAmount?: SortOrder
|
|
86356
|
+
}
|
|
86357
|
+
|
|
86358
|
+
export type EnumtrolleyPaymentTypeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
86359
|
+
equals?: $Enums.trolleyPaymentType | EnumtrolleyPaymentTypeFieldRefInput<$PrismaModel> | null
|
|
86360
|
+
in?: $Enums.trolleyPaymentType[] | ListEnumtrolleyPaymentTypeFieldRefInput<$PrismaModel> | null
|
|
86361
|
+
notIn?: $Enums.trolleyPaymentType[] | ListEnumtrolleyPaymentTypeFieldRefInput<$PrismaModel> | null
|
|
86362
|
+
not?: NestedEnumtrolleyPaymentTypeNullableWithAggregatesFilter<$PrismaModel> | $Enums.trolleyPaymentType | null
|
|
86363
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
86364
|
+
_min?: NestedEnumtrolleyPaymentTypeNullableFilter<$PrismaModel>
|
|
86365
|
+
_max?: NestedEnumtrolleyPaymentTypeNullableFilter<$PrismaModel>
|
|
86366
|
+
}
|
|
86367
|
+
|
|
86368
|
+
export type EnumtrolleyPaymentStatusWithAggregatesFilter<$PrismaModel = never> = {
|
|
86369
|
+
equals?: $Enums.trolleyPaymentStatus | EnumtrolleyPaymentStatusFieldRefInput<$PrismaModel>
|
|
86370
|
+
in?: $Enums.trolleyPaymentStatus[] | ListEnumtrolleyPaymentStatusFieldRefInput<$PrismaModel>
|
|
86371
|
+
notIn?: $Enums.trolleyPaymentStatus[] | ListEnumtrolleyPaymentStatusFieldRefInput<$PrismaModel>
|
|
86372
|
+
not?: NestedEnumtrolleyPaymentStatusWithAggregatesFilter<$PrismaModel> | $Enums.trolleyPaymentStatus
|
|
86373
|
+
_count?: NestedIntFilter<$PrismaModel>
|
|
86374
|
+
_min?: NestedEnumtrolleyPaymentStatusFilter<$PrismaModel>
|
|
86375
|
+
_max?: NestedEnumtrolleyPaymentStatusFilter<$PrismaModel>
|
|
86376
|
+
}
|
|
86377
|
+
|
|
84970
86378
|
export type VariableOptionRelationFilter = {
|
|
84971
86379
|
is?: VariableOptionWhereInput
|
|
84972
86380
|
isNot?: VariableOptionWhereInput
|
|
@@ -90065,6 +91473,13 @@ export namespace Prisma {
|
|
|
90065
91473
|
connect?: CampaignInviteWhereUniqueInput | CampaignInviteWhereUniqueInput[]
|
|
90066
91474
|
}
|
|
90067
91475
|
|
|
91476
|
+
export type TrolleyPaymentCreateNestedManyWithoutOptInInput = {
|
|
91477
|
+
create?: XOR<TrolleyPaymentCreateWithoutOptInInput, TrolleyPaymentUncheckedCreateWithoutOptInInput> | TrolleyPaymentCreateWithoutOptInInput[] | TrolleyPaymentUncheckedCreateWithoutOptInInput[]
|
|
91478
|
+
connectOrCreate?: TrolleyPaymentCreateOrConnectWithoutOptInInput | TrolleyPaymentCreateOrConnectWithoutOptInInput[]
|
|
91479
|
+
createMany?: TrolleyPaymentCreateManyOptInInputEnvelope
|
|
91480
|
+
connect?: TrolleyPaymentWhereUniqueInput | TrolleyPaymentWhereUniqueInput[]
|
|
91481
|
+
}
|
|
91482
|
+
|
|
90068
91483
|
export type OptInVariableUncheckedCreateNestedManyWithoutOptInInput = {
|
|
90069
91484
|
create?: XOR<OptInVariableCreateWithoutOptInInput, OptInVariableUncheckedCreateWithoutOptInInput> | OptInVariableCreateWithoutOptInInput[] | OptInVariableUncheckedCreateWithoutOptInInput[]
|
|
90070
91485
|
connectOrCreate?: OptInVariableCreateOrConnectWithoutOptInInput | OptInVariableCreateOrConnectWithoutOptInInput[]
|
|
@@ -90092,6 +91507,13 @@ export namespace Prisma {
|
|
|
90092
91507
|
connect?: CampaignInviteWhereUniqueInput | CampaignInviteWhereUniqueInput[]
|
|
90093
91508
|
}
|
|
90094
91509
|
|
|
91510
|
+
export type TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput = {
|
|
91511
|
+
create?: XOR<TrolleyPaymentCreateWithoutOptInInput, TrolleyPaymentUncheckedCreateWithoutOptInInput> | TrolleyPaymentCreateWithoutOptInInput[] | TrolleyPaymentUncheckedCreateWithoutOptInInput[]
|
|
91512
|
+
connectOrCreate?: TrolleyPaymentCreateOrConnectWithoutOptInInput | TrolleyPaymentCreateOrConnectWithoutOptInInput[]
|
|
91513
|
+
createMany?: TrolleyPaymentCreateManyOptInInputEnvelope
|
|
91514
|
+
connect?: TrolleyPaymentWhereUniqueInput | TrolleyPaymentWhereUniqueInput[]
|
|
91515
|
+
}
|
|
91516
|
+
|
|
90095
91517
|
export type UserUpdateOneRequiredWithoutOptInsNestedInput = {
|
|
90096
91518
|
create?: XOR<UserCreateWithoutOptInsInput, UserUncheckedCreateWithoutOptInsInput>
|
|
90097
91519
|
connectOrCreate?: UserCreateOrConnectWithoutOptInsInput
|
|
@@ -90170,6 +91592,20 @@ export namespace Prisma {
|
|
|
90170
91592
|
deleteMany?: CampaignInviteScalarWhereInput | CampaignInviteScalarWhereInput[]
|
|
90171
91593
|
}
|
|
90172
91594
|
|
|
91595
|
+
export type TrolleyPaymentUpdateManyWithoutOptInNestedInput = {
|
|
91596
|
+
create?: XOR<TrolleyPaymentCreateWithoutOptInInput, TrolleyPaymentUncheckedCreateWithoutOptInInput> | TrolleyPaymentCreateWithoutOptInInput[] | TrolleyPaymentUncheckedCreateWithoutOptInInput[]
|
|
91597
|
+
connectOrCreate?: TrolleyPaymentCreateOrConnectWithoutOptInInput | TrolleyPaymentCreateOrConnectWithoutOptInInput[]
|
|
91598
|
+
upsert?: TrolleyPaymentUpsertWithWhereUniqueWithoutOptInInput | TrolleyPaymentUpsertWithWhereUniqueWithoutOptInInput[]
|
|
91599
|
+
createMany?: TrolleyPaymentCreateManyOptInInputEnvelope
|
|
91600
|
+
set?: TrolleyPaymentWhereUniqueInput | TrolleyPaymentWhereUniqueInput[]
|
|
91601
|
+
disconnect?: TrolleyPaymentWhereUniqueInput | TrolleyPaymentWhereUniqueInput[]
|
|
91602
|
+
delete?: TrolleyPaymentWhereUniqueInput | TrolleyPaymentWhereUniqueInput[]
|
|
91603
|
+
connect?: TrolleyPaymentWhereUniqueInput | TrolleyPaymentWhereUniqueInput[]
|
|
91604
|
+
update?: TrolleyPaymentUpdateWithWhereUniqueWithoutOptInInput | TrolleyPaymentUpdateWithWhereUniqueWithoutOptInInput[]
|
|
91605
|
+
updateMany?: TrolleyPaymentUpdateManyWithWhereWithoutOptInInput | TrolleyPaymentUpdateManyWithWhereWithoutOptInInput[]
|
|
91606
|
+
deleteMany?: TrolleyPaymentScalarWhereInput | TrolleyPaymentScalarWhereInput[]
|
|
91607
|
+
}
|
|
91608
|
+
|
|
90173
91609
|
export type OptInVariableUncheckedUpdateManyWithoutOptInNestedInput = {
|
|
90174
91610
|
create?: XOR<OptInVariableCreateWithoutOptInInput, OptInVariableUncheckedCreateWithoutOptInInput> | OptInVariableCreateWithoutOptInInput[] | OptInVariableUncheckedCreateWithoutOptInInput[]
|
|
90175
91611
|
connectOrCreate?: OptInVariableCreateOrConnectWithoutOptInInput | OptInVariableCreateOrConnectWithoutOptInInput[]
|
|
@@ -90222,6 +91658,42 @@ export namespace Prisma {
|
|
|
90222
91658
|
deleteMany?: CampaignInviteScalarWhereInput | CampaignInviteScalarWhereInput[]
|
|
90223
91659
|
}
|
|
90224
91660
|
|
|
91661
|
+
export type TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput = {
|
|
91662
|
+
create?: XOR<TrolleyPaymentCreateWithoutOptInInput, TrolleyPaymentUncheckedCreateWithoutOptInInput> | TrolleyPaymentCreateWithoutOptInInput[] | TrolleyPaymentUncheckedCreateWithoutOptInInput[]
|
|
91663
|
+
connectOrCreate?: TrolleyPaymentCreateOrConnectWithoutOptInInput | TrolleyPaymentCreateOrConnectWithoutOptInInput[]
|
|
91664
|
+
upsert?: TrolleyPaymentUpsertWithWhereUniqueWithoutOptInInput | TrolleyPaymentUpsertWithWhereUniqueWithoutOptInInput[]
|
|
91665
|
+
createMany?: TrolleyPaymentCreateManyOptInInputEnvelope
|
|
91666
|
+
set?: TrolleyPaymentWhereUniqueInput | TrolleyPaymentWhereUniqueInput[]
|
|
91667
|
+
disconnect?: TrolleyPaymentWhereUniqueInput | TrolleyPaymentWhereUniqueInput[]
|
|
91668
|
+
delete?: TrolleyPaymentWhereUniqueInput | TrolleyPaymentWhereUniqueInput[]
|
|
91669
|
+
connect?: TrolleyPaymentWhereUniqueInput | TrolleyPaymentWhereUniqueInput[]
|
|
91670
|
+
update?: TrolleyPaymentUpdateWithWhereUniqueWithoutOptInInput | TrolleyPaymentUpdateWithWhereUniqueWithoutOptInInput[]
|
|
91671
|
+
updateMany?: TrolleyPaymentUpdateManyWithWhereWithoutOptInInput | TrolleyPaymentUpdateManyWithWhereWithoutOptInInput[]
|
|
91672
|
+
deleteMany?: TrolleyPaymentScalarWhereInput | TrolleyPaymentScalarWhereInput[]
|
|
91673
|
+
}
|
|
91674
|
+
|
|
91675
|
+
export type OptInCreateNestedOneWithoutTrolleyPaymentsInput = {
|
|
91676
|
+
create?: XOR<OptInCreateWithoutTrolleyPaymentsInput, OptInUncheckedCreateWithoutTrolleyPaymentsInput>
|
|
91677
|
+
connectOrCreate?: OptInCreateOrConnectWithoutTrolleyPaymentsInput
|
|
91678
|
+
connect?: OptInWhereUniqueInput
|
|
91679
|
+
}
|
|
91680
|
+
|
|
91681
|
+
export type NullableEnumtrolleyPaymentTypeFieldUpdateOperationsInput = {
|
|
91682
|
+
set?: $Enums.trolleyPaymentType | null
|
|
91683
|
+
}
|
|
91684
|
+
|
|
91685
|
+
export type EnumtrolleyPaymentStatusFieldUpdateOperationsInput = {
|
|
91686
|
+
set?: $Enums.trolleyPaymentStatus
|
|
91687
|
+
}
|
|
91688
|
+
|
|
91689
|
+
export type OptInUpdateOneRequiredWithoutTrolleyPaymentsNestedInput = {
|
|
91690
|
+
create?: XOR<OptInCreateWithoutTrolleyPaymentsInput, OptInUncheckedCreateWithoutTrolleyPaymentsInput>
|
|
91691
|
+
connectOrCreate?: OptInCreateOrConnectWithoutTrolleyPaymentsInput
|
|
91692
|
+
upsert?: OptInUpsertWithoutTrolleyPaymentsInput
|
|
91693
|
+
connect?: OptInWhereUniqueInput
|
|
91694
|
+
update?: XOR<XOR<OptInUpdateToOneWithWhereWithoutTrolleyPaymentsInput, OptInUpdateWithoutTrolleyPaymentsInput>, OptInUncheckedUpdateWithoutTrolleyPaymentsInput>
|
|
91695
|
+
}
|
|
91696
|
+
|
|
90225
91697
|
export type OptInCreateNestedOneWithoutVariablesInput = {
|
|
90226
91698
|
create?: XOR<OptInCreateWithoutVariablesInput, OptInUncheckedCreateWithoutVariablesInput>
|
|
90227
91699
|
connectOrCreate?: OptInCreateOrConnectWithoutVariablesInput
|
|
@@ -92150,6 +93622,40 @@ export namespace Prisma {
|
|
|
92150
93622
|
_max?: NestedBoolFilter<$PrismaModel>
|
|
92151
93623
|
}
|
|
92152
93624
|
|
|
93625
|
+
export type NestedEnumtrolleyPaymentTypeNullableFilter<$PrismaModel = never> = {
|
|
93626
|
+
equals?: $Enums.trolleyPaymentType | EnumtrolleyPaymentTypeFieldRefInput<$PrismaModel> | null
|
|
93627
|
+
in?: $Enums.trolleyPaymentType[] | ListEnumtrolleyPaymentTypeFieldRefInput<$PrismaModel> | null
|
|
93628
|
+
notIn?: $Enums.trolleyPaymentType[] | ListEnumtrolleyPaymentTypeFieldRefInput<$PrismaModel> | null
|
|
93629
|
+
not?: NestedEnumtrolleyPaymentTypeNullableFilter<$PrismaModel> | $Enums.trolleyPaymentType | null
|
|
93630
|
+
}
|
|
93631
|
+
|
|
93632
|
+
export type NestedEnumtrolleyPaymentStatusFilter<$PrismaModel = never> = {
|
|
93633
|
+
equals?: $Enums.trolleyPaymentStatus | EnumtrolleyPaymentStatusFieldRefInput<$PrismaModel>
|
|
93634
|
+
in?: $Enums.trolleyPaymentStatus[] | ListEnumtrolleyPaymentStatusFieldRefInput<$PrismaModel>
|
|
93635
|
+
notIn?: $Enums.trolleyPaymentStatus[] | ListEnumtrolleyPaymentStatusFieldRefInput<$PrismaModel>
|
|
93636
|
+
not?: NestedEnumtrolleyPaymentStatusFilter<$PrismaModel> | $Enums.trolleyPaymentStatus
|
|
93637
|
+
}
|
|
93638
|
+
|
|
93639
|
+
export type NestedEnumtrolleyPaymentTypeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
93640
|
+
equals?: $Enums.trolleyPaymentType | EnumtrolleyPaymentTypeFieldRefInput<$PrismaModel> | null
|
|
93641
|
+
in?: $Enums.trolleyPaymentType[] | ListEnumtrolleyPaymentTypeFieldRefInput<$PrismaModel> | null
|
|
93642
|
+
notIn?: $Enums.trolleyPaymentType[] | ListEnumtrolleyPaymentTypeFieldRefInput<$PrismaModel> | null
|
|
93643
|
+
not?: NestedEnumtrolleyPaymentTypeNullableWithAggregatesFilter<$PrismaModel> | $Enums.trolleyPaymentType | null
|
|
93644
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
93645
|
+
_min?: NestedEnumtrolleyPaymentTypeNullableFilter<$PrismaModel>
|
|
93646
|
+
_max?: NestedEnumtrolleyPaymentTypeNullableFilter<$PrismaModel>
|
|
93647
|
+
}
|
|
93648
|
+
|
|
93649
|
+
export type NestedEnumtrolleyPaymentStatusWithAggregatesFilter<$PrismaModel = never> = {
|
|
93650
|
+
equals?: $Enums.trolleyPaymentStatus | EnumtrolleyPaymentStatusFieldRefInput<$PrismaModel>
|
|
93651
|
+
in?: $Enums.trolleyPaymentStatus[] | ListEnumtrolleyPaymentStatusFieldRefInput<$PrismaModel>
|
|
93652
|
+
notIn?: $Enums.trolleyPaymentStatus[] | ListEnumtrolleyPaymentStatusFieldRefInput<$PrismaModel>
|
|
93653
|
+
not?: NestedEnumtrolleyPaymentStatusWithAggregatesFilter<$PrismaModel> | $Enums.trolleyPaymentStatus
|
|
93654
|
+
_count?: NestedIntFilter<$PrismaModel>
|
|
93655
|
+
_min?: NestedEnumtrolleyPaymentStatusFilter<$PrismaModel>
|
|
93656
|
+
_max?: NestedEnumtrolleyPaymentStatusFilter<$PrismaModel>
|
|
93657
|
+
}
|
|
93658
|
+
|
|
92153
93659
|
export type UserCreateWithoutReferredUsersInput = {
|
|
92154
93660
|
role: string
|
|
92155
93661
|
email?: string | null
|
|
@@ -92699,6 +94205,7 @@ export namespace Prisma {
|
|
|
92699
94205
|
optInSteps?: OptInStepCreateNestedManyWithoutOptInInput
|
|
92700
94206
|
chat?: ChatCreateNestedOneWithoutOptInInput
|
|
92701
94207
|
campaignInvites?: CampaignInviteCreateNestedManyWithoutOptInInput
|
|
94208
|
+
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
|
|
92702
94209
|
}
|
|
92703
94210
|
|
|
92704
94211
|
export type OptInUncheckedCreateWithoutUserInput = {
|
|
@@ -92722,6 +94229,7 @@ export namespace Prisma {
|
|
|
92722
94229
|
optInSteps?: OptInStepUncheckedCreateNestedManyWithoutOptInInput
|
|
92723
94230
|
chat?: ChatUncheckedCreateNestedOneWithoutOptInInput
|
|
92724
94231
|
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutOptInInput
|
|
94232
|
+
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
|
|
92725
94233
|
}
|
|
92726
94234
|
|
|
92727
94235
|
export type OptInCreateOrConnectWithoutUserInput = {
|
|
@@ -99333,6 +100841,7 @@ export namespace Prisma {
|
|
|
99333
100841
|
variables?: OptInVariableCreateNestedManyWithoutOptInInput
|
|
99334
100842
|
optInSteps?: OptInStepCreateNestedManyWithoutOptInInput
|
|
99335
100843
|
campaignInvites?: CampaignInviteCreateNestedManyWithoutOptInInput
|
|
100844
|
+
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
|
|
99336
100845
|
}
|
|
99337
100846
|
|
|
99338
100847
|
export type OptInUncheckedCreateWithoutChatInput = {
|
|
@@ -99356,6 +100865,7 @@ export namespace Prisma {
|
|
|
99356
100865
|
variables?: OptInVariableUncheckedCreateNestedManyWithoutOptInInput
|
|
99357
100866
|
optInSteps?: OptInStepUncheckedCreateNestedManyWithoutOptInInput
|
|
99358
100867
|
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutOptInInput
|
|
100868
|
+
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
|
|
99359
100869
|
}
|
|
99360
100870
|
|
|
99361
100871
|
export type OptInCreateOrConnectWithoutChatInput = {
|
|
@@ -99425,6 +100935,7 @@ export namespace Prisma {
|
|
|
99425
100935
|
variables?: OptInVariableUpdateManyWithoutOptInNestedInput
|
|
99426
100936
|
optInSteps?: OptInStepUpdateManyWithoutOptInNestedInput
|
|
99427
100937
|
campaignInvites?: CampaignInviteUpdateManyWithoutOptInNestedInput
|
|
100938
|
+
trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
|
|
99428
100939
|
}
|
|
99429
100940
|
|
|
99430
100941
|
export type OptInUncheckedUpdateWithoutChatInput = {
|
|
@@ -99448,6 +100959,7 @@ export namespace Prisma {
|
|
|
99448
100959
|
variables?: OptInVariableUncheckedUpdateManyWithoutOptInNestedInput
|
|
99449
100960
|
optInSteps?: OptInStepUncheckedUpdateManyWithoutOptInNestedInput
|
|
99450
100961
|
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutOptInNestedInput
|
|
100962
|
+
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
|
|
99451
100963
|
}
|
|
99452
100964
|
|
|
99453
100965
|
export type MessageUpsertWithWhereUniqueWithoutChatInput = {
|
|
@@ -99765,6 +101277,7 @@ export namespace Prisma {
|
|
|
99765
101277
|
optInSteps?: OptInStepCreateNestedManyWithoutOptInInput
|
|
99766
101278
|
chat?: ChatCreateNestedOneWithoutOptInInput
|
|
99767
101279
|
campaignInvites?: CampaignInviteCreateNestedManyWithoutOptInInput
|
|
101280
|
+
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
|
|
99768
101281
|
}
|
|
99769
101282
|
|
|
99770
101283
|
export type OptInUncheckedCreateWithoutCampaignInput = {
|
|
@@ -99788,6 +101301,7 @@ export namespace Prisma {
|
|
|
99788
101301
|
optInSteps?: OptInStepUncheckedCreateNestedManyWithoutOptInInput
|
|
99789
101302
|
chat?: ChatUncheckedCreateNestedOneWithoutOptInInput
|
|
99790
101303
|
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutOptInInput
|
|
101304
|
+
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
|
|
99791
101305
|
}
|
|
99792
101306
|
|
|
99793
101307
|
export type OptInCreateOrConnectWithoutCampaignInput = {
|
|
@@ -102632,6 +104146,7 @@ export namespace Prisma {
|
|
|
102632
104146
|
optInSteps?: OptInStepCreateNestedManyWithoutOptInInput
|
|
102633
104147
|
chat?: ChatCreateNestedOneWithoutOptInInput
|
|
102634
104148
|
campaignInvites?: CampaignInviteCreateNestedManyWithoutOptInInput
|
|
104149
|
+
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
|
|
102635
104150
|
}
|
|
102636
104151
|
|
|
102637
104152
|
export type OptInUncheckedCreateWithoutCurrentStepInput = {
|
|
@@ -102655,6 +104170,7 @@ export namespace Prisma {
|
|
|
102655
104170
|
optInSteps?: OptInStepUncheckedCreateNestedManyWithoutOptInInput
|
|
102656
104171
|
chat?: ChatUncheckedCreateNestedOneWithoutOptInInput
|
|
102657
104172
|
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutOptInInput
|
|
104173
|
+
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
|
|
102658
104174
|
}
|
|
102659
104175
|
|
|
102660
104176
|
export type OptInCreateOrConnectWithoutCurrentStepInput = {
|
|
@@ -102924,6 +104440,7 @@ export namespace Prisma {
|
|
|
102924
104440
|
variables?: OptInVariableCreateNestedManyWithoutOptInInput
|
|
102925
104441
|
chat?: ChatCreateNestedOneWithoutOptInInput
|
|
102926
104442
|
campaignInvites?: CampaignInviteCreateNestedManyWithoutOptInInput
|
|
104443
|
+
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
|
|
102927
104444
|
}
|
|
102928
104445
|
|
|
102929
104446
|
export type OptInUncheckedCreateWithoutOptInStepsInput = {
|
|
@@ -102947,6 +104464,7 @@ export namespace Prisma {
|
|
|
102947
104464
|
variables?: OptInVariableUncheckedCreateNestedManyWithoutOptInInput
|
|
102948
104465
|
chat?: ChatUncheckedCreateNestedOneWithoutOptInInput
|
|
102949
104466
|
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutOptInInput
|
|
104467
|
+
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
|
|
102950
104468
|
}
|
|
102951
104469
|
|
|
102952
104470
|
export type OptInCreateOrConnectWithoutOptInStepsInput = {
|
|
@@ -103017,6 +104535,7 @@ export namespace Prisma {
|
|
|
103017
104535
|
variables?: OptInVariableUpdateManyWithoutOptInNestedInput
|
|
103018
104536
|
chat?: ChatUpdateOneWithoutOptInNestedInput
|
|
103019
104537
|
campaignInvites?: CampaignInviteUpdateManyWithoutOptInNestedInput
|
|
104538
|
+
trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
|
|
103020
104539
|
}
|
|
103021
104540
|
|
|
103022
104541
|
export type OptInUncheckedUpdateWithoutOptInStepsInput = {
|
|
@@ -103040,6 +104559,7 @@ export namespace Prisma {
|
|
|
103040
104559
|
variables?: OptInVariableUncheckedUpdateManyWithoutOptInNestedInput
|
|
103041
104560
|
chat?: ChatUncheckedUpdateOneWithoutOptInNestedInput
|
|
103042
104561
|
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutOptInNestedInput
|
|
104562
|
+
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
|
|
103043
104563
|
}
|
|
103044
104564
|
|
|
103045
104565
|
export type CampaignStepUpsertWithoutOptInStepsInput = {
|
|
@@ -103535,6 +105055,33 @@ export namespace Prisma {
|
|
|
103535
105055
|
skipDuplicates?: boolean
|
|
103536
105056
|
}
|
|
103537
105057
|
|
|
105058
|
+
export type TrolleyPaymentCreateWithoutOptInInput = {
|
|
105059
|
+
paymentId: string
|
|
105060
|
+
type?: $Enums.trolleyPaymentType | null
|
|
105061
|
+
status: $Enums.trolleyPaymentStatus
|
|
105062
|
+
paymentAmount: number
|
|
105063
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
105064
|
+
}
|
|
105065
|
+
|
|
105066
|
+
export type TrolleyPaymentUncheckedCreateWithoutOptInInput = {
|
|
105067
|
+
id?: number
|
|
105068
|
+
paymentId: string
|
|
105069
|
+
type?: $Enums.trolleyPaymentType | null
|
|
105070
|
+
status: $Enums.trolleyPaymentStatus
|
|
105071
|
+
paymentAmount: number
|
|
105072
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
105073
|
+
}
|
|
105074
|
+
|
|
105075
|
+
export type TrolleyPaymentCreateOrConnectWithoutOptInInput = {
|
|
105076
|
+
where: TrolleyPaymentWhereUniqueInput
|
|
105077
|
+
create: XOR<TrolleyPaymentCreateWithoutOptInInput, TrolleyPaymentUncheckedCreateWithoutOptInInput>
|
|
105078
|
+
}
|
|
105079
|
+
|
|
105080
|
+
export type TrolleyPaymentCreateManyOptInInputEnvelope = {
|
|
105081
|
+
data: TrolleyPaymentCreateManyOptInInput | TrolleyPaymentCreateManyOptInInput[]
|
|
105082
|
+
skipDuplicates?: boolean
|
|
105083
|
+
}
|
|
105084
|
+
|
|
103538
105085
|
export type UserUpsertWithoutOptInsInput = {
|
|
103539
105086
|
update: XOR<UserUpdateWithoutOptInsInput, UserUncheckedUpdateWithoutOptInsInput>
|
|
103540
105087
|
create: XOR<UserCreateWithoutOptInsInput, UserUncheckedCreateWithoutOptInsInput>
|
|
@@ -103881,6 +105428,145 @@ export namespace Prisma {
|
|
|
103881
105428
|
data: XOR<CampaignInviteUpdateManyMutationInput, CampaignInviteUncheckedUpdateManyWithoutOptInInput>
|
|
103882
105429
|
}
|
|
103883
105430
|
|
|
105431
|
+
export type TrolleyPaymentUpsertWithWhereUniqueWithoutOptInInput = {
|
|
105432
|
+
where: TrolleyPaymentWhereUniqueInput
|
|
105433
|
+
update: XOR<TrolleyPaymentUpdateWithoutOptInInput, TrolleyPaymentUncheckedUpdateWithoutOptInInput>
|
|
105434
|
+
create: XOR<TrolleyPaymentCreateWithoutOptInInput, TrolleyPaymentUncheckedCreateWithoutOptInInput>
|
|
105435
|
+
}
|
|
105436
|
+
|
|
105437
|
+
export type TrolleyPaymentUpdateWithWhereUniqueWithoutOptInInput = {
|
|
105438
|
+
where: TrolleyPaymentWhereUniqueInput
|
|
105439
|
+
data: XOR<TrolleyPaymentUpdateWithoutOptInInput, TrolleyPaymentUncheckedUpdateWithoutOptInInput>
|
|
105440
|
+
}
|
|
105441
|
+
|
|
105442
|
+
export type TrolleyPaymentUpdateManyWithWhereWithoutOptInInput = {
|
|
105443
|
+
where: TrolleyPaymentScalarWhereInput
|
|
105444
|
+
data: XOR<TrolleyPaymentUpdateManyMutationInput, TrolleyPaymentUncheckedUpdateManyWithoutOptInInput>
|
|
105445
|
+
}
|
|
105446
|
+
|
|
105447
|
+
export type TrolleyPaymentScalarWhereInput = {
|
|
105448
|
+
AND?: TrolleyPaymentScalarWhereInput | TrolleyPaymentScalarWhereInput[]
|
|
105449
|
+
OR?: TrolleyPaymentScalarWhereInput[]
|
|
105450
|
+
NOT?: TrolleyPaymentScalarWhereInput | TrolleyPaymentScalarWhereInput[]
|
|
105451
|
+
id?: IntFilter<"TrolleyPayment"> | number
|
|
105452
|
+
paymentId?: StringFilter<"TrolleyPayment"> | string
|
|
105453
|
+
type?: EnumtrolleyPaymentTypeNullableFilter<"TrolleyPayment"> | $Enums.trolleyPaymentType | null
|
|
105454
|
+
status?: EnumtrolleyPaymentStatusFilter<"TrolleyPayment"> | $Enums.trolleyPaymentStatus
|
|
105455
|
+
optInId?: IntFilter<"TrolleyPayment"> | number
|
|
105456
|
+
paymentAmount?: IntFilter<"TrolleyPayment"> | number
|
|
105457
|
+
metaData?: JsonFilter<"TrolleyPayment">
|
|
105458
|
+
}
|
|
105459
|
+
|
|
105460
|
+
export type OptInCreateWithoutTrolleyPaymentsInput = {
|
|
105461
|
+
status?: string
|
|
105462
|
+
created?: Date | string
|
|
105463
|
+
activated?: Date | string | null
|
|
105464
|
+
completed?: Date | string | null
|
|
105465
|
+
cancelled?: Date | string | null
|
|
105466
|
+
cancelledData?: JsonNullValueInput | InputJsonValue
|
|
105467
|
+
cancelRequested?: Date | string | null
|
|
105468
|
+
reinvited?: Date | string | null
|
|
105469
|
+
seen?: boolean
|
|
105470
|
+
instructions?: string | null
|
|
105471
|
+
paymentAmount?: number | null
|
|
105472
|
+
paymentStatus?: string
|
|
105473
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
105474
|
+
user: UserCreateNestedOneWithoutOptInsInput
|
|
105475
|
+
campaign: CampaignCreateNestedOneWithoutOptInsInput
|
|
105476
|
+
currentStep?: CampaignStepCreateNestedOneWithoutCurrentOptInsInput
|
|
105477
|
+
variables?: OptInVariableCreateNestedManyWithoutOptInInput
|
|
105478
|
+
optInSteps?: OptInStepCreateNestedManyWithoutOptInInput
|
|
105479
|
+
chat?: ChatCreateNestedOneWithoutOptInInput
|
|
105480
|
+
campaignInvites?: CampaignInviteCreateNestedManyWithoutOptInInput
|
|
105481
|
+
}
|
|
105482
|
+
|
|
105483
|
+
export type OptInUncheckedCreateWithoutTrolleyPaymentsInput = {
|
|
105484
|
+
id?: number
|
|
105485
|
+
status?: string
|
|
105486
|
+
created?: Date | string
|
|
105487
|
+
activated?: Date | string | null
|
|
105488
|
+
completed?: Date | string | null
|
|
105489
|
+
cancelled?: Date | string | null
|
|
105490
|
+
cancelledData?: JsonNullValueInput | InputJsonValue
|
|
105491
|
+
cancelRequested?: Date | string | null
|
|
105492
|
+
reinvited?: Date | string | null
|
|
105493
|
+
seen?: boolean
|
|
105494
|
+
instructions?: string | null
|
|
105495
|
+
paymentAmount?: number | null
|
|
105496
|
+
paymentStatus?: string
|
|
105497
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
105498
|
+
userId: number
|
|
105499
|
+
campaignId: number
|
|
105500
|
+
currentStepId?: number | null
|
|
105501
|
+
variables?: OptInVariableUncheckedCreateNestedManyWithoutOptInInput
|
|
105502
|
+
optInSteps?: OptInStepUncheckedCreateNestedManyWithoutOptInInput
|
|
105503
|
+
chat?: ChatUncheckedCreateNestedOneWithoutOptInInput
|
|
105504
|
+
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutOptInInput
|
|
105505
|
+
}
|
|
105506
|
+
|
|
105507
|
+
export type OptInCreateOrConnectWithoutTrolleyPaymentsInput = {
|
|
105508
|
+
where: OptInWhereUniqueInput
|
|
105509
|
+
create: XOR<OptInCreateWithoutTrolleyPaymentsInput, OptInUncheckedCreateWithoutTrolleyPaymentsInput>
|
|
105510
|
+
}
|
|
105511
|
+
|
|
105512
|
+
export type OptInUpsertWithoutTrolleyPaymentsInput = {
|
|
105513
|
+
update: XOR<OptInUpdateWithoutTrolleyPaymentsInput, OptInUncheckedUpdateWithoutTrolleyPaymentsInput>
|
|
105514
|
+
create: XOR<OptInCreateWithoutTrolleyPaymentsInput, OptInUncheckedCreateWithoutTrolleyPaymentsInput>
|
|
105515
|
+
where?: OptInWhereInput
|
|
105516
|
+
}
|
|
105517
|
+
|
|
105518
|
+
export type OptInUpdateToOneWithWhereWithoutTrolleyPaymentsInput = {
|
|
105519
|
+
where?: OptInWhereInput
|
|
105520
|
+
data: XOR<OptInUpdateWithoutTrolleyPaymentsInput, OptInUncheckedUpdateWithoutTrolleyPaymentsInput>
|
|
105521
|
+
}
|
|
105522
|
+
|
|
105523
|
+
export type OptInUpdateWithoutTrolleyPaymentsInput = {
|
|
105524
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
105525
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105526
|
+
activated?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
105527
|
+
completed?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
105528
|
+
cancelled?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
105529
|
+
cancelledData?: JsonNullValueInput | InputJsonValue
|
|
105530
|
+
cancelRequested?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
105531
|
+
reinvited?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
105532
|
+
seen?: BoolFieldUpdateOperationsInput | boolean
|
|
105533
|
+
instructions?: NullableStringFieldUpdateOperationsInput | string | null
|
|
105534
|
+
paymentAmount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
105535
|
+
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
105536
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
105537
|
+
user?: UserUpdateOneRequiredWithoutOptInsNestedInput
|
|
105538
|
+
campaign?: CampaignUpdateOneRequiredWithoutOptInsNestedInput
|
|
105539
|
+
currentStep?: CampaignStepUpdateOneWithoutCurrentOptInsNestedInput
|
|
105540
|
+
variables?: OptInVariableUpdateManyWithoutOptInNestedInput
|
|
105541
|
+
optInSteps?: OptInStepUpdateManyWithoutOptInNestedInput
|
|
105542
|
+
chat?: ChatUpdateOneWithoutOptInNestedInput
|
|
105543
|
+
campaignInvites?: CampaignInviteUpdateManyWithoutOptInNestedInput
|
|
105544
|
+
}
|
|
105545
|
+
|
|
105546
|
+
export type OptInUncheckedUpdateWithoutTrolleyPaymentsInput = {
|
|
105547
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
105548
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
105549
|
+
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105550
|
+
activated?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
105551
|
+
completed?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
105552
|
+
cancelled?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
105553
|
+
cancelledData?: JsonNullValueInput | InputJsonValue
|
|
105554
|
+
cancelRequested?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
105555
|
+
reinvited?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
105556
|
+
seen?: BoolFieldUpdateOperationsInput | boolean
|
|
105557
|
+
instructions?: NullableStringFieldUpdateOperationsInput | string | null
|
|
105558
|
+
paymentAmount?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
105559
|
+
paymentStatus?: StringFieldUpdateOperationsInput | string
|
|
105560
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
105561
|
+
userId?: IntFieldUpdateOperationsInput | number
|
|
105562
|
+
campaignId?: IntFieldUpdateOperationsInput | number
|
|
105563
|
+
currentStepId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
105564
|
+
variables?: OptInVariableUncheckedUpdateManyWithoutOptInNestedInput
|
|
105565
|
+
optInSteps?: OptInStepUncheckedUpdateManyWithoutOptInNestedInput
|
|
105566
|
+
chat?: ChatUncheckedUpdateOneWithoutOptInNestedInput
|
|
105567
|
+
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutOptInNestedInput
|
|
105568
|
+
}
|
|
105569
|
+
|
|
103884
105570
|
export type OptInCreateWithoutVariablesInput = {
|
|
103885
105571
|
status?: string
|
|
103886
105572
|
created?: Date | string
|
|
@@ -103901,6 +105587,7 @@ export namespace Prisma {
|
|
|
103901
105587
|
optInSteps?: OptInStepCreateNestedManyWithoutOptInInput
|
|
103902
105588
|
chat?: ChatCreateNestedOneWithoutOptInInput
|
|
103903
105589
|
campaignInvites?: CampaignInviteCreateNestedManyWithoutOptInInput
|
|
105590
|
+
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
|
|
103904
105591
|
}
|
|
103905
105592
|
|
|
103906
105593
|
export type OptInUncheckedCreateWithoutVariablesInput = {
|
|
@@ -103924,6 +105611,7 @@ export namespace Prisma {
|
|
|
103924
105611
|
optInSteps?: OptInStepUncheckedCreateNestedManyWithoutOptInInput
|
|
103925
105612
|
chat?: ChatUncheckedCreateNestedOneWithoutOptInInput
|
|
103926
105613
|
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutOptInInput
|
|
105614
|
+
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
|
|
103927
105615
|
}
|
|
103928
105616
|
|
|
103929
105617
|
export type OptInCreateOrConnectWithoutVariablesInput = {
|
|
@@ -104004,6 +105692,7 @@ export namespace Prisma {
|
|
|
104004
105692
|
optInSteps?: OptInStepUpdateManyWithoutOptInNestedInput
|
|
104005
105693
|
chat?: ChatUpdateOneWithoutOptInNestedInput
|
|
104006
105694
|
campaignInvites?: CampaignInviteUpdateManyWithoutOptInNestedInput
|
|
105695
|
+
trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
|
|
104007
105696
|
}
|
|
104008
105697
|
|
|
104009
105698
|
export type OptInUncheckedUpdateWithoutVariablesInput = {
|
|
@@ -104027,6 +105716,7 @@ export namespace Prisma {
|
|
|
104027
105716
|
optInSteps?: OptInStepUncheckedUpdateManyWithoutOptInNestedInput
|
|
104028
105717
|
chat?: ChatUncheckedUpdateOneWithoutOptInNestedInput
|
|
104029
105718
|
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutOptInNestedInput
|
|
105719
|
+
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
|
|
104030
105720
|
}
|
|
104031
105721
|
|
|
104032
105722
|
export type VariableUpsertWithoutOptInVariablesInput = {
|
|
@@ -106561,6 +108251,7 @@ export namespace Prisma {
|
|
|
106561
108251
|
variables?: OptInVariableCreateNestedManyWithoutOptInInput
|
|
106562
108252
|
optInSteps?: OptInStepCreateNestedManyWithoutOptInInput
|
|
106563
108253
|
chat?: ChatCreateNestedOneWithoutOptInInput
|
|
108254
|
+
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
|
|
106564
108255
|
}
|
|
106565
108256
|
|
|
106566
108257
|
export type OptInUncheckedCreateWithoutCampaignInvitesInput = {
|
|
@@ -106584,6 +108275,7 @@ export namespace Prisma {
|
|
|
106584
108275
|
variables?: OptInVariableUncheckedCreateNestedManyWithoutOptInInput
|
|
106585
108276
|
optInSteps?: OptInStepUncheckedCreateNestedManyWithoutOptInInput
|
|
106586
108277
|
chat?: ChatUncheckedCreateNestedOneWithoutOptInInput
|
|
108278
|
+
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
|
|
106587
108279
|
}
|
|
106588
108280
|
|
|
106589
108281
|
export type OptInCreateOrConnectWithoutCampaignInvitesInput = {
|
|
@@ -106900,6 +108592,7 @@ export namespace Prisma {
|
|
|
106900
108592
|
variables?: OptInVariableUpdateManyWithoutOptInNestedInput
|
|
106901
108593
|
optInSteps?: OptInStepUpdateManyWithoutOptInNestedInput
|
|
106902
108594
|
chat?: ChatUpdateOneWithoutOptInNestedInput
|
|
108595
|
+
trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
|
|
106903
108596
|
}
|
|
106904
108597
|
|
|
106905
108598
|
export type OptInUncheckedUpdateWithoutCampaignInvitesInput = {
|
|
@@ -106923,6 +108616,7 @@ export namespace Prisma {
|
|
|
106923
108616
|
variables?: OptInVariableUncheckedUpdateManyWithoutOptInNestedInput
|
|
106924
108617
|
optInSteps?: OptInStepUncheckedUpdateManyWithoutOptInNestedInput
|
|
106925
108618
|
chat?: ChatUncheckedUpdateOneWithoutOptInNestedInput
|
|
108619
|
+
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
|
|
106926
108620
|
}
|
|
106927
108621
|
|
|
106928
108622
|
export type CreatorListItemCreateWithoutCreatorListInput = {
|
|
@@ -111458,6 +113152,7 @@ export namespace Prisma {
|
|
|
111458
113152
|
optInSteps?: OptInStepUpdateManyWithoutOptInNestedInput
|
|
111459
113153
|
chat?: ChatUpdateOneWithoutOptInNestedInput
|
|
111460
113154
|
campaignInvites?: CampaignInviteUpdateManyWithoutOptInNestedInput
|
|
113155
|
+
trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
|
|
111461
113156
|
}
|
|
111462
113157
|
|
|
111463
113158
|
export type OptInUncheckedUpdateWithoutUserInput = {
|
|
@@ -111481,6 +113176,7 @@ export namespace Prisma {
|
|
|
111481
113176
|
optInSteps?: OptInStepUncheckedUpdateManyWithoutOptInNestedInput
|
|
111482
113177
|
chat?: ChatUncheckedUpdateOneWithoutOptInNestedInput
|
|
111483
113178
|
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutOptInNestedInput
|
|
113179
|
+
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
|
|
111484
113180
|
}
|
|
111485
113181
|
|
|
111486
113182
|
export type OptInUncheckedUpdateManyWithoutUserInput = {
|
|
@@ -113135,6 +114831,7 @@ export namespace Prisma {
|
|
|
113135
114831
|
optInSteps?: OptInStepUpdateManyWithoutOptInNestedInput
|
|
113136
114832
|
chat?: ChatUpdateOneWithoutOptInNestedInput
|
|
113137
114833
|
campaignInvites?: CampaignInviteUpdateManyWithoutOptInNestedInput
|
|
114834
|
+
trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
|
|
113138
114835
|
}
|
|
113139
114836
|
|
|
113140
114837
|
export type OptInUncheckedUpdateWithoutCampaignInput = {
|
|
@@ -113158,6 +114855,7 @@ export namespace Prisma {
|
|
|
113158
114855
|
optInSteps?: OptInStepUncheckedUpdateManyWithoutOptInNestedInput
|
|
113159
114856
|
chat?: ChatUncheckedUpdateOneWithoutOptInNestedInput
|
|
113160
114857
|
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutOptInNestedInput
|
|
114858
|
+
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
|
|
113161
114859
|
}
|
|
113162
114860
|
|
|
113163
114861
|
export type OptInUncheckedUpdateManyWithoutCampaignInput = {
|
|
@@ -113674,6 +115372,7 @@ export namespace Prisma {
|
|
|
113674
115372
|
optInSteps?: OptInStepUpdateManyWithoutOptInNestedInput
|
|
113675
115373
|
chat?: ChatUpdateOneWithoutOptInNestedInput
|
|
113676
115374
|
campaignInvites?: CampaignInviteUpdateManyWithoutOptInNestedInput
|
|
115375
|
+
trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
|
|
113677
115376
|
}
|
|
113678
115377
|
|
|
113679
115378
|
export type OptInUncheckedUpdateWithoutCurrentStepInput = {
|
|
@@ -113697,6 +115396,7 @@ export namespace Prisma {
|
|
|
113697
115396
|
optInSteps?: OptInStepUncheckedUpdateManyWithoutOptInNestedInput
|
|
113698
115397
|
chat?: ChatUncheckedUpdateOneWithoutOptInNestedInput
|
|
113699
115398
|
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutOptInNestedInput
|
|
115399
|
+
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
|
|
113700
115400
|
}
|
|
113701
115401
|
|
|
113702
115402
|
export type OptInUncheckedUpdateManyWithoutCurrentStepInput = {
|
|
@@ -113815,6 +115515,15 @@ export namespace Prisma {
|
|
|
113815
115515
|
metaData?: NullableJsonNullValueInput | InputJsonValue
|
|
113816
115516
|
}
|
|
113817
115517
|
|
|
115518
|
+
export type TrolleyPaymentCreateManyOptInInput = {
|
|
115519
|
+
id?: number
|
|
115520
|
+
paymentId: string
|
|
115521
|
+
type?: $Enums.trolleyPaymentType | null
|
|
115522
|
+
status: $Enums.trolleyPaymentStatus
|
|
115523
|
+
paymentAmount: number
|
|
115524
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
115525
|
+
}
|
|
115526
|
+
|
|
113818
115527
|
export type OptInVariableUpdateWithoutOptInInput = {
|
|
113819
115528
|
variable?: VariableUpdateOneRequiredWithoutOptInVariablesNestedInput
|
|
113820
115529
|
selectedOption?: VariableOptionUpdateOneRequiredWithoutOptInVariablesNestedInput
|
|
@@ -113890,6 +115599,32 @@ export namespace Prisma {
|
|
|
113890
115599
|
metaData?: NullableJsonNullValueInput | InputJsonValue
|
|
113891
115600
|
}
|
|
113892
115601
|
|
|
115602
|
+
export type TrolleyPaymentUpdateWithoutOptInInput = {
|
|
115603
|
+
paymentId?: StringFieldUpdateOperationsInput | string
|
|
115604
|
+
type?: NullableEnumtrolleyPaymentTypeFieldUpdateOperationsInput | $Enums.trolleyPaymentType | null
|
|
115605
|
+
status?: EnumtrolleyPaymentStatusFieldUpdateOperationsInput | $Enums.trolleyPaymentStatus
|
|
115606
|
+
paymentAmount?: IntFieldUpdateOperationsInput | number
|
|
115607
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
115608
|
+
}
|
|
115609
|
+
|
|
115610
|
+
export type TrolleyPaymentUncheckedUpdateWithoutOptInInput = {
|
|
115611
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
115612
|
+
paymentId?: StringFieldUpdateOperationsInput | string
|
|
115613
|
+
type?: NullableEnumtrolleyPaymentTypeFieldUpdateOperationsInput | $Enums.trolleyPaymentType | null
|
|
115614
|
+
status?: EnumtrolleyPaymentStatusFieldUpdateOperationsInput | $Enums.trolleyPaymentStatus
|
|
115615
|
+
paymentAmount?: IntFieldUpdateOperationsInput | number
|
|
115616
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
115617
|
+
}
|
|
115618
|
+
|
|
115619
|
+
export type TrolleyPaymentUncheckedUpdateManyWithoutOptInInput = {
|
|
115620
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
115621
|
+
paymentId?: StringFieldUpdateOperationsInput | string
|
|
115622
|
+
type?: NullableEnumtrolleyPaymentTypeFieldUpdateOperationsInput | $Enums.trolleyPaymentType | null
|
|
115623
|
+
status?: EnumtrolleyPaymentStatusFieldUpdateOperationsInput | $Enums.trolleyPaymentStatus
|
|
115624
|
+
paymentAmount?: IntFieldUpdateOperationsInput | number
|
|
115625
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
115626
|
+
}
|
|
115627
|
+
|
|
113893
115628
|
export type ListToSocialPostCreateManySocialPostInput = {
|
|
113894
115629
|
id?: number
|
|
113895
115630
|
listId: number
|
|
@@ -114777,6 +116512,10 @@ export namespace Prisma {
|
|
|
114777
116512
|
* @deprecated Use OptInDefaultArgs instead
|
|
114778
116513
|
*/
|
|
114779
116514
|
export type OptInArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = OptInDefaultArgs<ExtArgs>
|
|
116515
|
+
/**
|
|
116516
|
+
* @deprecated Use TrolleyPaymentDefaultArgs instead
|
|
116517
|
+
*/
|
|
116518
|
+
export type TrolleyPaymentArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = TrolleyPaymentDefaultArgs<ExtArgs>
|
|
114780
116519
|
/**
|
|
114781
116520
|
* @deprecated Use OptInVariableDefaultArgs instead
|
|
114782
116521
|
*/
|