@creator.co/creatorco-prisma-client 1.0.15 → 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 -12
- package/index-browser.js +47 -20
- package/index.d.ts +2029 -337
- package/index.js +41 -13
- 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 +72 -12
- 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
|
|
|
@@ -41010,7 +42140,6 @@ export namespace Prisma {
|
|
|
41010
42140
|
phylloId: string | null
|
|
41011
42141
|
lastFetched: Date | null
|
|
41012
42142
|
lastWebhook: Date | null
|
|
41013
|
-
isStale: boolean | null
|
|
41014
42143
|
posted: Date | null
|
|
41015
42144
|
title: string | null
|
|
41016
42145
|
description: string | null
|
|
@@ -41045,7 +42174,6 @@ export namespace Prisma {
|
|
|
41045
42174
|
phylloId: string | null
|
|
41046
42175
|
lastFetched: Date | null
|
|
41047
42176
|
lastWebhook: Date | null
|
|
41048
|
-
isStale: boolean | null
|
|
41049
42177
|
posted: Date | null
|
|
41050
42178
|
title: string | null
|
|
41051
42179
|
description: string | null
|
|
@@ -41082,7 +42210,6 @@ export namespace Prisma {
|
|
|
41082
42210
|
data: number
|
|
41083
42211
|
lastFetched: number
|
|
41084
42212
|
lastWebhook: number
|
|
41085
|
-
isStale: number
|
|
41086
42213
|
posted: number
|
|
41087
42214
|
title: number
|
|
41088
42215
|
description: number
|
|
@@ -41157,7 +42284,6 @@ export namespace Prisma {
|
|
|
41157
42284
|
phylloId?: true
|
|
41158
42285
|
lastFetched?: true
|
|
41159
42286
|
lastWebhook?: true
|
|
41160
|
-
isStale?: true
|
|
41161
42287
|
posted?: true
|
|
41162
42288
|
title?: true
|
|
41163
42289
|
description?: true
|
|
@@ -41192,7 +42318,6 @@ export namespace Prisma {
|
|
|
41192
42318
|
phylloId?: true
|
|
41193
42319
|
lastFetched?: true
|
|
41194
42320
|
lastWebhook?: true
|
|
41195
|
-
isStale?: true
|
|
41196
42321
|
posted?: true
|
|
41197
42322
|
title?: true
|
|
41198
42323
|
description?: true
|
|
@@ -41229,7 +42354,6 @@ export namespace Prisma {
|
|
|
41229
42354
|
data?: true
|
|
41230
42355
|
lastFetched?: true
|
|
41231
42356
|
lastWebhook?: true
|
|
41232
|
-
isStale?: true
|
|
41233
42357
|
posted?: true
|
|
41234
42358
|
title?: true
|
|
41235
42359
|
description?: true
|
|
@@ -41353,7 +42477,6 @@ export namespace Prisma {
|
|
|
41353
42477
|
data: JsonValue
|
|
41354
42478
|
lastFetched: Date | null
|
|
41355
42479
|
lastWebhook: Date | null
|
|
41356
|
-
isStale: boolean | null
|
|
41357
42480
|
posted: Date | null
|
|
41358
42481
|
title: string | null
|
|
41359
42482
|
description: string | null
|
|
@@ -41409,7 +42532,6 @@ export namespace Prisma {
|
|
|
41409
42532
|
data?: boolean
|
|
41410
42533
|
lastFetched?: boolean
|
|
41411
42534
|
lastWebhook?: boolean
|
|
41412
|
-
isStale?: boolean
|
|
41413
42535
|
posted?: boolean
|
|
41414
42536
|
title?: boolean
|
|
41415
42537
|
description?: boolean
|
|
@@ -41451,7 +42573,6 @@ export namespace Prisma {
|
|
|
41451
42573
|
data?: boolean
|
|
41452
42574
|
lastFetched?: boolean
|
|
41453
42575
|
lastWebhook?: boolean
|
|
41454
|
-
isStale?: boolean
|
|
41455
42576
|
posted?: boolean
|
|
41456
42577
|
title?: boolean
|
|
41457
42578
|
description?: boolean
|
|
@@ -41505,7 +42626,6 @@ export namespace Prisma {
|
|
|
41505
42626
|
data: Prisma.JsonValue
|
|
41506
42627
|
lastFetched: Date | null
|
|
41507
42628
|
lastWebhook: Date | null
|
|
41508
|
-
isStale: boolean | null
|
|
41509
42629
|
posted: Date | null
|
|
41510
42630
|
title: string | null
|
|
41511
42631
|
description: string | null
|
|
@@ -41541,7 +42661,7 @@ export namespace Prisma {
|
|
|
41541
42661
|
type SocialPostGetPayload<S extends boolean | null | undefined | SocialPostDefaultArgs> = $Result.GetResult<Prisma.$SocialPostPayload, S>
|
|
41542
42662
|
|
|
41543
42663
|
type SocialPostCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
41544
|
-
Omit<SocialPostFindManyArgs, 'select' | 'include' | 'distinct'
|
|
42664
|
+
Omit<SocialPostFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
41545
42665
|
select?: SocialPostCountAggregateInputType | true
|
|
41546
42666
|
}
|
|
41547
42667
|
|
|
@@ -41940,7 +43060,6 @@ export namespace Prisma {
|
|
|
41940
43060
|
readonly data: FieldRef<"SocialPost", 'Json'>
|
|
41941
43061
|
readonly lastFetched: FieldRef<"SocialPost", 'DateTime'>
|
|
41942
43062
|
readonly lastWebhook: FieldRef<"SocialPost", 'DateTime'>
|
|
41943
|
-
readonly isStale: FieldRef<"SocialPost", 'Boolean'>
|
|
41944
43063
|
readonly posted: FieldRef<"SocialPost", 'DateTime'>
|
|
41945
43064
|
readonly title: FieldRef<"SocialPost", 'String'>
|
|
41946
43065
|
readonly description: FieldRef<"SocialPost", 'String'>
|
|
@@ -42596,7 +43715,7 @@ export namespace Prisma {
|
|
|
42596
43715
|
type SocialPostTagGetPayload<S extends boolean | null | undefined | SocialPostTagDefaultArgs> = $Result.GetResult<Prisma.$SocialPostTagPayload, S>
|
|
42597
43716
|
|
|
42598
43717
|
type SocialPostTagCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
42599
|
-
Omit<SocialPostTagFindManyArgs, 'select' | 'include' | 'distinct'
|
|
43718
|
+
Omit<SocialPostTagFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
42600
43719
|
select?: SocialPostTagCountAggregateInputType | true
|
|
42601
43720
|
}
|
|
42602
43721
|
|
|
@@ -43541,7 +44660,7 @@ export namespace Prisma {
|
|
|
43541
44660
|
type ImageGetPayload<S extends boolean | null | undefined | ImageDefaultArgs> = $Result.GetResult<Prisma.$ImagePayload, S>
|
|
43542
44661
|
|
|
43543
44662
|
type ImageCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
43544
|
-
Omit<ImageFindManyArgs, 'select' | 'include' | 'distinct'
|
|
44663
|
+
Omit<ImageFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
43545
44664
|
select?: ImageCountAggregateInputType | true
|
|
43546
44665
|
}
|
|
43547
44666
|
|
|
@@ -44486,7 +45605,7 @@ export namespace Prisma {
|
|
|
44486
45605
|
type BrandImageGetPayload<S extends boolean | null | undefined | BrandImageDefaultArgs> = $Result.GetResult<Prisma.$BrandImagePayload, S>
|
|
44487
45606
|
|
|
44488
45607
|
type BrandImageCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
44489
|
-
Omit<BrandImageFindManyArgs, 'select' | 'include' | 'distinct'
|
|
45608
|
+
Omit<BrandImageFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
44490
45609
|
select?: BrandImageCountAggregateInputType | true
|
|
44491
45610
|
}
|
|
44492
45611
|
|
|
@@ -45432,7 +46551,7 @@ export namespace Prisma {
|
|
|
45432
46551
|
type CountryGetPayload<S extends boolean | null | undefined | CountryDefaultArgs> = $Result.GetResult<Prisma.$CountryPayload, S>
|
|
45433
46552
|
|
|
45434
46553
|
type CountryCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
45435
|
-
Omit<CountryFindManyArgs, 'select' | 'include' | 'distinct'
|
|
46554
|
+
Omit<CountryFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
45436
46555
|
select?: CountryCountAggregateInputType | true
|
|
45437
46556
|
}
|
|
45438
46557
|
|
|
@@ -46421,7 +47540,7 @@ export namespace Prisma {
|
|
|
46421
47540
|
type StateGetPayload<S extends boolean | null | undefined | StateDefaultArgs> = $Result.GetResult<Prisma.$StatePayload, S>
|
|
46422
47541
|
|
|
46423
47542
|
type StateCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
46424
|
-
Omit<StateFindManyArgs, 'select' | 'include' | 'distinct'
|
|
47543
|
+
Omit<StateFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
46425
47544
|
select?: StateCountAggregateInputType | true
|
|
46426
47545
|
}
|
|
46427
47546
|
|
|
@@ -47461,7 +48580,7 @@ export namespace Prisma {
|
|
|
47461
48580
|
type PaymentTransactionGetPayload<S extends boolean | null | undefined | PaymentTransactionDefaultArgs> = $Result.GetResult<Prisma.$PaymentTransactionPayload, S>
|
|
47462
48581
|
|
|
47463
48582
|
type PaymentTransactionCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
47464
|
-
Omit<PaymentTransactionFindManyArgs, 'select' | 'include' | 'distinct'
|
|
48583
|
+
Omit<PaymentTransactionFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
47465
48584
|
select?: PaymentTransactionCountAggregateInputType | true
|
|
47466
48585
|
}
|
|
47467
48586
|
|
|
@@ -48518,7 +49637,7 @@ export namespace Prisma {
|
|
|
48518
49637
|
type BrandAffiliateLinkGetPayload<S extends boolean | null | undefined | BrandAffiliateLinkDefaultArgs> = $Result.GetResult<Prisma.$BrandAffiliateLinkPayload, S>
|
|
48519
49638
|
|
|
48520
49639
|
type BrandAffiliateLinkCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
48521
|
-
Omit<BrandAffiliateLinkFindManyArgs, 'select' | 'include' | 'distinct'
|
|
49640
|
+
Omit<BrandAffiliateLinkFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
48522
49641
|
select?: BrandAffiliateLinkCountAggregateInputType | true
|
|
48523
49642
|
}
|
|
48524
49643
|
|
|
@@ -49507,7 +50626,7 @@ export namespace Prisma {
|
|
|
49507
50626
|
type AffiliateLinkGetPayload<S extends boolean | null | undefined | AffiliateLinkDefaultArgs> = $Result.GetResult<Prisma.$AffiliateLinkPayload, S>
|
|
49508
50627
|
|
|
49509
50628
|
type AffiliateLinkCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
49510
|
-
Omit<AffiliateLinkFindManyArgs, 'select' | 'include' | 'distinct'
|
|
50629
|
+
Omit<AffiliateLinkFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
49511
50630
|
select?: AffiliateLinkCountAggregateInputType | true
|
|
49512
50631
|
}
|
|
49513
50632
|
|
|
@@ -50489,7 +51608,7 @@ export namespace Prisma {
|
|
|
50489
51608
|
type AffiliateClickGetPayload<S extends boolean | null | undefined | AffiliateClickDefaultArgs> = $Result.GetResult<Prisma.$AffiliateClickPayload, S>
|
|
50490
51609
|
|
|
50491
51610
|
type AffiliateClickCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
50492
|
-
Omit<AffiliateClickFindManyArgs, 'select' | 'include' | 'distinct'
|
|
51611
|
+
Omit<AffiliateClickFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
50493
51612
|
select?: AffiliateClickCountAggregateInputType | true
|
|
50494
51613
|
}
|
|
50495
51614
|
|
|
@@ -51526,7 +52645,7 @@ export namespace Prisma {
|
|
|
51526
52645
|
type AffiliateEventGetPayload<S extends boolean | null | undefined | AffiliateEventDefaultArgs> = $Result.GetResult<Prisma.$AffiliateEventPayload, S>
|
|
51527
52646
|
|
|
51528
52647
|
type AffiliateEventCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
51529
|
-
Omit<AffiliateEventFindManyArgs, 'select' | 'include' | 'distinct'
|
|
52648
|
+
Omit<AffiliateEventFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
51530
52649
|
select?: AffiliateEventCountAggregateInputType | true
|
|
51531
52650
|
}
|
|
51532
52651
|
|
|
@@ -52519,7 +53638,7 @@ export namespace Prisma {
|
|
|
52519
53638
|
type SavedFileGetPayload<S extends boolean | null | undefined | SavedFileDefaultArgs> = $Result.GetResult<Prisma.$SavedFilePayload, S>
|
|
52520
53639
|
|
|
52521
53640
|
type SavedFileCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
52522
|
-
Omit<SavedFileFindManyArgs, 'select' | 'include' | 'distinct'
|
|
53641
|
+
Omit<SavedFileFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
52523
53642
|
select?: SavedFileCountAggregateInputType | true
|
|
52524
53643
|
}
|
|
52525
53644
|
|
|
@@ -53560,7 +54679,7 @@ export namespace Prisma {
|
|
|
53560
54679
|
type CampaignInviteGetPayload<S extends boolean | null | undefined | CampaignInviteDefaultArgs> = $Result.GetResult<Prisma.$CampaignInvitePayload, S>
|
|
53561
54680
|
|
|
53562
54681
|
type CampaignInviteCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
53563
|
-
Omit<CampaignInviteFindManyArgs, 'select' | 'include' | 'distinct'
|
|
54682
|
+
Omit<CampaignInviteFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
53564
54683
|
select?: CampaignInviteCountAggregateInputType | true
|
|
53565
54684
|
}
|
|
53566
54685
|
|
|
@@ -54606,7 +55725,7 @@ export namespace Prisma {
|
|
|
54606
55725
|
type CreatorListGetPayload<S extends boolean | null | undefined | CreatorListDefaultArgs> = $Result.GetResult<Prisma.$CreatorListPayload, S>
|
|
54607
55726
|
|
|
54608
55727
|
type CreatorListCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
54609
|
-
Omit<CreatorListFindManyArgs, 'select' | 'include' | 'distinct'
|
|
55728
|
+
Omit<CreatorListFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
54610
55729
|
select?: CreatorListCountAggregateInputType | true
|
|
54611
55730
|
}
|
|
54612
55731
|
|
|
@@ -55678,7 +56797,7 @@ export namespace Prisma {
|
|
|
55678
56797
|
type CreatorListItemGetPayload<S extends boolean | null | undefined | CreatorListItemDefaultArgs> = $Result.GetResult<Prisma.$CreatorListItemPayload, S>
|
|
55679
56798
|
|
|
55680
56799
|
type CreatorListItemCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
55681
|
-
Omit<CreatorListItemFindManyArgs, 'select' | 'include' | 'distinct'
|
|
56800
|
+
Omit<CreatorListItemFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
55682
56801
|
select?: CreatorListItemCountAggregateInputType | true
|
|
55683
56802
|
}
|
|
55684
56803
|
|
|
@@ -56853,7 +57972,7 @@ export namespace Prisma {
|
|
|
56853
57972
|
type SocialProfileGetPayload<S extends boolean | null | undefined | SocialProfileDefaultArgs> = $Result.GetResult<Prisma.$SocialProfilePayload, S>
|
|
56854
57973
|
|
|
56855
57974
|
type SocialProfileCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
56856
|
-
Omit<SocialProfileFindManyArgs, 'select' | 'include' | 'distinct'
|
|
57975
|
+
Omit<SocialProfileFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
56857
57976
|
select?: SocialProfileCountAggregateInputType | true
|
|
56858
57977
|
}
|
|
56859
57978
|
|
|
@@ -57879,7 +58998,7 @@ export namespace Prisma {
|
|
|
57879
58998
|
type MessageTemplateGetPayload<S extends boolean | null | undefined | MessageTemplateDefaultArgs> = $Result.GetResult<Prisma.$MessageTemplatePayload, S>
|
|
57880
58999
|
|
|
57881
59000
|
type MessageTemplateCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
57882
|
-
Omit<MessageTemplateFindManyArgs, 'select' | 'include' | 'distinct'
|
|
59001
|
+
Omit<MessageTemplateFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
57883
59002
|
select?: MessageTemplateCountAggregateInputType | true
|
|
57884
59003
|
}
|
|
57885
59004
|
|
|
@@ -58862,7 +59981,7 @@ export namespace Prisma {
|
|
|
58862
59981
|
type EmailTemplateGetPayload<S extends boolean | null | undefined | EmailTemplateDefaultArgs> = $Result.GetResult<Prisma.$EmailTemplatePayload, S>
|
|
58863
59982
|
|
|
58864
59983
|
type EmailTemplateCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
58865
|
-
Omit<EmailTemplateFindManyArgs, 'select' | 'include' | 'distinct'
|
|
59984
|
+
Omit<EmailTemplateFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
58866
59985
|
select?: EmailTemplateCountAggregateInputType | true
|
|
58867
59986
|
}
|
|
58868
59987
|
|
|
@@ -59903,7 +61022,7 @@ export namespace Prisma {
|
|
|
59903
61022
|
type SocialListeningListGetPayload<S extends boolean | null | undefined | SocialListeningListDefaultArgs> = $Result.GetResult<Prisma.$SocialListeningListPayload, S>
|
|
59904
61023
|
|
|
59905
61024
|
type SocialListeningListCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
59906
|
-
Omit<SocialListeningListFindManyArgs, 'select' | 'include' | 'distinct'
|
|
61025
|
+
Omit<SocialListeningListFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
59907
61026
|
select?: SocialListeningListCountAggregateInputType | true
|
|
59908
61027
|
}
|
|
59909
61028
|
|
|
@@ -60873,7 +61992,7 @@ export namespace Prisma {
|
|
|
60873
61992
|
type ListToSocialPostGetPayload<S extends boolean | null | undefined | ListToSocialPostDefaultArgs> = $Result.GetResult<Prisma.$ListToSocialPostPayload, S>
|
|
60874
61993
|
|
|
60875
61994
|
type ListToSocialPostCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
60876
|
-
Omit<ListToSocialPostFindManyArgs, 'select' | 'include' | 'distinct'
|
|
61995
|
+
Omit<ListToSocialPostFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
60877
61996
|
select?: ListToSocialPostCountAggregateInputType | true
|
|
60878
61997
|
}
|
|
60879
61998
|
|
|
@@ -61815,7 +62934,7 @@ export namespace Prisma {
|
|
|
61815
62934
|
type OptInViewGetPayload<S extends boolean | null | undefined | OptInViewDefaultArgs> = $Result.GetResult<Prisma.$OptInViewPayload, S>
|
|
61816
62935
|
|
|
61817
62936
|
type OptInViewCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
61818
|
-
Omit<OptInViewFindManyArgs, 'select' | 'include' | 'distinct'
|
|
62937
|
+
Omit<OptInViewFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
61819
62938
|
select?: OptInViewCountAggregateInputType | true
|
|
61820
62939
|
}
|
|
61821
62940
|
|
|
@@ -62852,7 +63971,7 @@ export namespace Prisma {
|
|
|
62852
63971
|
type RakutenActivityGetPayload<S extends boolean | null | undefined | RakutenActivityDefaultArgs> = $Result.GetResult<Prisma.$RakutenActivityPayload, S>
|
|
62853
63972
|
|
|
62854
63973
|
type RakutenActivityCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
62855
|
-
Omit<RakutenActivityFindManyArgs, 'select' | 'include' | 'distinct'
|
|
63974
|
+
Omit<RakutenActivityFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
62856
63975
|
select?: RakutenActivityCountAggregateInputType | true
|
|
62857
63976
|
}
|
|
62858
63977
|
|
|
@@ -63854,7 +64973,7 @@ export namespace Prisma {
|
|
|
63854
64973
|
type ImpactRadiusEventGetPayload<S extends boolean | null | undefined | ImpactRadiusEventDefaultArgs> = $Result.GetResult<Prisma.$ImpactRadiusEventPayload, S>
|
|
63855
64974
|
|
|
63856
64975
|
type ImpactRadiusEventCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
63857
|
-
Omit<ImpactRadiusEventFindManyArgs, 'select' | 'include' | 'distinct'
|
|
64976
|
+
Omit<ImpactRadiusEventFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
63858
64977
|
select?: ImpactRadiusEventCountAggregateInputType | true
|
|
63859
64978
|
}
|
|
63860
64979
|
|
|
@@ -64837,7 +65956,7 @@ export namespace Prisma {
|
|
|
64837
65956
|
type CreatorSearchFilterGetPayload<S extends boolean | null | undefined | CreatorSearchFilterDefaultArgs> = $Result.GetResult<Prisma.$CreatorSearchFilterPayload, S>
|
|
64838
65957
|
|
|
64839
65958
|
type CreatorSearchFilterCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
64840
|
-
Omit<CreatorSearchFilterFindManyArgs, 'select' | 'include' | 'distinct'
|
|
65959
|
+
Omit<CreatorSearchFilterFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
64841
65960
|
select?: CreatorSearchFilterCountAggregateInputType | true
|
|
64842
65961
|
}
|
|
64843
65962
|
|
|
@@ -65852,7 +66971,7 @@ export namespace Prisma {
|
|
|
65852
66971
|
type SequenceGetPayload<S extends boolean | null | undefined | SequenceDefaultArgs> = $Result.GetResult<Prisma.$SequencePayload, S>
|
|
65853
66972
|
|
|
65854
66973
|
type SequenceCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
65855
|
-
Omit<SequenceFindManyArgs, 'select' | 'include' | 'distinct'
|
|
66974
|
+
Omit<SequenceFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
65856
66975
|
select?: SequenceCountAggregateInputType | true
|
|
65857
66976
|
}
|
|
65858
66977
|
|
|
@@ -66951,7 +68070,7 @@ export namespace Prisma {
|
|
|
66951
68070
|
type SequenceStepGetPayload<S extends boolean | null | undefined | SequenceStepDefaultArgs> = $Result.GetResult<Prisma.$SequenceStepPayload, S>
|
|
66952
68071
|
|
|
66953
68072
|
type SequenceStepCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
66954
|
-
Omit<SequenceStepFindManyArgs, 'select' | 'include' | 'distinct'
|
|
68073
|
+
Omit<SequenceStepFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
66955
68074
|
select?: SequenceStepCountAggregateInputType | true
|
|
66956
68075
|
}
|
|
66957
68076
|
|
|
@@ -67948,7 +69067,7 @@ export namespace Prisma {
|
|
|
67948
69067
|
type SequenceOutboundEmailGetPayload<S extends boolean | null | undefined | SequenceOutboundEmailDefaultArgs> = $Result.GetResult<Prisma.$SequenceOutboundEmailPayload, S>
|
|
67949
69068
|
|
|
67950
69069
|
type SequenceOutboundEmailCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
67951
|
-
Omit<SequenceOutboundEmailFindManyArgs, 'select' | 'include' | 'distinct'
|
|
69070
|
+
Omit<SequenceOutboundEmailFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
67952
69071
|
select?: SequenceOutboundEmailCountAggregateInputType | true
|
|
67953
69072
|
}
|
|
67954
69073
|
|
|
@@ -68915,7 +70034,7 @@ export namespace Prisma {
|
|
|
68915
70034
|
type SequenceInboundEmailGetPayload<S extends boolean | null | undefined | SequenceInboundEmailDefaultArgs> = $Result.GetResult<Prisma.$SequenceInboundEmailPayload, S>
|
|
68916
70035
|
|
|
68917
70036
|
type SequenceInboundEmailCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
68918
|
-
Omit<SequenceInboundEmailFindManyArgs, 'select' | 'include' | 'distinct'
|
|
70037
|
+
Omit<SequenceInboundEmailFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
68919
70038
|
select?: SequenceInboundEmailCountAggregateInputType | true
|
|
68920
70039
|
}
|
|
68921
70040
|
|
|
@@ -69876,7 +70995,7 @@ export namespace Prisma {
|
|
|
69876
70995
|
type SequenceImapCheckpointGetPayload<S extends boolean | null | undefined | SequenceImapCheckpointDefaultArgs> = $Result.GetResult<Prisma.$SequenceImapCheckpointPayload, S>
|
|
69877
70996
|
|
|
69878
70997
|
type SequenceImapCheckpointCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
69879
|
-
Omit<SequenceImapCheckpointFindManyArgs, 'select' | 'include' | 'distinct'
|
|
70998
|
+
Omit<SequenceImapCheckpointFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
69880
70999
|
select?: SequenceImapCheckpointCountAggregateInputType | true
|
|
69881
71000
|
}
|
|
69882
71001
|
|
|
@@ -71110,6 +72229,19 @@ export namespace Prisma {
|
|
|
71110
72229
|
export type OptInScalarFieldEnum = (typeof OptInScalarFieldEnum)[keyof typeof OptInScalarFieldEnum]
|
|
71111
72230
|
|
|
71112
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
|
+
|
|
71113
72245
|
export const OptInVariableScalarFieldEnum: {
|
|
71114
72246
|
id: 'id',
|
|
71115
72247
|
optInId: 'optInId',
|
|
@@ -71127,7 +72259,6 @@ export namespace Prisma {
|
|
|
71127
72259
|
data: 'data',
|
|
71128
72260
|
lastFetched: 'lastFetched',
|
|
71129
72261
|
lastWebhook: 'lastWebhook',
|
|
71130
|
-
isStale: 'isStale',
|
|
71131
72262
|
posted: 'posted',
|
|
71132
72263
|
title: 'title',
|
|
71133
72264
|
description: 'description',
|
|
@@ -71803,6 +72934,13 @@ export namespace Prisma {
|
|
|
71803
72934
|
export type OptInOrderByRelevanceFieldEnum = (typeof OptInOrderByRelevanceFieldEnum)[keyof typeof OptInOrderByRelevanceFieldEnum]
|
|
71804
72935
|
|
|
71805
72936
|
|
|
72937
|
+
export const TrolleyPaymentOrderByRelevanceFieldEnum: {
|
|
72938
|
+
paymentId: 'paymentId'
|
|
72939
|
+
};
|
|
72940
|
+
|
|
72941
|
+
export type TrolleyPaymentOrderByRelevanceFieldEnum = (typeof TrolleyPaymentOrderByRelevanceFieldEnum)[keyof typeof TrolleyPaymentOrderByRelevanceFieldEnum]
|
|
72942
|
+
|
|
72943
|
+
|
|
71806
72944
|
export const SocialPostOrderByRelevanceFieldEnum: {
|
|
71807
72945
|
phylloId: 'phylloId',
|
|
71808
72946
|
title: 'title',
|
|
@@ -72074,6 +73212,34 @@ export namespace Prisma {
|
|
|
72074
73212
|
*/
|
|
72075
73213
|
export type BooleanFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Boolean'>
|
|
72076
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
|
+
|
|
72077
73243
|
/**
|
|
72078
73244
|
* Deep Input Types
|
|
72079
73245
|
*/
|
|
@@ -74813,6 +75979,7 @@ export namespace Prisma {
|
|
|
74813
75979
|
optInSteps?: OptInStepListRelationFilter
|
|
74814
75980
|
chat?: XOR<ChatNullableRelationFilter, ChatWhereInput> | null
|
|
74815
75981
|
campaignInvites?: CampaignInviteListRelationFilter
|
|
75982
|
+
trolleyPayments?: TrolleyPaymentListRelationFilter
|
|
74816
75983
|
}
|
|
74817
75984
|
|
|
74818
75985
|
export type OptInOrderByWithRelationAndSearchRelevanceInput = {
|
|
@@ -74840,6 +76007,7 @@ export namespace Prisma {
|
|
|
74840
76007
|
optInSteps?: OptInStepOrderByRelationAggregateInput
|
|
74841
76008
|
chat?: ChatOrderByWithRelationAndSearchRelevanceInput
|
|
74842
76009
|
campaignInvites?: CampaignInviteOrderByRelationAggregateInput
|
|
76010
|
+
trolleyPayments?: TrolleyPaymentOrderByRelationAggregateInput
|
|
74843
76011
|
_relevance?: OptInOrderByRelevanceInput
|
|
74844
76012
|
}
|
|
74845
76013
|
|
|
@@ -74871,6 +76039,7 @@ export namespace Prisma {
|
|
|
74871
76039
|
optInSteps?: OptInStepListRelationFilter
|
|
74872
76040
|
chat?: XOR<ChatNullableRelationFilter, ChatWhereInput> | null
|
|
74873
76041
|
campaignInvites?: CampaignInviteListRelationFilter
|
|
76042
|
+
trolleyPayments?: TrolleyPaymentListRelationFilter
|
|
74874
76043
|
}, "id">
|
|
74875
76044
|
|
|
74876
76045
|
export type OptInOrderByWithAggregationInput = {
|
|
@@ -74921,6 +76090,74 @@ export namespace Prisma {
|
|
|
74921
76090
|
currentStepId?: IntNullableWithAggregatesFilter<"OptIn"> | number | null
|
|
74922
76091
|
}
|
|
74923
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
|
+
|
|
74924
76161
|
export type OptInVariableWhereInput = {
|
|
74925
76162
|
AND?: OptInVariableWhereInput | OptInVariableWhereInput[]
|
|
74926
76163
|
OR?: OptInVariableWhereInput[]
|
|
@@ -74989,7 +76226,6 @@ export namespace Prisma {
|
|
|
74989
76226
|
data?: JsonFilter<"SocialPost">
|
|
74990
76227
|
lastFetched?: DateTimeNullableFilter<"SocialPost"> | Date | string | null
|
|
74991
76228
|
lastWebhook?: DateTimeNullableFilter<"SocialPost"> | Date | string | null
|
|
74992
|
-
isStale?: BoolNullableFilter<"SocialPost"> | boolean | null
|
|
74993
76229
|
posted?: DateTimeNullableFilter<"SocialPost"> | Date | string | null
|
|
74994
76230
|
title?: StringNullableFilter<"SocialPost"> | string | null
|
|
74995
76231
|
description?: StringNullableFilter<"SocialPost"> | string | null
|
|
@@ -75030,7 +76266,6 @@ export namespace Prisma {
|
|
|
75030
76266
|
data?: SortOrder
|
|
75031
76267
|
lastFetched?: SortOrderInput | SortOrder
|
|
75032
76268
|
lastWebhook?: SortOrderInput | SortOrder
|
|
75033
|
-
isStale?: SortOrderInput | SortOrder
|
|
75034
76269
|
posted?: SortOrderInput | SortOrder
|
|
75035
76270
|
title?: SortOrderInput | SortOrder
|
|
75036
76271
|
description?: SortOrderInput | SortOrder
|
|
@@ -75076,7 +76311,6 @@ export namespace Prisma {
|
|
|
75076
76311
|
data?: JsonFilter<"SocialPost">
|
|
75077
76312
|
lastFetched?: DateTimeNullableFilter<"SocialPost"> | Date | string | null
|
|
75078
76313
|
lastWebhook?: DateTimeNullableFilter<"SocialPost"> | Date | string | null
|
|
75079
|
-
isStale?: BoolNullableFilter<"SocialPost"> | boolean | null
|
|
75080
76314
|
posted?: DateTimeNullableFilter<"SocialPost"> | Date | string | null
|
|
75081
76315
|
title?: StringNullableFilter<"SocialPost"> | string | null
|
|
75082
76316
|
description?: StringNullableFilter<"SocialPost"> | string | null
|
|
@@ -75116,7 +76350,6 @@ export namespace Prisma {
|
|
|
75116
76350
|
data?: SortOrder
|
|
75117
76351
|
lastFetched?: SortOrderInput | SortOrder
|
|
75118
76352
|
lastWebhook?: SortOrderInput | SortOrder
|
|
75119
|
-
isStale?: SortOrderInput | SortOrder
|
|
75120
76353
|
posted?: SortOrderInput | SortOrder
|
|
75121
76354
|
title?: SortOrderInput | SortOrder
|
|
75122
76355
|
description?: SortOrderInput | SortOrder
|
|
@@ -75161,7 +76394,6 @@ export namespace Prisma {
|
|
|
75161
76394
|
data?: JsonWithAggregatesFilter<"SocialPost">
|
|
75162
76395
|
lastFetched?: DateTimeNullableWithAggregatesFilter<"SocialPost"> | Date | string | null
|
|
75163
76396
|
lastWebhook?: DateTimeNullableWithAggregatesFilter<"SocialPost"> | Date | string | null
|
|
75164
|
-
isStale?: BoolNullableWithAggregatesFilter<"SocialPost"> | boolean | null
|
|
75165
76397
|
posted?: DateTimeNullableWithAggregatesFilter<"SocialPost"> | Date | string | null
|
|
75166
76398
|
title?: StringNullableWithAggregatesFilter<"SocialPost"> | string | null
|
|
75167
76399
|
description?: StringNullableWithAggregatesFilter<"SocialPost"> | string | null
|
|
@@ -80068,6 +81300,7 @@ export namespace Prisma {
|
|
|
80068
81300
|
optInSteps?: OptInStepCreateNestedManyWithoutOptInInput
|
|
80069
81301
|
chat?: ChatCreateNestedOneWithoutOptInInput
|
|
80070
81302
|
campaignInvites?: CampaignInviteCreateNestedManyWithoutOptInInput
|
|
81303
|
+
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
|
|
80071
81304
|
}
|
|
80072
81305
|
|
|
80073
81306
|
export type OptInUncheckedCreateInput = {
|
|
@@ -80092,6 +81325,7 @@ export namespace Prisma {
|
|
|
80092
81325
|
optInSteps?: OptInStepUncheckedCreateNestedManyWithoutOptInInput
|
|
80093
81326
|
chat?: ChatUncheckedCreateNestedOneWithoutOptInInput
|
|
80094
81327
|
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutOptInInput
|
|
81328
|
+
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
|
|
80095
81329
|
}
|
|
80096
81330
|
|
|
80097
81331
|
export type OptInUpdateInput = {
|
|
@@ -80115,6 +81349,7 @@ export namespace Prisma {
|
|
|
80115
81349
|
optInSteps?: OptInStepUpdateManyWithoutOptInNestedInput
|
|
80116
81350
|
chat?: ChatUpdateOneWithoutOptInNestedInput
|
|
80117
81351
|
campaignInvites?: CampaignInviteUpdateManyWithoutOptInNestedInput
|
|
81352
|
+
trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
|
|
80118
81353
|
}
|
|
80119
81354
|
|
|
80120
81355
|
export type OptInUncheckedUpdateInput = {
|
|
@@ -80139,6 +81374,7 @@ export namespace Prisma {
|
|
|
80139
81374
|
optInSteps?: OptInStepUncheckedUpdateManyWithoutOptInNestedInput
|
|
80140
81375
|
chat?: ChatUncheckedUpdateOneWithoutOptInNestedInput
|
|
80141
81376
|
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutOptInNestedInput
|
|
81377
|
+
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
|
|
80142
81378
|
}
|
|
80143
81379
|
|
|
80144
81380
|
export type OptInCreateManyInput = {
|
|
@@ -80197,6 +81433,72 @@ export namespace Prisma {
|
|
|
80197
81433
|
currentStepId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
80198
81434
|
}
|
|
80199
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
|
+
|
|
80200
81502
|
export type OptInVariableCreateInput = {
|
|
80201
81503
|
optIn: OptInCreateNestedOneWithoutVariablesInput
|
|
80202
81504
|
variable: VariableCreateNestedOneWithoutOptInVariablesInput
|
|
@@ -80247,7 +81549,6 @@ export namespace Prisma {
|
|
|
80247
81549
|
data?: JsonNullValueInput | InputJsonValue
|
|
80248
81550
|
lastFetched?: Date | string | null
|
|
80249
81551
|
lastWebhook?: Date | string | null
|
|
80250
|
-
isStale?: boolean | null
|
|
80251
81552
|
posted?: Date | string | null
|
|
80252
81553
|
title?: string | null
|
|
80253
81554
|
description?: string | null
|
|
@@ -80286,7 +81587,6 @@ export namespace Prisma {
|
|
|
80286
81587
|
data?: JsonNullValueInput | InputJsonValue
|
|
80287
81588
|
lastFetched?: Date | string | null
|
|
80288
81589
|
lastWebhook?: Date | string | null
|
|
80289
|
-
isStale?: boolean | null
|
|
80290
81590
|
posted?: Date | string | null
|
|
80291
81591
|
title?: string | null
|
|
80292
81592
|
description?: string | null
|
|
@@ -80324,7 +81624,6 @@ export namespace Prisma {
|
|
|
80324
81624
|
data?: JsonNullValueInput | InputJsonValue
|
|
80325
81625
|
lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
80326
81626
|
lastWebhook?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
80327
|
-
isStale?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
80328
81627
|
posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
80329
81628
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80330
81629
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -80363,7 +81662,6 @@ export namespace Prisma {
|
|
|
80363
81662
|
data?: JsonNullValueInput | InputJsonValue
|
|
80364
81663
|
lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
80365
81664
|
lastWebhook?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
80366
|
-
isStale?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
80367
81665
|
posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
80368
81666
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80369
81667
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -80402,7 +81700,6 @@ export namespace Prisma {
|
|
|
80402
81700
|
data?: JsonNullValueInput | InputJsonValue
|
|
80403
81701
|
lastFetched?: Date | string | null
|
|
80404
81702
|
lastWebhook?: Date | string | null
|
|
80405
|
-
isStale?: boolean | null
|
|
80406
81703
|
posted?: Date | string | null
|
|
80407
81704
|
title?: string | null
|
|
80408
81705
|
description?: string | null
|
|
@@ -80438,7 +81735,6 @@ export namespace Prisma {
|
|
|
80438
81735
|
data?: JsonNullValueInput | InputJsonValue
|
|
80439
81736
|
lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
80440
81737
|
lastWebhook?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
80441
|
-
isStale?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
80442
81738
|
posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
80443
81739
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80444
81740
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -80473,7 +81769,6 @@ export namespace Prisma {
|
|
|
80473
81769
|
data?: JsonNullValueInput | InputJsonValue
|
|
80474
81770
|
lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
80475
81771
|
lastWebhook?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
80476
|
-
isStale?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
80477
81772
|
posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
80478
81773
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80479
81774
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -84913,6 +86208,16 @@ export namespace Prisma {
|
|
|
84913
86208
|
isNot?: ChatWhereInput | null
|
|
84914
86209
|
}
|
|
84915
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
|
+
|
|
84916
86221
|
export type OptInOrderByRelevanceInput = {
|
|
84917
86222
|
fields: OptInOrderByRelevanceFieldEnum | OptInOrderByRelevanceFieldEnum[]
|
|
84918
86223
|
sort: SortOrder
|
|
@@ -84991,6 +86296,86 @@ export namespace Prisma {
|
|
|
84991
86296
|
currentStepId?: SortOrder
|
|
84992
86297
|
}
|
|
84993
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
|
+
|
|
84994
86379
|
export type VariableOptionRelationFilter = {
|
|
84995
86380
|
is?: VariableOptionWhereInput
|
|
84996
86381
|
isNot?: VariableOptionWhereInput
|
|
@@ -85069,7 +86454,6 @@ export namespace Prisma {
|
|
|
85069
86454
|
data?: SortOrder
|
|
85070
86455
|
lastFetched?: SortOrder
|
|
85071
86456
|
lastWebhook?: SortOrder
|
|
85072
|
-
isStale?: SortOrder
|
|
85073
86457
|
posted?: SortOrder
|
|
85074
86458
|
title?: SortOrder
|
|
85075
86459
|
description?: SortOrder
|
|
@@ -85123,7 +86507,6 @@ export namespace Prisma {
|
|
|
85123
86507
|
phylloId?: SortOrder
|
|
85124
86508
|
lastFetched?: SortOrder
|
|
85125
86509
|
lastWebhook?: SortOrder
|
|
85126
|
-
isStale?: SortOrder
|
|
85127
86510
|
posted?: SortOrder
|
|
85128
86511
|
title?: SortOrder
|
|
85129
86512
|
description?: SortOrder
|
|
@@ -85158,7 +86541,6 @@ export namespace Prisma {
|
|
|
85158
86541
|
phylloId?: SortOrder
|
|
85159
86542
|
lastFetched?: SortOrder
|
|
85160
86543
|
lastWebhook?: SortOrder
|
|
85161
|
-
isStale?: SortOrder
|
|
85162
86544
|
posted?: SortOrder
|
|
85163
86545
|
title?: SortOrder
|
|
85164
86546
|
description?: SortOrder
|
|
@@ -90092,6 +91474,13 @@ export namespace Prisma {
|
|
|
90092
91474
|
connect?: CampaignInviteWhereUniqueInput | CampaignInviteWhereUniqueInput[]
|
|
90093
91475
|
}
|
|
90094
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
|
+
|
|
90095
91484
|
export type OptInVariableUncheckedCreateNestedManyWithoutOptInInput = {
|
|
90096
91485
|
create?: XOR<OptInVariableCreateWithoutOptInInput, OptInVariableUncheckedCreateWithoutOptInInput> | OptInVariableCreateWithoutOptInInput[] | OptInVariableUncheckedCreateWithoutOptInInput[]
|
|
90097
91486
|
connectOrCreate?: OptInVariableCreateOrConnectWithoutOptInInput | OptInVariableCreateOrConnectWithoutOptInInput[]
|
|
@@ -90119,6 +91508,13 @@ export namespace Prisma {
|
|
|
90119
91508
|
connect?: CampaignInviteWhereUniqueInput | CampaignInviteWhereUniqueInput[]
|
|
90120
91509
|
}
|
|
90121
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
|
+
|
|
90122
91518
|
export type UserUpdateOneRequiredWithoutOptInsNestedInput = {
|
|
90123
91519
|
create?: XOR<UserCreateWithoutOptInsInput, UserUncheckedCreateWithoutOptInsInput>
|
|
90124
91520
|
connectOrCreate?: UserCreateOrConnectWithoutOptInsInput
|
|
@@ -90197,6 +91593,20 @@ export namespace Prisma {
|
|
|
90197
91593
|
deleteMany?: CampaignInviteScalarWhereInput | CampaignInviteScalarWhereInput[]
|
|
90198
91594
|
}
|
|
90199
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
|
+
|
|
90200
91610
|
export type OptInVariableUncheckedUpdateManyWithoutOptInNestedInput = {
|
|
90201
91611
|
create?: XOR<OptInVariableCreateWithoutOptInInput, OptInVariableUncheckedCreateWithoutOptInInput> | OptInVariableCreateWithoutOptInInput[] | OptInVariableUncheckedCreateWithoutOptInInput[]
|
|
90202
91612
|
connectOrCreate?: OptInVariableCreateOrConnectWithoutOptInInput | OptInVariableCreateOrConnectWithoutOptInInput[]
|
|
@@ -90249,6 +91659,42 @@ export namespace Prisma {
|
|
|
90249
91659
|
deleteMany?: CampaignInviteScalarWhereInput | CampaignInviteScalarWhereInput[]
|
|
90250
91660
|
}
|
|
90251
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
|
+
|
|
90252
91698
|
export type OptInCreateNestedOneWithoutVariablesInput = {
|
|
90253
91699
|
create?: XOR<OptInCreateWithoutVariablesInput, OptInUncheckedCreateWithoutVariablesInput>
|
|
90254
91700
|
connectOrCreate?: OptInCreateOrConnectWithoutVariablesInput
|
|
@@ -92177,6 +93623,40 @@ export namespace Prisma {
|
|
|
92177
93623
|
_max?: NestedBoolFilter<$PrismaModel>
|
|
92178
93624
|
}
|
|
92179
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
|
+
|
|
92180
93660
|
export type UserCreateWithoutReferredUsersInput = {
|
|
92181
93661
|
role: string
|
|
92182
93662
|
email?: string | null
|
|
@@ -92726,6 +94206,7 @@ export namespace Prisma {
|
|
|
92726
94206
|
optInSteps?: OptInStepCreateNestedManyWithoutOptInInput
|
|
92727
94207
|
chat?: ChatCreateNestedOneWithoutOptInInput
|
|
92728
94208
|
campaignInvites?: CampaignInviteCreateNestedManyWithoutOptInInput
|
|
94209
|
+
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
|
|
92729
94210
|
}
|
|
92730
94211
|
|
|
92731
94212
|
export type OptInUncheckedCreateWithoutUserInput = {
|
|
@@ -92749,6 +94230,7 @@ export namespace Prisma {
|
|
|
92749
94230
|
optInSteps?: OptInStepUncheckedCreateNestedManyWithoutOptInInput
|
|
92750
94231
|
chat?: ChatUncheckedCreateNestedOneWithoutOptInInput
|
|
92751
94232
|
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutOptInInput
|
|
94233
|
+
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
|
|
92752
94234
|
}
|
|
92753
94235
|
|
|
92754
94236
|
export type OptInCreateOrConnectWithoutUserInput = {
|
|
@@ -92881,7 +94363,6 @@ export namespace Prisma {
|
|
|
92881
94363
|
data?: JsonNullValueInput | InputJsonValue
|
|
92882
94364
|
lastFetched?: Date | string | null
|
|
92883
94365
|
lastWebhook?: Date | string | null
|
|
92884
|
-
isStale?: boolean | null
|
|
92885
94366
|
posted?: Date | string | null
|
|
92886
94367
|
title?: string | null
|
|
92887
94368
|
description?: string | null
|
|
@@ -92919,7 +94400,6 @@ export namespace Prisma {
|
|
|
92919
94400
|
data?: JsonNullValueInput | InputJsonValue
|
|
92920
94401
|
lastFetched?: Date | string | null
|
|
92921
94402
|
lastWebhook?: Date | string | null
|
|
92922
|
-
isStale?: boolean | null
|
|
92923
94403
|
posted?: Date | string | null
|
|
92924
94404
|
title?: string | null
|
|
92925
94405
|
description?: string | null
|
|
@@ -93829,7 +95309,6 @@ export namespace Prisma {
|
|
|
93829
95309
|
data?: JsonFilter<"SocialPost">
|
|
93830
95310
|
lastFetched?: DateTimeNullableFilter<"SocialPost"> | Date | string | null
|
|
93831
95311
|
lastWebhook?: DateTimeNullableFilter<"SocialPost"> | Date | string | null
|
|
93832
|
-
isStale?: BoolNullableFilter<"SocialPost"> | boolean | null
|
|
93833
95312
|
posted?: DateTimeNullableFilter<"SocialPost"> | Date | string | null
|
|
93834
95313
|
title?: StringNullableFilter<"SocialPost"> | string | null
|
|
93835
95314
|
description?: StringNullableFilter<"SocialPost"> | string | null
|
|
@@ -99363,6 +100842,7 @@ export namespace Prisma {
|
|
|
99363
100842
|
variables?: OptInVariableCreateNestedManyWithoutOptInInput
|
|
99364
100843
|
optInSteps?: OptInStepCreateNestedManyWithoutOptInInput
|
|
99365
100844
|
campaignInvites?: CampaignInviteCreateNestedManyWithoutOptInInput
|
|
100845
|
+
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
|
|
99366
100846
|
}
|
|
99367
100847
|
|
|
99368
100848
|
export type OptInUncheckedCreateWithoutChatInput = {
|
|
@@ -99386,6 +100866,7 @@ export namespace Prisma {
|
|
|
99386
100866
|
variables?: OptInVariableUncheckedCreateNestedManyWithoutOptInInput
|
|
99387
100867
|
optInSteps?: OptInStepUncheckedCreateNestedManyWithoutOptInInput
|
|
99388
100868
|
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutOptInInput
|
|
100869
|
+
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
|
|
99389
100870
|
}
|
|
99390
100871
|
|
|
99391
100872
|
export type OptInCreateOrConnectWithoutChatInput = {
|
|
@@ -99455,6 +100936,7 @@ export namespace Prisma {
|
|
|
99455
100936
|
variables?: OptInVariableUpdateManyWithoutOptInNestedInput
|
|
99456
100937
|
optInSteps?: OptInStepUpdateManyWithoutOptInNestedInput
|
|
99457
100938
|
campaignInvites?: CampaignInviteUpdateManyWithoutOptInNestedInput
|
|
100939
|
+
trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
|
|
99458
100940
|
}
|
|
99459
100941
|
|
|
99460
100942
|
export type OptInUncheckedUpdateWithoutChatInput = {
|
|
@@ -99478,6 +100960,7 @@ export namespace Prisma {
|
|
|
99478
100960
|
variables?: OptInVariableUncheckedUpdateManyWithoutOptInNestedInput
|
|
99479
100961
|
optInSteps?: OptInStepUncheckedUpdateManyWithoutOptInNestedInput
|
|
99480
100962
|
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutOptInNestedInput
|
|
100963
|
+
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
|
|
99481
100964
|
}
|
|
99482
100965
|
|
|
99483
100966
|
export type MessageUpsertWithWhereUniqueWithoutChatInput = {
|
|
@@ -99795,6 +101278,7 @@ export namespace Prisma {
|
|
|
99795
101278
|
optInSteps?: OptInStepCreateNestedManyWithoutOptInInput
|
|
99796
101279
|
chat?: ChatCreateNestedOneWithoutOptInInput
|
|
99797
101280
|
campaignInvites?: CampaignInviteCreateNestedManyWithoutOptInInput
|
|
101281
|
+
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
|
|
99798
101282
|
}
|
|
99799
101283
|
|
|
99800
101284
|
export type OptInUncheckedCreateWithoutCampaignInput = {
|
|
@@ -99818,6 +101302,7 @@ export namespace Prisma {
|
|
|
99818
101302
|
optInSteps?: OptInStepUncheckedCreateNestedManyWithoutOptInInput
|
|
99819
101303
|
chat?: ChatUncheckedCreateNestedOneWithoutOptInInput
|
|
99820
101304
|
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutOptInInput
|
|
101305
|
+
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
|
|
99821
101306
|
}
|
|
99822
101307
|
|
|
99823
101308
|
export type OptInCreateOrConnectWithoutCampaignInput = {
|
|
@@ -99925,7 +101410,6 @@ export namespace Prisma {
|
|
|
99925
101410
|
data?: JsonNullValueInput | InputJsonValue
|
|
99926
101411
|
lastFetched?: Date | string | null
|
|
99927
101412
|
lastWebhook?: Date | string | null
|
|
99928
|
-
isStale?: boolean | null
|
|
99929
101413
|
posted?: Date | string | null
|
|
99930
101414
|
title?: string | null
|
|
99931
101415
|
description?: string | null
|
|
@@ -99963,7 +101447,6 @@ export namespace Prisma {
|
|
|
99963
101447
|
data?: JsonNullValueInput | InputJsonValue
|
|
99964
101448
|
lastFetched?: Date | string | null
|
|
99965
101449
|
lastWebhook?: Date | string | null
|
|
99966
|
-
isStale?: boolean | null
|
|
99967
101450
|
posted?: Date | string | null
|
|
99968
101451
|
title?: string | null
|
|
99969
101452
|
description?: string | null
|
|
@@ -102664,6 +104147,7 @@ export namespace Prisma {
|
|
|
102664
104147
|
optInSteps?: OptInStepCreateNestedManyWithoutOptInInput
|
|
102665
104148
|
chat?: ChatCreateNestedOneWithoutOptInInput
|
|
102666
104149
|
campaignInvites?: CampaignInviteCreateNestedManyWithoutOptInInput
|
|
104150
|
+
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
|
|
102667
104151
|
}
|
|
102668
104152
|
|
|
102669
104153
|
export type OptInUncheckedCreateWithoutCurrentStepInput = {
|
|
@@ -102687,6 +104171,7 @@ export namespace Prisma {
|
|
|
102687
104171
|
optInSteps?: OptInStepUncheckedCreateNestedManyWithoutOptInInput
|
|
102688
104172
|
chat?: ChatUncheckedCreateNestedOneWithoutOptInInput
|
|
102689
104173
|
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutOptInInput
|
|
104174
|
+
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
|
|
102690
104175
|
}
|
|
102691
104176
|
|
|
102692
104177
|
export type OptInCreateOrConnectWithoutCurrentStepInput = {
|
|
@@ -102956,6 +104441,7 @@ export namespace Prisma {
|
|
|
102956
104441
|
variables?: OptInVariableCreateNestedManyWithoutOptInInput
|
|
102957
104442
|
chat?: ChatCreateNestedOneWithoutOptInInput
|
|
102958
104443
|
campaignInvites?: CampaignInviteCreateNestedManyWithoutOptInInput
|
|
104444
|
+
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
|
|
102959
104445
|
}
|
|
102960
104446
|
|
|
102961
104447
|
export type OptInUncheckedCreateWithoutOptInStepsInput = {
|
|
@@ -102979,6 +104465,7 @@ export namespace Prisma {
|
|
|
102979
104465
|
variables?: OptInVariableUncheckedCreateNestedManyWithoutOptInInput
|
|
102980
104466
|
chat?: ChatUncheckedCreateNestedOneWithoutOptInInput
|
|
102981
104467
|
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutOptInInput
|
|
104468
|
+
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
|
|
102982
104469
|
}
|
|
102983
104470
|
|
|
102984
104471
|
export type OptInCreateOrConnectWithoutOptInStepsInput = {
|
|
@@ -103049,6 +104536,7 @@ export namespace Prisma {
|
|
|
103049
104536
|
variables?: OptInVariableUpdateManyWithoutOptInNestedInput
|
|
103050
104537
|
chat?: ChatUpdateOneWithoutOptInNestedInput
|
|
103051
104538
|
campaignInvites?: CampaignInviteUpdateManyWithoutOptInNestedInput
|
|
104539
|
+
trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
|
|
103052
104540
|
}
|
|
103053
104541
|
|
|
103054
104542
|
export type OptInUncheckedUpdateWithoutOptInStepsInput = {
|
|
@@ -103072,6 +104560,7 @@ export namespace Prisma {
|
|
|
103072
104560
|
variables?: OptInVariableUncheckedUpdateManyWithoutOptInNestedInput
|
|
103073
104561
|
chat?: ChatUncheckedUpdateOneWithoutOptInNestedInput
|
|
103074
104562
|
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutOptInNestedInput
|
|
104563
|
+
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
|
|
103075
104564
|
}
|
|
103076
104565
|
|
|
103077
104566
|
export type CampaignStepUpsertWithoutOptInStepsInput = {
|
|
@@ -103567,6 +105056,33 @@ export namespace Prisma {
|
|
|
103567
105056
|
skipDuplicates?: boolean
|
|
103568
105057
|
}
|
|
103569
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
|
+
|
|
103570
105086
|
export type UserUpsertWithoutOptInsInput = {
|
|
103571
105087
|
update: XOR<UserUpdateWithoutOptInsInput, UserUncheckedUpdateWithoutOptInsInput>
|
|
103572
105088
|
create: XOR<UserCreateWithoutOptInsInput, UserUncheckedCreateWithoutOptInsInput>
|
|
@@ -103913,6 +105429,145 @@ export namespace Prisma {
|
|
|
103913
105429
|
data: XOR<CampaignInviteUpdateManyMutationInput, CampaignInviteUncheckedUpdateManyWithoutOptInInput>
|
|
103914
105430
|
}
|
|
103915
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
|
+
|
|
103916
105571
|
export type OptInCreateWithoutVariablesInput = {
|
|
103917
105572
|
status?: string
|
|
103918
105573
|
created?: Date | string
|
|
@@ -103933,6 +105588,7 @@ export namespace Prisma {
|
|
|
103933
105588
|
optInSteps?: OptInStepCreateNestedManyWithoutOptInInput
|
|
103934
105589
|
chat?: ChatCreateNestedOneWithoutOptInInput
|
|
103935
105590
|
campaignInvites?: CampaignInviteCreateNestedManyWithoutOptInInput
|
|
105591
|
+
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
|
|
103936
105592
|
}
|
|
103937
105593
|
|
|
103938
105594
|
export type OptInUncheckedCreateWithoutVariablesInput = {
|
|
@@ -103956,6 +105612,7 @@ export namespace Prisma {
|
|
|
103956
105612
|
optInSteps?: OptInStepUncheckedCreateNestedManyWithoutOptInInput
|
|
103957
105613
|
chat?: ChatUncheckedCreateNestedOneWithoutOptInInput
|
|
103958
105614
|
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutOptInInput
|
|
105615
|
+
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
|
|
103959
105616
|
}
|
|
103960
105617
|
|
|
103961
105618
|
export type OptInCreateOrConnectWithoutVariablesInput = {
|
|
@@ -104036,6 +105693,7 @@ export namespace Prisma {
|
|
|
104036
105693
|
optInSteps?: OptInStepUpdateManyWithoutOptInNestedInput
|
|
104037
105694
|
chat?: ChatUpdateOneWithoutOptInNestedInput
|
|
104038
105695
|
campaignInvites?: CampaignInviteUpdateManyWithoutOptInNestedInput
|
|
105696
|
+
trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
|
|
104039
105697
|
}
|
|
104040
105698
|
|
|
104041
105699
|
export type OptInUncheckedUpdateWithoutVariablesInput = {
|
|
@@ -104059,6 +105717,7 @@ export namespace Prisma {
|
|
|
104059
105717
|
optInSteps?: OptInStepUncheckedUpdateManyWithoutOptInNestedInput
|
|
104060
105718
|
chat?: ChatUncheckedUpdateOneWithoutOptInNestedInput
|
|
104061
105719
|
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutOptInNestedInput
|
|
105720
|
+
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
|
|
104062
105721
|
}
|
|
104063
105722
|
|
|
104064
105723
|
export type VariableUpsertWithoutOptInVariablesInput = {
|
|
@@ -104668,7 +106327,6 @@ export namespace Prisma {
|
|
|
104668
106327
|
data?: JsonNullValueInput | InputJsonValue
|
|
104669
106328
|
lastFetched?: Date | string | null
|
|
104670
106329
|
lastWebhook?: Date | string | null
|
|
104671
|
-
isStale?: boolean | null
|
|
104672
106330
|
posted?: Date | string | null
|
|
104673
106331
|
title?: string | null
|
|
104674
106332
|
description?: string | null
|
|
@@ -104706,7 +106364,6 @@ export namespace Prisma {
|
|
|
104706
106364
|
data?: JsonNullValueInput | InputJsonValue
|
|
104707
106365
|
lastFetched?: Date | string | null
|
|
104708
106366
|
lastWebhook?: Date | string | null
|
|
104709
|
-
isStale?: boolean | null
|
|
104710
106367
|
posted?: Date | string | null
|
|
104711
106368
|
title?: string | null
|
|
104712
106369
|
description?: string | null
|
|
@@ -104759,7 +106416,6 @@ export namespace Prisma {
|
|
|
104759
106416
|
data?: JsonNullValueInput | InputJsonValue
|
|
104760
106417
|
lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
104761
106418
|
lastWebhook?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
104762
|
-
isStale?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
104763
106419
|
posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
104764
106420
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104765
106421
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -104797,7 +106453,6 @@ export namespace Prisma {
|
|
|
104797
106453
|
data?: JsonNullValueInput | InputJsonValue
|
|
104798
106454
|
lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
104799
106455
|
lastWebhook?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
104800
|
-
isStale?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
104801
106456
|
posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
104802
106457
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104803
106458
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -106597,6 +108252,7 @@ export namespace Prisma {
|
|
|
106597
108252
|
variables?: OptInVariableCreateNestedManyWithoutOptInInput
|
|
106598
108253
|
optInSteps?: OptInStepCreateNestedManyWithoutOptInInput
|
|
106599
108254
|
chat?: ChatCreateNestedOneWithoutOptInInput
|
|
108255
|
+
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutOptInInput
|
|
106600
108256
|
}
|
|
106601
108257
|
|
|
106602
108258
|
export type OptInUncheckedCreateWithoutCampaignInvitesInput = {
|
|
@@ -106620,6 +108276,7 @@ export namespace Prisma {
|
|
|
106620
108276
|
variables?: OptInVariableUncheckedCreateNestedManyWithoutOptInInput
|
|
106621
108277
|
optInSteps?: OptInStepUncheckedCreateNestedManyWithoutOptInInput
|
|
106622
108278
|
chat?: ChatUncheckedCreateNestedOneWithoutOptInInput
|
|
108279
|
+
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutOptInInput
|
|
106623
108280
|
}
|
|
106624
108281
|
|
|
106625
108282
|
export type OptInCreateOrConnectWithoutCampaignInvitesInput = {
|
|
@@ -106936,6 +108593,7 @@ export namespace Prisma {
|
|
|
106936
108593
|
variables?: OptInVariableUpdateManyWithoutOptInNestedInput
|
|
106937
108594
|
optInSteps?: OptInStepUpdateManyWithoutOptInNestedInput
|
|
106938
108595
|
chat?: ChatUpdateOneWithoutOptInNestedInput
|
|
108596
|
+
trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
|
|
106939
108597
|
}
|
|
106940
108598
|
|
|
106941
108599
|
export type OptInUncheckedUpdateWithoutCampaignInvitesInput = {
|
|
@@ -106959,6 +108617,7 @@ export namespace Prisma {
|
|
|
106959
108617
|
variables?: OptInVariableUncheckedUpdateManyWithoutOptInNestedInput
|
|
106960
108618
|
optInSteps?: OptInStepUncheckedUpdateManyWithoutOptInNestedInput
|
|
106961
108619
|
chat?: ChatUncheckedUpdateOneWithoutOptInNestedInput
|
|
108620
|
+
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
|
|
106962
108621
|
}
|
|
106963
108622
|
|
|
106964
108623
|
export type CreatorListItemCreateWithoutCreatorListInput = {
|
|
@@ -108722,7 +110381,6 @@ export namespace Prisma {
|
|
|
108722
110381
|
data?: JsonNullValueInput | InputJsonValue
|
|
108723
110382
|
lastFetched?: Date | string | null
|
|
108724
110383
|
lastWebhook?: Date | string | null
|
|
108725
|
-
isStale?: boolean | null
|
|
108726
110384
|
posted?: Date | string | null
|
|
108727
110385
|
title?: string | null
|
|
108728
110386
|
description?: string | null
|
|
@@ -108760,7 +110418,6 @@ export namespace Prisma {
|
|
|
108760
110418
|
data?: JsonNullValueInput | InputJsonValue
|
|
108761
110419
|
lastFetched?: Date | string | null
|
|
108762
110420
|
lastWebhook?: Date | string | null
|
|
108763
|
-
isStale?: boolean | null
|
|
108764
110421
|
posted?: Date | string | null
|
|
108765
110422
|
title?: string | null
|
|
108766
110423
|
description?: string | null
|
|
@@ -108847,7 +110504,6 @@ export namespace Prisma {
|
|
|
108847
110504
|
data?: JsonNullValueInput | InputJsonValue
|
|
108848
110505
|
lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
108849
110506
|
lastWebhook?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
108850
|
-
isStale?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
108851
110507
|
posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
108852
110508
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
108853
110509
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -108885,7 +110541,6 @@ export namespace Prisma {
|
|
|
108885
110541
|
data?: JsonNullValueInput | InputJsonValue
|
|
108886
110542
|
lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
108887
110543
|
lastWebhook?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
108888
|
-
isStale?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
108889
110544
|
posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
108890
110545
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
108891
110546
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -111252,7 +112907,6 @@ export namespace Prisma {
|
|
|
111252
112907
|
data?: JsonNullValueInput | InputJsonValue
|
|
111253
112908
|
lastFetched?: Date | string | null
|
|
111254
112909
|
lastWebhook?: Date | string | null
|
|
111255
|
-
isStale?: boolean | null
|
|
111256
112910
|
posted?: Date | string | null
|
|
111257
112911
|
title?: string | null
|
|
111258
112912
|
description?: string | null
|
|
@@ -111499,6 +113153,7 @@ export namespace Prisma {
|
|
|
111499
113153
|
optInSteps?: OptInStepUpdateManyWithoutOptInNestedInput
|
|
111500
113154
|
chat?: ChatUpdateOneWithoutOptInNestedInput
|
|
111501
113155
|
campaignInvites?: CampaignInviteUpdateManyWithoutOptInNestedInput
|
|
113156
|
+
trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
|
|
111502
113157
|
}
|
|
111503
113158
|
|
|
111504
113159
|
export type OptInUncheckedUpdateWithoutUserInput = {
|
|
@@ -111522,6 +113177,7 @@ export namespace Prisma {
|
|
|
111522
113177
|
optInSteps?: OptInStepUncheckedUpdateManyWithoutOptInNestedInput
|
|
111523
113178
|
chat?: ChatUncheckedUpdateOneWithoutOptInNestedInput
|
|
111524
113179
|
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutOptInNestedInput
|
|
113180
|
+
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
|
|
111525
113181
|
}
|
|
111526
113182
|
|
|
111527
113183
|
export type OptInUncheckedUpdateManyWithoutUserInput = {
|
|
@@ -111670,7 +113326,6 @@ export namespace Prisma {
|
|
|
111670
113326
|
data?: JsonNullValueInput | InputJsonValue
|
|
111671
113327
|
lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
111672
113328
|
lastWebhook?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
111673
|
-
isStale?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
111674
113329
|
posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
111675
113330
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111676
113331
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -111708,7 +113363,6 @@ export namespace Prisma {
|
|
|
111708
113363
|
data?: JsonNullValueInput | InputJsonValue
|
|
111709
113364
|
lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
111710
113365
|
lastWebhook?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
111711
|
-
isStale?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
111712
113366
|
posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
111713
113367
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111714
113368
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -111746,7 +113400,6 @@ export namespace Prisma {
|
|
|
111746
113400
|
data?: JsonNullValueInput | InputJsonValue
|
|
111747
113401
|
lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
111748
113402
|
lastWebhook?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
111749
|
-
isStale?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
111750
113403
|
posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
111751
113404
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111752
113405
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -113043,7 +114696,6 @@ export namespace Prisma {
|
|
|
113043
114696
|
data?: JsonNullValueInput | InputJsonValue
|
|
113044
114697
|
lastFetched?: Date | string | null
|
|
113045
114698
|
lastWebhook?: Date | string | null
|
|
113046
|
-
isStale?: boolean | null
|
|
113047
114699
|
posted?: Date | string | null
|
|
113048
114700
|
title?: string | null
|
|
113049
114701
|
description?: string | null
|
|
@@ -113180,6 +114832,7 @@ export namespace Prisma {
|
|
|
113180
114832
|
optInSteps?: OptInStepUpdateManyWithoutOptInNestedInput
|
|
113181
114833
|
chat?: ChatUpdateOneWithoutOptInNestedInput
|
|
113182
114834
|
campaignInvites?: CampaignInviteUpdateManyWithoutOptInNestedInput
|
|
114835
|
+
trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
|
|
113183
114836
|
}
|
|
113184
114837
|
|
|
113185
114838
|
export type OptInUncheckedUpdateWithoutCampaignInput = {
|
|
@@ -113203,6 +114856,7 @@ export namespace Prisma {
|
|
|
113203
114856
|
optInSteps?: OptInStepUncheckedUpdateManyWithoutOptInNestedInput
|
|
113204
114857
|
chat?: ChatUncheckedUpdateOneWithoutOptInNestedInput
|
|
113205
114858
|
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutOptInNestedInput
|
|
114859
|
+
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
|
|
113206
114860
|
}
|
|
113207
114861
|
|
|
113208
114862
|
export type OptInUncheckedUpdateManyWithoutCampaignInput = {
|
|
@@ -113302,7 +114956,6 @@ export namespace Prisma {
|
|
|
113302
114956
|
data?: JsonNullValueInput | InputJsonValue
|
|
113303
114957
|
lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
113304
114958
|
lastWebhook?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
113305
|
-
isStale?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
113306
114959
|
posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
113307
114960
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
113308
114961
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -113340,7 +114993,6 @@ export namespace Prisma {
|
|
|
113340
114993
|
data?: JsonNullValueInput | InputJsonValue
|
|
113341
114994
|
lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
113342
114995
|
lastWebhook?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
113343
|
-
isStale?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
113344
114996
|
posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
113345
114997
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
113346
114998
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -113378,7 +115030,6 @@ export namespace Prisma {
|
|
|
113378
115030
|
data?: JsonNullValueInput | InputJsonValue
|
|
113379
115031
|
lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
113380
115032
|
lastWebhook?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
113381
|
-
isStale?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
113382
115033
|
posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
113383
115034
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
113384
115035
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -113722,6 +115373,7 @@ export namespace Prisma {
|
|
|
113722
115373
|
optInSteps?: OptInStepUpdateManyWithoutOptInNestedInput
|
|
113723
115374
|
chat?: ChatUpdateOneWithoutOptInNestedInput
|
|
113724
115375
|
campaignInvites?: CampaignInviteUpdateManyWithoutOptInNestedInput
|
|
115376
|
+
trolleyPayments?: TrolleyPaymentUpdateManyWithoutOptInNestedInput
|
|
113725
115377
|
}
|
|
113726
115378
|
|
|
113727
115379
|
export type OptInUncheckedUpdateWithoutCurrentStepInput = {
|
|
@@ -113745,6 +115397,7 @@ export namespace Prisma {
|
|
|
113745
115397
|
optInSteps?: OptInStepUncheckedUpdateManyWithoutOptInNestedInput
|
|
113746
115398
|
chat?: ChatUncheckedUpdateOneWithoutOptInNestedInput
|
|
113747
115399
|
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutOptInNestedInput
|
|
115400
|
+
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutOptInNestedInput
|
|
113748
115401
|
}
|
|
113749
115402
|
|
|
113750
115403
|
export type OptInUncheckedUpdateManyWithoutCurrentStepInput = {
|
|
@@ -113863,6 +115516,15 @@ export namespace Prisma {
|
|
|
113863
115516
|
metaData?: NullableJsonNullValueInput | InputJsonValue
|
|
113864
115517
|
}
|
|
113865
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
|
+
|
|
113866
115528
|
export type OptInVariableUpdateWithoutOptInInput = {
|
|
113867
115529
|
variable?: VariableUpdateOneRequiredWithoutOptInVariablesNestedInput
|
|
113868
115530
|
selectedOption?: VariableOptionUpdateOneRequiredWithoutOptInVariablesNestedInput
|
|
@@ -113938,6 +115600,32 @@ export namespace Prisma {
|
|
|
113938
115600
|
metaData?: NullableJsonNullValueInput | InputJsonValue
|
|
113939
115601
|
}
|
|
113940
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
|
+
|
|
113941
115629
|
export type ListToSocialPostCreateManySocialPostInput = {
|
|
113942
115630
|
id?: number
|
|
113943
115631
|
listId: number
|
|
@@ -114825,6 +116513,10 @@ export namespace Prisma {
|
|
|
114825
116513
|
* @deprecated Use OptInDefaultArgs instead
|
|
114826
116514
|
*/
|
|
114827
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>
|
|
114828
116520
|
/**
|
|
114829
116521
|
* @deprecated Use OptInVariableDefaultArgs instead
|
|
114830
116522
|
*/
|