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