@creator.co/creatorco-prisma-client 1.0.80 → 1.0.81-alpha-e54934e
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/edge.js +28 -8
- package/index-browser.js +21 -2
- package/index.d.ts +1639 -11
- package/index.js +28 -8
- package/package.json +1 -1
- package/schema.prisma +29 -10
- package/wasm.js +21 -2
package/index.d.ts
CHANGED
|
@@ -443,6 +443,11 @@ export type EmailTracking = $Result.DefaultSelection<Prisma.$EmailTrackingPayloa
|
|
|
443
443
|
*
|
|
444
444
|
*/
|
|
445
445
|
export type SequenceOutboundReplyEmail = $Result.DefaultSelection<Prisma.$SequenceOutboundReplyEmailPayload>
|
|
446
|
+
/**
|
|
447
|
+
* Model LatestCreatorPaymentTransaction
|
|
448
|
+
* View to get the latest PaymentTransaction for each creator where accountId equals creatorId
|
|
449
|
+
*/
|
|
450
|
+
export type LatestCreatorPaymentTransaction = $Result.DefaultSelection<Prisma.$LatestCreatorPaymentTransactionPayload>
|
|
446
451
|
|
|
447
452
|
/**
|
|
448
453
|
* Enums
|
|
@@ -451,7 +456,8 @@ export namespace $Enums {
|
|
|
451
456
|
export const trolleyPaymentType: {
|
|
452
457
|
optIn: 'optIn',
|
|
453
458
|
tip: 'tip',
|
|
454
|
-
affiliate: 'affiliate'
|
|
459
|
+
affiliate: 'affiliate',
|
|
460
|
+
withdrawal: 'withdrawal'
|
|
455
461
|
};
|
|
456
462
|
|
|
457
463
|
export type trolleyPaymentType = (typeof trolleyPaymentType)[keyof typeof trolleyPaymentType]
|
|
@@ -1509,6 +1515,16 @@ export class PrismaClient<
|
|
|
1509
1515
|
* ```
|
|
1510
1516
|
*/
|
|
1511
1517
|
get sequenceOutboundReplyEmail(): Prisma.SequenceOutboundReplyEmailDelegate<ExtArgs>;
|
|
1518
|
+
|
|
1519
|
+
/**
|
|
1520
|
+
* `prisma.latestCreatorPaymentTransaction`: Exposes CRUD operations for the **LatestCreatorPaymentTransaction** model.
|
|
1521
|
+
* Example usage:
|
|
1522
|
+
* ```ts
|
|
1523
|
+
* // Fetch zero or more LatestCreatorPaymentTransactions
|
|
1524
|
+
* const latestCreatorPaymentTransactions = await prisma.latestCreatorPaymentTransaction.findMany()
|
|
1525
|
+
* ```
|
|
1526
|
+
*/
|
|
1527
|
+
get latestCreatorPaymentTransaction(): Prisma.LatestCreatorPaymentTransactionDelegate<ExtArgs>;
|
|
1512
1528
|
}
|
|
1513
1529
|
|
|
1514
1530
|
export namespace Prisma {
|
|
@@ -2035,7 +2051,8 @@ export namespace Prisma {
|
|
|
2035
2051
|
CreditRefundBatch: 'CreditRefundBatch',
|
|
2036
2052
|
EmailProvider: 'EmailProvider',
|
|
2037
2053
|
EmailTracking: 'EmailTracking',
|
|
2038
|
-
SequenceOutboundReplyEmail: 'SequenceOutboundReplyEmail'
|
|
2054
|
+
SequenceOutboundReplyEmail: 'SequenceOutboundReplyEmail',
|
|
2055
|
+
LatestCreatorPaymentTransaction: 'LatestCreatorPaymentTransaction'
|
|
2039
2056
|
};
|
|
2040
2057
|
|
|
2041
2058
|
export type ModelName = (typeof ModelName)[keyof typeof ModelName]
|
|
@@ -2051,7 +2068,7 @@ export namespace Prisma {
|
|
|
2051
2068
|
|
|
2052
2069
|
export type TypeMap<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, ClientOptions = {}> = {
|
|
2053
2070
|
meta: {
|
|
2054
|
-
modelProps: "user" | "log" | "creatorProfile" | "instagramProfile" | "tiktokProfile" | "youtubeProfile" | "twitchProfile" | "facebookProfile" | "twitterProfile" | "brandUserProfile" | "brand" | "searchContacts" | "reportCredits" | "brandToImage" | "brandToCategory" | "creatorToCategory" | "chat" | "message" | "campaign" | "campaignPin" | "campaignToImage" | "campaignToBrandAffiliateLink" | "campaignToCategory" | "campaignToCountry" | "productList" | "productListItem" | "campaignToProductList" | "optinToProductListItem" | "variable" | "variableOption" | "step" | "campaignStep" | "optInStep" | "category" | "optIn" | "trolleyPayment" | "optInVariable" | "socialPost" | "publicSocialPost" | "campaignToSocialPost" | "archivedSocialPost" | "image" | "brandImage" | "country" | "state" | "pendingBrandInvoicePayment" | "paymentTransaction" | "externalAffiliateClick" | "brandAffiliateLink" | "affiliateLink" | "affiliateClick" | "affiliateEvent" | "affiliatePayoutBatch" | "savedFile" | "campaignInvite" | "creatorList" | "creatorListItem" | "socialProfile" | "messageTemplate" | "emailTemplate" | "socialListeningList" | "listToSocialPost" | "optInView" | "rakutenActivity" | "impactRadiusEvent" | "cjEvent" | "shareASaleEvent" | "creatorSearchFilter" | "sequence" | "sequenceStep" | "sequenceOutboundEmail" | "sequenceInboundEmail" | "sequenceImapCheckpoint" | "shopifyStore" | "shopifyProduct" | "shopifyProductVariation" | "campaignToShopifyProduct" | "shopifyDiscountCode" | "shopifySale" | "creatorFlag" | "brandContract" | "file" | "creditRefundBatch" | "emailProvider" | "emailTracking" | "sequenceOutboundReplyEmail"
|
|
2071
|
+
modelProps: "user" | "log" | "creatorProfile" | "instagramProfile" | "tiktokProfile" | "youtubeProfile" | "twitchProfile" | "facebookProfile" | "twitterProfile" | "brandUserProfile" | "brand" | "searchContacts" | "reportCredits" | "brandToImage" | "brandToCategory" | "creatorToCategory" | "chat" | "message" | "campaign" | "campaignPin" | "campaignToImage" | "campaignToBrandAffiliateLink" | "campaignToCategory" | "campaignToCountry" | "productList" | "productListItem" | "campaignToProductList" | "optinToProductListItem" | "variable" | "variableOption" | "step" | "campaignStep" | "optInStep" | "category" | "optIn" | "trolleyPayment" | "optInVariable" | "socialPost" | "publicSocialPost" | "campaignToSocialPost" | "archivedSocialPost" | "image" | "brandImage" | "country" | "state" | "pendingBrandInvoicePayment" | "paymentTransaction" | "externalAffiliateClick" | "brandAffiliateLink" | "affiliateLink" | "affiliateClick" | "affiliateEvent" | "affiliatePayoutBatch" | "savedFile" | "campaignInvite" | "creatorList" | "creatorListItem" | "socialProfile" | "messageTemplate" | "emailTemplate" | "socialListeningList" | "listToSocialPost" | "optInView" | "rakutenActivity" | "impactRadiusEvent" | "cjEvent" | "shareASaleEvent" | "creatorSearchFilter" | "sequence" | "sequenceStep" | "sequenceOutboundEmail" | "sequenceInboundEmail" | "sequenceImapCheckpoint" | "shopifyStore" | "shopifyProduct" | "shopifyProductVariation" | "campaignToShopifyProduct" | "shopifyDiscountCode" | "shopifySale" | "creatorFlag" | "brandContract" | "file" | "creditRefundBatch" | "emailProvider" | "emailTracking" | "sequenceOutboundReplyEmail" | "latestCreatorPaymentTransaction"
|
|
2055
2072
|
txIsolationLevel: Prisma.TransactionIsolationLevel
|
|
2056
2073
|
}
|
|
2057
2074
|
model: {
|
|
@@ -8075,6 +8092,76 @@ export namespace Prisma {
|
|
|
8075
8092
|
}
|
|
8076
8093
|
}
|
|
8077
8094
|
}
|
|
8095
|
+
LatestCreatorPaymentTransaction: {
|
|
8096
|
+
payload: Prisma.$LatestCreatorPaymentTransactionPayload<ExtArgs>
|
|
8097
|
+
fields: Prisma.LatestCreatorPaymentTransactionFieldRefs
|
|
8098
|
+
operations: {
|
|
8099
|
+
findUnique: {
|
|
8100
|
+
args: Prisma.LatestCreatorPaymentTransactionFindUniqueArgs<ExtArgs>
|
|
8101
|
+
result: $Utils.PayloadToResult<Prisma.$LatestCreatorPaymentTransactionPayload> | null
|
|
8102
|
+
}
|
|
8103
|
+
findUniqueOrThrow: {
|
|
8104
|
+
args: Prisma.LatestCreatorPaymentTransactionFindUniqueOrThrowArgs<ExtArgs>
|
|
8105
|
+
result: $Utils.PayloadToResult<Prisma.$LatestCreatorPaymentTransactionPayload>
|
|
8106
|
+
}
|
|
8107
|
+
findFirst: {
|
|
8108
|
+
args: Prisma.LatestCreatorPaymentTransactionFindFirstArgs<ExtArgs>
|
|
8109
|
+
result: $Utils.PayloadToResult<Prisma.$LatestCreatorPaymentTransactionPayload> | null
|
|
8110
|
+
}
|
|
8111
|
+
findFirstOrThrow: {
|
|
8112
|
+
args: Prisma.LatestCreatorPaymentTransactionFindFirstOrThrowArgs<ExtArgs>
|
|
8113
|
+
result: $Utils.PayloadToResult<Prisma.$LatestCreatorPaymentTransactionPayload>
|
|
8114
|
+
}
|
|
8115
|
+
findMany: {
|
|
8116
|
+
args: Prisma.LatestCreatorPaymentTransactionFindManyArgs<ExtArgs>
|
|
8117
|
+
result: $Utils.PayloadToResult<Prisma.$LatestCreatorPaymentTransactionPayload>[]
|
|
8118
|
+
}
|
|
8119
|
+
create: {
|
|
8120
|
+
args: Prisma.LatestCreatorPaymentTransactionCreateArgs<ExtArgs>
|
|
8121
|
+
result: $Utils.PayloadToResult<Prisma.$LatestCreatorPaymentTransactionPayload>
|
|
8122
|
+
}
|
|
8123
|
+
createMany: {
|
|
8124
|
+
args: Prisma.LatestCreatorPaymentTransactionCreateManyArgs<ExtArgs>
|
|
8125
|
+
result: BatchPayload
|
|
8126
|
+
}
|
|
8127
|
+
createManyAndReturn: {
|
|
8128
|
+
args: Prisma.LatestCreatorPaymentTransactionCreateManyAndReturnArgs<ExtArgs>
|
|
8129
|
+
result: $Utils.PayloadToResult<Prisma.$LatestCreatorPaymentTransactionPayload>[]
|
|
8130
|
+
}
|
|
8131
|
+
delete: {
|
|
8132
|
+
args: Prisma.LatestCreatorPaymentTransactionDeleteArgs<ExtArgs>
|
|
8133
|
+
result: $Utils.PayloadToResult<Prisma.$LatestCreatorPaymentTransactionPayload>
|
|
8134
|
+
}
|
|
8135
|
+
update: {
|
|
8136
|
+
args: Prisma.LatestCreatorPaymentTransactionUpdateArgs<ExtArgs>
|
|
8137
|
+
result: $Utils.PayloadToResult<Prisma.$LatestCreatorPaymentTransactionPayload>
|
|
8138
|
+
}
|
|
8139
|
+
deleteMany: {
|
|
8140
|
+
args: Prisma.LatestCreatorPaymentTransactionDeleteManyArgs<ExtArgs>
|
|
8141
|
+
result: BatchPayload
|
|
8142
|
+
}
|
|
8143
|
+
updateMany: {
|
|
8144
|
+
args: Prisma.LatestCreatorPaymentTransactionUpdateManyArgs<ExtArgs>
|
|
8145
|
+
result: BatchPayload
|
|
8146
|
+
}
|
|
8147
|
+
upsert: {
|
|
8148
|
+
args: Prisma.LatestCreatorPaymentTransactionUpsertArgs<ExtArgs>
|
|
8149
|
+
result: $Utils.PayloadToResult<Prisma.$LatestCreatorPaymentTransactionPayload>
|
|
8150
|
+
}
|
|
8151
|
+
aggregate: {
|
|
8152
|
+
args: Prisma.LatestCreatorPaymentTransactionAggregateArgs<ExtArgs>
|
|
8153
|
+
result: $Utils.Optional<AggregateLatestCreatorPaymentTransaction>
|
|
8154
|
+
}
|
|
8155
|
+
groupBy: {
|
|
8156
|
+
args: Prisma.LatestCreatorPaymentTransactionGroupByArgs<ExtArgs>
|
|
8157
|
+
result: $Utils.Optional<LatestCreatorPaymentTransactionGroupByOutputType>[]
|
|
8158
|
+
}
|
|
8159
|
+
count: {
|
|
8160
|
+
args: Prisma.LatestCreatorPaymentTransactionCountArgs<ExtArgs>
|
|
8161
|
+
result: $Utils.Optional<LatestCreatorPaymentTransactionCountAggregateOutputType> | number
|
|
8162
|
+
}
|
|
8163
|
+
}
|
|
8164
|
+
}
|
|
8078
8165
|
}
|
|
8079
8166
|
} & {
|
|
8080
8167
|
other: {
|
|
@@ -9505,6 +9592,37 @@ export namespace Prisma {
|
|
|
9505
9592
|
}
|
|
9506
9593
|
|
|
9507
9594
|
|
|
9595
|
+
/**
|
|
9596
|
+
* Count Type PaymentTransactionCountOutputType
|
|
9597
|
+
*/
|
|
9598
|
+
|
|
9599
|
+
export type PaymentTransactionCountOutputType = {
|
|
9600
|
+
trolleyPayments: number
|
|
9601
|
+
}
|
|
9602
|
+
|
|
9603
|
+
export type PaymentTransactionCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9604
|
+
trolleyPayments?: boolean | PaymentTransactionCountOutputTypeCountTrolleyPaymentsArgs
|
|
9605
|
+
}
|
|
9606
|
+
|
|
9607
|
+
// Custom InputTypes
|
|
9608
|
+
/**
|
|
9609
|
+
* PaymentTransactionCountOutputType without action
|
|
9610
|
+
*/
|
|
9611
|
+
export type PaymentTransactionCountOutputTypeDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9612
|
+
/**
|
|
9613
|
+
* Select specific fields to fetch from the PaymentTransactionCountOutputType
|
|
9614
|
+
*/
|
|
9615
|
+
select?: PaymentTransactionCountOutputTypeSelect<ExtArgs> | null
|
|
9616
|
+
}
|
|
9617
|
+
|
|
9618
|
+
/**
|
|
9619
|
+
* PaymentTransactionCountOutputType without action
|
|
9620
|
+
*/
|
|
9621
|
+
export type PaymentTransactionCountOutputTypeCountTrolleyPaymentsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9622
|
+
where?: TrolleyPaymentWhereInput
|
|
9623
|
+
}
|
|
9624
|
+
|
|
9625
|
+
|
|
9508
9626
|
/**
|
|
9509
9627
|
* Count Type BrandAffiliateLinkCountOutputType
|
|
9510
9628
|
*/
|
|
@@ -48269,9 +48387,6 @@ export namespace Prisma {
|
|
|
48269
48387
|
seen: boolean
|
|
48270
48388
|
instructions: string | null
|
|
48271
48389
|
paymentAmount: number | null
|
|
48272
|
-
/**
|
|
48273
|
-
* @deprecated join with TrolleyPayment for actual status
|
|
48274
|
-
*/
|
|
48275
48390
|
paymentStatus: string
|
|
48276
48391
|
extraData: Prisma.JsonValue
|
|
48277
48392
|
favoritedDate: Date | null
|
|
@@ -49338,12 +49453,14 @@ export namespace Prisma {
|
|
|
49338
49453
|
export type TrolleyPaymentAvgAggregateOutputType = {
|
|
49339
49454
|
id: number | null
|
|
49340
49455
|
optInId: number | null
|
|
49456
|
+
paymentTransactionId: number | null
|
|
49341
49457
|
paymentAmount: number | null
|
|
49342
49458
|
}
|
|
49343
49459
|
|
|
49344
49460
|
export type TrolleyPaymentSumAggregateOutputType = {
|
|
49345
49461
|
id: number | null
|
|
49346
49462
|
optInId: number | null
|
|
49463
|
+
paymentTransactionId: number | null
|
|
49347
49464
|
paymentAmount: number | null
|
|
49348
49465
|
}
|
|
49349
49466
|
|
|
@@ -49353,6 +49470,7 @@ export namespace Prisma {
|
|
|
49353
49470
|
type: $Enums.trolleyPaymentType | null
|
|
49354
49471
|
status: $Enums.trolleyPaymentStatus | null
|
|
49355
49472
|
optInId: number | null
|
|
49473
|
+
paymentTransactionId: number | null
|
|
49356
49474
|
paymentAmount: number | null
|
|
49357
49475
|
}
|
|
49358
49476
|
|
|
@@ -49362,6 +49480,7 @@ export namespace Prisma {
|
|
|
49362
49480
|
type: $Enums.trolleyPaymentType | null
|
|
49363
49481
|
status: $Enums.trolleyPaymentStatus | null
|
|
49364
49482
|
optInId: number | null
|
|
49483
|
+
paymentTransactionId: number | null
|
|
49365
49484
|
paymentAmount: number | null
|
|
49366
49485
|
}
|
|
49367
49486
|
|
|
@@ -49371,6 +49490,7 @@ export namespace Prisma {
|
|
|
49371
49490
|
type: number
|
|
49372
49491
|
status: number
|
|
49373
49492
|
optInId: number
|
|
49493
|
+
paymentTransactionId: number
|
|
49374
49494
|
paymentAmount: number
|
|
49375
49495
|
metaData: number
|
|
49376
49496
|
_all: number
|
|
@@ -49380,12 +49500,14 @@ export namespace Prisma {
|
|
|
49380
49500
|
export type TrolleyPaymentAvgAggregateInputType = {
|
|
49381
49501
|
id?: true
|
|
49382
49502
|
optInId?: true
|
|
49503
|
+
paymentTransactionId?: true
|
|
49383
49504
|
paymentAmount?: true
|
|
49384
49505
|
}
|
|
49385
49506
|
|
|
49386
49507
|
export type TrolleyPaymentSumAggregateInputType = {
|
|
49387
49508
|
id?: true
|
|
49388
49509
|
optInId?: true
|
|
49510
|
+
paymentTransactionId?: true
|
|
49389
49511
|
paymentAmount?: true
|
|
49390
49512
|
}
|
|
49391
49513
|
|
|
@@ -49395,6 +49517,7 @@ export namespace Prisma {
|
|
|
49395
49517
|
type?: true
|
|
49396
49518
|
status?: true
|
|
49397
49519
|
optInId?: true
|
|
49520
|
+
paymentTransactionId?: true
|
|
49398
49521
|
paymentAmount?: true
|
|
49399
49522
|
}
|
|
49400
49523
|
|
|
@@ -49404,6 +49527,7 @@ export namespace Prisma {
|
|
|
49404
49527
|
type?: true
|
|
49405
49528
|
status?: true
|
|
49406
49529
|
optInId?: true
|
|
49530
|
+
paymentTransactionId?: true
|
|
49407
49531
|
paymentAmount?: true
|
|
49408
49532
|
}
|
|
49409
49533
|
|
|
@@ -49413,6 +49537,7 @@ export namespace Prisma {
|
|
|
49413
49537
|
type?: true
|
|
49414
49538
|
status?: true
|
|
49415
49539
|
optInId?: true
|
|
49540
|
+
paymentTransactionId?: true
|
|
49416
49541
|
paymentAmount?: true
|
|
49417
49542
|
metaData?: true
|
|
49418
49543
|
_all?: true
|
|
@@ -49510,6 +49635,7 @@ export namespace Prisma {
|
|
|
49510
49635
|
type: $Enums.trolleyPaymentType | null
|
|
49511
49636
|
status: $Enums.trolleyPaymentStatus
|
|
49512
49637
|
optInId: number | null
|
|
49638
|
+
paymentTransactionId: number | null
|
|
49513
49639
|
paymentAmount: number
|
|
49514
49640
|
metaData: JsonValue
|
|
49515
49641
|
_count: TrolleyPaymentCountAggregateOutputType | null
|
|
@@ -49539,9 +49665,11 @@ export namespace Prisma {
|
|
|
49539
49665
|
type?: boolean
|
|
49540
49666
|
status?: boolean
|
|
49541
49667
|
optInId?: boolean
|
|
49668
|
+
paymentTransactionId?: boolean
|
|
49542
49669
|
paymentAmount?: boolean
|
|
49543
49670
|
metaData?: boolean
|
|
49544
49671
|
optIn?: boolean | TrolleyPayment$optInArgs<ExtArgs>
|
|
49672
|
+
paymentTransaction?: boolean | TrolleyPayment$paymentTransactionArgs<ExtArgs>
|
|
49545
49673
|
}, ExtArgs["result"]["trolleyPayment"]>
|
|
49546
49674
|
|
|
49547
49675
|
export type TrolleyPaymentSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
@@ -49550,9 +49678,11 @@ export namespace Prisma {
|
|
|
49550
49678
|
type?: boolean
|
|
49551
49679
|
status?: boolean
|
|
49552
49680
|
optInId?: boolean
|
|
49681
|
+
paymentTransactionId?: boolean
|
|
49553
49682
|
paymentAmount?: boolean
|
|
49554
49683
|
metaData?: boolean
|
|
49555
49684
|
optIn?: boolean | TrolleyPayment$optInArgs<ExtArgs>
|
|
49685
|
+
paymentTransaction?: boolean | TrolleyPayment$paymentTransactionArgs<ExtArgs>
|
|
49556
49686
|
}, ExtArgs["result"]["trolleyPayment"]>
|
|
49557
49687
|
|
|
49558
49688
|
export type TrolleyPaymentSelectScalar = {
|
|
@@ -49561,21 +49691,25 @@ export namespace Prisma {
|
|
|
49561
49691
|
type?: boolean
|
|
49562
49692
|
status?: boolean
|
|
49563
49693
|
optInId?: boolean
|
|
49694
|
+
paymentTransactionId?: boolean
|
|
49564
49695
|
paymentAmount?: boolean
|
|
49565
49696
|
metaData?: boolean
|
|
49566
49697
|
}
|
|
49567
49698
|
|
|
49568
49699
|
export type TrolleyPaymentInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
49569
49700
|
optIn?: boolean | TrolleyPayment$optInArgs<ExtArgs>
|
|
49701
|
+
paymentTransaction?: boolean | TrolleyPayment$paymentTransactionArgs<ExtArgs>
|
|
49570
49702
|
}
|
|
49571
49703
|
export type TrolleyPaymentIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
49572
49704
|
optIn?: boolean | TrolleyPayment$optInArgs<ExtArgs>
|
|
49705
|
+
paymentTransaction?: boolean | TrolleyPayment$paymentTransactionArgs<ExtArgs>
|
|
49573
49706
|
}
|
|
49574
49707
|
|
|
49575
49708
|
export type $TrolleyPaymentPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
49576
49709
|
name: "TrolleyPayment"
|
|
49577
49710
|
objects: {
|
|
49578
49711
|
optIn: Prisma.$OptInPayload<ExtArgs> | null
|
|
49712
|
+
paymentTransaction: Prisma.$PaymentTransactionPayload<ExtArgs> | null
|
|
49579
49713
|
}
|
|
49580
49714
|
scalars: $Extensions.GetPayloadResult<{
|
|
49581
49715
|
id: number
|
|
@@ -49583,6 +49717,7 @@ export namespace Prisma {
|
|
|
49583
49717
|
type: $Enums.trolleyPaymentType | null
|
|
49584
49718
|
status: $Enums.trolleyPaymentStatus
|
|
49585
49719
|
optInId: number | null
|
|
49720
|
+
paymentTransactionId: number | null
|
|
49586
49721
|
paymentAmount: number
|
|
49587
49722
|
metaData: Prisma.JsonValue
|
|
49588
49723
|
}, ExtArgs["result"]["trolleyPayment"]>
|
|
@@ -49950,6 +50085,7 @@ export namespace Prisma {
|
|
|
49950
50085
|
export interface Prisma__TrolleyPaymentClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
49951
50086
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
49952
50087
|
optIn<T extends TrolleyPayment$optInArgs<ExtArgs> = {}>(args?: Subset<T, TrolleyPayment$optInArgs<ExtArgs>>): Prisma__OptInClient<$Result.GetResult<Prisma.$OptInPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
50088
|
+
paymentTransaction<T extends TrolleyPayment$paymentTransactionArgs<ExtArgs> = {}>(args?: Subset<T, TrolleyPayment$paymentTransactionArgs<ExtArgs>>): Prisma__PaymentTransactionClient<$Result.GetResult<Prisma.$PaymentTransactionPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
49953
50089
|
/**
|
|
49954
50090
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
49955
50091
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -49984,6 +50120,7 @@ export namespace Prisma {
|
|
|
49984
50120
|
readonly type: FieldRef<"TrolleyPayment", 'trolleyPaymentType'>
|
|
49985
50121
|
readonly status: FieldRef<"TrolleyPayment", 'trolleyPaymentStatus'>
|
|
49986
50122
|
readonly optInId: FieldRef<"TrolleyPayment", 'Int'>
|
|
50123
|
+
readonly paymentTransactionId: FieldRef<"TrolleyPayment", 'Int'>
|
|
49987
50124
|
readonly paymentAmount: FieldRef<"TrolleyPayment", 'Int'>
|
|
49988
50125
|
readonly metaData: FieldRef<"TrolleyPayment", 'Json'>
|
|
49989
50126
|
}
|
|
@@ -50318,6 +50455,21 @@ export namespace Prisma {
|
|
|
50318
50455
|
where?: OptInWhereInput
|
|
50319
50456
|
}
|
|
50320
50457
|
|
|
50458
|
+
/**
|
|
50459
|
+
* TrolleyPayment.paymentTransaction
|
|
50460
|
+
*/
|
|
50461
|
+
export type TrolleyPayment$paymentTransactionArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50462
|
+
/**
|
|
50463
|
+
* Select specific fields to fetch from the PaymentTransaction
|
|
50464
|
+
*/
|
|
50465
|
+
select?: PaymentTransactionSelect<ExtArgs> | null
|
|
50466
|
+
/**
|
|
50467
|
+
* Choose, which related nodes to fetch as well
|
|
50468
|
+
*/
|
|
50469
|
+
include?: PaymentTransactionInclude<ExtArgs> | null
|
|
50470
|
+
where?: PaymentTransactionWhereInput
|
|
50471
|
+
}
|
|
50472
|
+
|
|
50321
50473
|
/**
|
|
50322
50474
|
* TrolleyPayment without action
|
|
50323
50475
|
*/
|
|
@@ -61250,6 +61402,8 @@ export namespace Prisma {
|
|
|
61250
61402
|
creator?: boolean | PaymentTransaction$creatorArgs<ExtArgs>
|
|
61251
61403
|
prevTransaction?: boolean | PaymentTransaction$prevTransactionArgs<ExtArgs>
|
|
61252
61404
|
nextTransaction?: boolean | PaymentTransaction$nextTransactionArgs<ExtArgs>
|
|
61405
|
+
trolleyPayments?: boolean | PaymentTransaction$trolleyPaymentsArgs<ExtArgs>
|
|
61406
|
+
_count?: boolean | PaymentTransactionCountOutputTypeDefaultArgs<ExtArgs>
|
|
61253
61407
|
}, ExtArgs["result"]["paymentTransaction"]>
|
|
61254
61408
|
|
|
61255
61409
|
export type PaymentTransactionSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
@@ -61288,6 +61442,8 @@ export namespace Prisma {
|
|
|
61288
61442
|
creator?: boolean | PaymentTransaction$creatorArgs<ExtArgs>
|
|
61289
61443
|
prevTransaction?: boolean | PaymentTransaction$prevTransactionArgs<ExtArgs>
|
|
61290
61444
|
nextTransaction?: boolean | PaymentTransaction$nextTransactionArgs<ExtArgs>
|
|
61445
|
+
trolleyPayments?: boolean | PaymentTransaction$trolleyPaymentsArgs<ExtArgs>
|
|
61446
|
+
_count?: boolean | PaymentTransactionCountOutputTypeDefaultArgs<ExtArgs>
|
|
61291
61447
|
}
|
|
61292
61448
|
export type PaymentTransactionIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
61293
61449
|
brand?: boolean | PaymentTransaction$brandArgs<ExtArgs>
|
|
@@ -61302,6 +61458,7 @@ export namespace Prisma {
|
|
|
61302
61458
|
creator: Prisma.$UserPayload<ExtArgs> | null
|
|
61303
61459
|
prevTransaction: Prisma.$PaymentTransactionPayload<ExtArgs> | null
|
|
61304
61460
|
nextTransaction: Prisma.$PaymentTransactionPayload<ExtArgs> | null
|
|
61461
|
+
trolleyPayments: Prisma.$TrolleyPaymentPayload<ExtArgs>[]
|
|
61305
61462
|
}
|
|
61306
61463
|
scalars: $Extensions.GetPayloadResult<{
|
|
61307
61464
|
id: number
|
|
@@ -61683,6 +61840,7 @@ export namespace Prisma {
|
|
|
61683
61840
|
creator<T extends PaymentTransaction$creatorArgs<ExtArgs> = {}>(args?: Subset<T, PaymentTransaction$creatorArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
61684
61841
|
prevTransaction<T extends PaymentTransaction$prevTransactionArgs<ExtArgs> = {}>(args?: Subset<T, PaymentTransaction$prevTransactionArgs<ExtArgs>>): Prisma__PaymentTransactionClient<$Result.GetResult<Prisma.$PaymentTransactionPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
61685
61842
|
nextTransaction<T extends PaymentTransaction$nextTransactionArgs<ExtArgs> = {}>(args?: Subset<T, PaymentTransaction$nextTransactionArgs<ExtArgs>>): Prisma__PaymentTransactionClient<$Result.GetResult<Prisma.$PaymentTransactionPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
61843
|
+
trolleyPayments<T extends PaymentTransaction$trolleyPaymentsArgs<ExtArgs> = {}>(args?: Subset<T, PaymentTransaction$trolleyPaymentsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TrolleyPaymentPayload<ExtArgs>, T, "findMany"> | Null>
|
|
61686
61844
|
/**
|
|
61687
61845
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
61688
61846
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -62100,6 +62258,26 @@ export namespace Prisma {
|
|
|
62100
62258
|
where?: PaymentTransactionWhereInput
|
|
62101
62259
|
}
|
|
62102
62260
|
|
|
62261
|
+
/**
|
|
62262
|
+
* PaymentTransaction.trolleyPayments
|
|
62263
|
+
*/
|
|
62264
|
+
export type PaymentTransaction$trolleyPaymentsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
62265
|
+
/**
|
|
62266
|
+
* Select specific fields to fetch from the TrolleyPayment
|
|
62267
|
+
*/
|
|
62268
|
+
select?: TrolleyPaymentSelect<ExtArgs> | null
|
|
62269
|
+
/**
|
|
62270
|
+
* Choose, which related nodes to fetch as well
|
|
62271
|
+
*/
|
|
62272
|
+
include?: TrolleyPaymentInclude<ExtArgs> | null
|
|
62273
|
+
where?: TrolleyPaymentWhereInput
|
|
62274
|
+
orderBy?: TrolleyPaymentOrderByWithRelationInput | TrolleyPaymentOrderByWithRelationInput[]
|
|
62275
|
+
cursor?: TrolleyPaymentWhereUniqueInput
|
|
62276
|
+
take?: number
|
|
62277
|
+
skip?: number
|
|
62278
|
+
distinct?: TrolleyPaymentScalarFieldEnum | TrolleyPaymentScalarFieldEnum[]
|
|
62279
|
+
}
|
|
62280
|
+
|
|
62103
62281
|
/**
|
|
62104
62282
|
* PaymentTransaction without action
|
|
62105
62283
|
*/
|
|
@@ -102970,6 +103148,962 @@ export namespace Prisma {
|
|
|
102970
103148
|
}
|
|
102971
103149
|
|
|
102972
103150
|
|
|
103151
|
+
/**
|
|
103152
|
+
* Model LatestCreatorPaymentTransaction
|
|
103153
|
+
*/
|
|
103154
|
+
|
|
103155
|
+
export type AggregateLatestCreatorPaymentTransaction = {
|
|
103156
|
+
_count: LatestCreatorPaymentTransactionCountAggregateOutputType | null
|
|
103157
|
+
_avg: LatestCreatorPaymentTransactionAvgAggregateOutputType | null
|
|
103158
|
+
_sum: LatestCreatorPaymentTransactionSumAggregateOutputType | null
|
|
103159
|
+
_min: LatestCreatorPaymentTransactionMinAggregateOutputType | null
|
|
103160
|
+
_max: LatestCreatorPaymentTransactionMaxAggregateOutputType | null
|
|
103161
|
+
}
|
|
103162
|
+
|
|
103163
|
+
export type LatestCreatorPaymentTransactionAvgAggregateOutputType = {
|
|
103164
|
+
id: number | null
|
|
103165
|
+
balance: number | null
|
|
103166
|
+
accountId: number | null
|
|
103167
|
+
creatorId: number | null
|
|
103168
|
+
}
|
|
103169
|
+
|
|
103170
|
+
export type LatestCreatorPaymentTransactionSumAggregateOutputType = {
|
|
103171
|
+
id: number | null
|
|
103172
|
+
balance: number | null
|
|
103173
|
+
accountId: number | null
|
|
103174
|
+
creatorId: number | null
|
|
103175
|
+
}
|
|
103176
|
+
|
|
103177
|
+
export type LatestCreatorPaymentTransactionMinAggregateOutputType = {
|
|
103178
|
+
id: number | null
|
|
103179
|
+
balance: number | null
|
|
103180
|
+
type: string | null
|
|
103181
|
+
date: Date | null
|
|
103182
|
+
notes: string | null
|
|
103183
|
+
accountId: number | null
|
|
103184
|
+
creatorId: number | null
|
|
103185
|
+
}
|
|
103186
|
+
|
|
103187
|
+
export type LatestCreatorPaymentTransactionMaxAggregateOutputType = {
|
|
103188
|
+
id: number | null
|
|
103189
|
+
balance: number | null
|
|
103190
|
+
type: string | null
|
|
103191
|
+
date: Date | null
|
|
103192
|
+
notes: string | null
|
|
103193
|
+
accountId: number | null
|
|
103194
|
+
creatorId: number | null
|
|
103195
|
+
}
|
|
103196
|
+
|
|
103197
|
+
export type LatestCreatorPaymentTransactionCountAggregateOutputType = {
|
|
103198
|
+
id: number
|
|
103199
|
+
balance: number
|
|
103200
|
+
type: number
|
|
103201
|
+
date: number
|
|
103202
|
+
notes: number
|
|
103203
|
+
metaData: number
|
|
103204
|
+
accountId: number
|
|
103205
|
+
creatorId: number
|
|
103206
|
+
_all: number
|
|
103207
|
+
}
|
|
103208
|
+
|
|
103209
|
+
|
|
103210
|
+
export type LatestCreatorPaymentTransactionAvgAggregateInputType = {
|
|
103211
|
+
id?: true
|
|
103212
|
+
balance?: true
|
|
103213
|
+
accountId?: true
|
|
103214
|
+
creatorId?: true
|
|
103215
|
+
}
|
|
103216
|
+
|
|
103217
|
+
export type LatestCreatorPaymentTransactionSumAggregateInputType = {
|
|
103218
|
+
id?: true
|
|
103219
|
+
balance?: true
|
|
103220
|
+
accountId?: true
|
|
103221
|
+
creatorId?: true
|
|
103222
|
+
}
|
|
103223
|
+
|
|
103224
|
+
export type LatestCreatorPaymentTransactionMinAggregateInputType = {
|
|
103225
|
+
id?: true
|
|
103226
|
+
balance?: true
|
|
103227
|
+
type?: true
|
|
103228
|
+
date?: true
|
|
103229
|
+
notes?: true
|
|
103230
|
+
accountId?: true
|
|
103231
|
+
creatorId?: true
|
|
103232
|
+
}
|
|
103233
|
+
|
|
103234
|
+
export type LatestCreatorPaymentTransactionMaxAggregateInputType = {
|
|
103235
|
+
id?: true
|
|
103236
|
+
balance?: true
|
|
103237
|
+
type?: true
|
|
103238
|
+
date?: true
|
|
103239
|
+
notes?: true
|
|
103240
|
+
accountId?: true
|
|
103241
|
+
creatorId?: true
|
|
103242
|
+
}
|
|
103243
|
+
|
|
103244
|
+
export type LatestCreatorPaymentTransactionCountAggregateInputType = {
|
|
103245
|
+
id?: true
|
|
103246
|
+
balance?: true
|
|
103247
|
+
type?: true
|
|
103248
|
+
date?: true
|
|
103249
|
+
notes?: true
|
|
103250
|
+
metaData?: true
|
|
103251
|
+
accountId?: true
|
|
103252
|
+
creatorId?: true
|
|
103253
|
+
_all?: true
|
|
103254
|
+
}
|
|
103255
|
+
|
|
103256
|
+
export type LatestCreatorPaymentTransactionAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
103257
|
+
/**
|
|
103258
|
+
* Filter which LatestCreatorPaymentTransaction to aggregate.
|
|
103259
|
+
*/
|
|
103260
|
+
where?: LatestCreatorPaymentTransactionWhereInput
|
|
103261
|
+
/**
|
|
103262
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
103263
|
+
*
|
|
103264
|
+
* Determine the order of LatestCreatorPaymentTransactions to fetch.
|
|
103265
|
+
*/
|
|
103266
|
+
orderBy?: LatestCreatorPaymentTransactionOrderByWithRelationInput | LatestCreatorPaymentTransactionOrderByWithRelationInput[]
|
|
103267
|
+
/**
|
|
103268
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
103269
|
+
*
|
|
103270
|
+
* Sets the start position
|
|
103271
|
+
*/
|
|
103272
|
+
cursor?: LatestCreatorPaymentTransactionWhereUniqueInput
|
|
103273
|
+
/**
|
|
103274
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
103275
|
+
*
|
|
103276
|
+
* Take `±n` LatestCreatorPaymentTransactions from the position of the cursor.
|
|
103277
|
+
*/
|
|
103278
|
+
take?: number
|
|
103279
|
+
/**
|
|
103280
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
103281
|
+
*
|
|
103282
|
+
* Skip the first `n` LatestCreatorPaymentTransactions.
|
|
103283
|
+
*/
|
|
103284
|
+
skip?: number
|
|
103285
|
+
/**
|
|
103286
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
103287
|
+
*
|
|
103288
|
+
* Count returned LatestCreatorPaymentTransactions
|
|
103289
|
+
**/
|
|
103290
|
+
_count?: true | LatestCreatorPaymentTransactionCountAggregateInputType
|
|
103291
|
+
/**
|
|
103292
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
103293
|
+
*
|
|
103294
|
+
* Select which fields to average
|
|
103295
|
+
**/
|
|
103296
|
+
_avg?: LatestCreatorPaymentTransactionAvgAggregateInputType
|
|
103297
|
+
/**
|
|
103298
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
103299
|
+
*
|
|
103300
|
+
* Select which fields to sum
|
|
103301
|
+
**/
|
|
103302
|
+
_sum?: LatestCreatorPaymentTransactionSumAggregateInputType
|
|
103303
|
+
/**
|
|
103304
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
103305
|
+
*
|
|
103306
|
+
* Select which fields to find the minimum value
|
|
103307
|
+
**/
|
|
103308
|
+
_min?: LatestCreatorPaymentTransactionMinAggregateInputType
|
|
103309
|
+
/**
|
|
103310
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
103311
|
+
*
|
|
103312
|
+
* Select which fields to find the maximum value
|
|
103313
|
+
**/
|
|
103314
|
+
_max?: LatestCreatorPaymentTransactionMaxAggregateInputType
|
|
103315
|
+
}
|
|
103316
|
+
|
|
103317
|
+
export type GetLatestCreatorPaymentTransactionAggregateType<T extends LatestCreatorPaymentTransactionAggregateArgs> = {
|
|
103318
|
+
[P in keyof T & keyof AggregateLatestCreatorPaymentTransaction]: P extends '_count' | 'count'
|
|
103319
|
+
? T[P] extends true
|
|
103320
|
+
? number
|
|
103321
|
+
: GetScalarType<T[P], AggregateLatestCreatorPaymentTransaction[P]>
|
|
103322
|
+
: GetScalarType<T[P], AggregateLatestCreatorPaymentTransaction[P]>
|
|
103323
|
+
}
|
|
103324
|
+
|
|
103325
|
+
|
|
103326
|
+
|
|
103327
|
+
|
|
103328
|
+
export type LatestCreatorPaymentTransactionGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
103329
|
+
where?: LatestCreatorPaymentTransactionWhereInput
|
|
103330
|
+
orderBy?: LatestCreatorPaymentTransactionOrderByWithAggregationInput | LatestCreatorPaymentTransactionOrderByWithAggregationInput[]
|
|
103331
|
+
by: LatestCreatorPaymentTransactionScalarFieldEnum[] | LatestCreatorPaymentTransactionScalarFieldEnum
|
|
103332
|
+
having?: LatestCreatorPaymentTransactionScalarWhereWithAggregatesInput
|
|
103333
|
+
take?: number
|
|
103334
|
+
skip?: number
|
|
103335
|
+
_count?: LatestCreatorPaymentTransactionCountAggregateInputType | true
|
|
103336
|
+
_avg?: LatestCreatorPaymentTransactionAvgAggregateInputType
|
|
103337
|
+
_sum?: LatestCreatorPaymentTransactionSumAggregateInputType
|
|
103338
|
+
_min?: LatestCreatorPaymentTransactionMinAggregateInputType
|
|
103339
|
+
_max?: LatestCreatorPaymentTransactionMaxAggregateInputType
|
|
103340
|
+
}
|
|
103341
|
+
|
|
103342
|
+
export type LatestCreatorPaymentTransactionGroupByOutputType = {
|
|
103343
|
+
id: number
|
|
103344
|
+
balance: number
|
|
103345
|
+
type: string
|
|
103346
|
+
date: Date
|
|
103347
|
+
notes: string | null
|
|
103348
|
+
metaData: JsonValue
|
|
103349
|
+
accountId: number
|
|
103350
|
+
creatorId: number | null
|
|
103351
|
+
_count: LatestCreatorPaymentTransactionCountAggregateOutputType | null
|
|
103352
|
+
_avg: LatestCreatorPaymentTransactionAvgAggregateOutputType | null
|
|
103353
|
+
_sum: LatestCreatorPaymentTransactionSumAggregateOutputType | null
|
|
103354
|
+
_min: LatestCreatorPaymentTransactionMinAggregateOutputType | null
|
|
103355
|
+
_max: LatestCreatorPaymentTransactionMaxAggregateOutputType | null
|
|
103356
|
+
}
|
|
103357
|
+
|
|
103358
|
+
type GetLatestCreatorPaymentTransactionGroupByPayload<T extends LatestCreatorPaymentTransactionGroupByArgs> = Prisma.PrismaPromise<
|
|
103359
|
+
Array<
|
|
103360
|
+
PickEnumerable<LatestCreatorPaymentTransactionGroupByOutputType, T['by']> &
|
|
103361
|
+
{
|
|
103362
|
+
[P in ((keyof T) & (keyof LatestCreatorPaymentTransactionGroupByOutputType))]: P extends '_count'
|
|
103363
|
+
? T[P] extends boolean
|
|
103364
|
+
? number
|
|
103365
|
+
: GetScalarType<T[P], LatestCreatorPaymentTransactionGroupByOutputType[P]>
|
|
103366
|
+
: GetScalarType<T[P], LatestCreatorPaymentTransactionGroupByOutputType[P]>
|
|
103367
|
+
}
|
|
103368
|
+
>
|
|
103369
|
+
>
|
|
103370
|
+
|
|
103371
|
+
|
|
103372
|
+
export type LatestCreatorPaymentTransactionSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
103373
|
+
id?: boolean
|
|
103374
|
+
balance?: boolean
|
|
103375
|
+
type?: boolean
|
|
103376
|
+
date?: boolean
|
|
103377
|
+
notes?: boolean
|
|
103378
|
+
metaData?: boolean
|
|
103379
|
+
accountId?: boolean
|
|
103380
|
+
creatorId?: boolean
|
|
103381
|
+
}, ExtArgs["result"]["latestCreatorPaymentTransaction"]>
|
|
103382
|
+
|
|
103383
|
+
export type LatestCreatorPaymentTransactionSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
103384
|
+
id?: boolean
|
|
103385
|
+
balance?: boolean
|
|
103386
|
+
type?: boolean
|
|
103387
|
+
date?: boolean
|
|
103388
|
+
notes?: boolean
|
|
103389
|
+
metaData?: boolean
|
|
103390
|
+
accountId?: boolean
|
|
103391
|
+
creatorId?: boolean
|
|
103392
|
+
}, ExtArgs["result"]["latestCreatorPaymentTransaction"]>
|
|
103393
|
+
|
|
103394
|
+
export type LatestCreatorPaymentTransactionSelectScalar = {
|
|
103395
|
+
id?: boolean
|
|
103396
|
+
balance?: boolean
|
|
103397
|
+
type?: boolean
|
|
103398
|
+
date?: boolean
|
|
103399
|
+
notes?: boolean
|
|
103400
|
+
metaData?: boolean
|
|
103401
|
+
accountId?: boolean
|
|
103402
|
+
creatorId?: boolean
|
|
103403
|
+
}
|
|
103404
|
+
|
|
103405
|
+
|
|
103406
|
+
export type $LatestCreatorPaymentTransactionPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
103407
|
+
name: "LatestCreatorPaymentTransaction"
|
|
103408
|
+
objects: {}
|
|
103409
|
+
scalars: $Extensions.GetPayloadResult<{
|
|
103410
|
+
id: number
|
|
103411
|
+
balance: number
|
|
103412
|
+
type: string
|
|
103413
|
+
date: Date
|
|
103414
|
+
notes: string | null
|
|
103415
|
+
metaData: Prisma.JsonValue
|
|
103416
|
+
accountId: number
|
|
103417
|
+
creatorId: number | null
|
|
103418
|
+
}, ExtArgs["result"]["latestCreatorPaymentTransaction"]>
|
|
103419
|
+
composites: {}
|
|
103420
|
+
}
|
|
103421
|
+
|
|
103422
|
+
type LatestCreatorPaymentTransactionGetPayload<S extends boolean | null | undefined | LatestCreatorPaymentTransactionDefaultArgs> = $Result.GetResult<Prisma.$LatestCreatorPaymentTransactionPayload, S>
|
|
103423
|
+
|
|
103424
|
+
type LatestCreatorPaymentTransactionCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
103425
|
+
Omit<LatestCreatorPaymentTransactionFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
103426
|
+
select?: LatestCreatorPaymentTransactionCountAggregateInputType | true
|
|
103427
|
+
}
|
|
103428
|
+
|
|
103429
|
+
export interface LatestCreatorPaymentTransactionDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
103430
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['LatestCreatorPaymentTransaction'], meta: { name: 'LatestCreatorPaymentTransaction' } }
|
|
103431
|
+
/**
|
|
103432
|
+
* Find zero or one LatestCreatorPaymentTransaction that matches the filter.
|
|
103433
|
+
* @param {LatestCreatorPaymentTransactionFindUniqueArgs} args - Arguments to find a LatestCreatorPaymentTransaction
|
|
103434
|
+
* @example
|
|
103435
|
+
* // Get one LatestCreatorPaymentTransaction
|
|
103436
|
+
* const latestCreatorPaymentTransaction = await prisma.latestCreatorPaymentTransaction.findUnique({
|
|
103437
|
+
* where: {
|
|
103438
|
+
* // ... provide filter here
|
|
103439
|
+
* }
|
|
103440
|
+
* })
|
|
103441
|
+
*/
|
|
103442
|
+
findUnique<T extends LatestCreatorPaymentTransactionFindUniqueArgs>(args: SelectSubset<T, LatestCreatorPaymentTransactionFindUniqueArgs<ExtArgs>>): Prisma__LatestCreatorPaymentTransactionClient<$Result.GetResult<Prisma.$LatestCreatorPaymentTransactionPayload<ExtArgs>, T, "findUnique"> | null, null, ExtArgs>
|
|
103443
|
+
|
|
103444
|
+
/**
|
|
103445
|
+
* Find one LatestCreatorPaymentTransaction that matches the filter or throw an error with `error.code='P2025'`
|
|
103446
|
+
* if no matches were found.
|
|
103447
|
+
* @param {LatestCreatorPaymentTransactionFindUniqueOrThrowArgs} args - Arguments to find a LatestCreatorPaymentTransaction
|
|
103448
|
+
* @example
|
|
103449
|
+
* // Get one LatestCreatorPaymentTransaction
|
|
103450
|
+
* const latestCreatorPaymentTransaction = await prisma.latestCreatorPaymentTransaction.findUniqueOrThrow({
|
|
103451
|
+
* where: {
|
|
103452
|
+
* // ... provide filter here
|
|
103453
|
+
* }
|
|
103454
|
+
* })
|
|
103455
|
+
*/
|
|
103456
|
+
findUniqueOrThrow<T extends LatestCreatorPaymentTransactionFindUniqueOrThrowArgs>(args: SelectSubset<T, LatestCreatorPaymentTransactionFindUniqueOrThrowArgs<ExtArgs>>): Prisma__LatestCreatorPaymentTransactionClient<$Result.GetResult<Prisma.$LatestCreatorPaymentTransactionPayload<ExtArgs>, T, "findUniqueOrThrow">, never, ExtArgs>
|
|
103457
|
+
|
|
103458
|
+
/**
|
|
103459
|
+
* Find the first LatestCreatorPaymentTransaction that matches the filter.
|
|
103460
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
103461
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
103462
|
+
* @param {LatestCreatorPaymentTransactionFindFirstArgs} args - Arguments to find a LatestCreatorPaymentTransaction
|
|
103463
|
+
* @example
|
|
103464
|
+
* // Get one LatestCreatorPaymentTransaction
|
|
103465
|
+
* const latestCreatorPaymentTransaction = await prisma.latestCreatorPaymentTransaction.findFirst({
|
|
103466
|
+
* where: {
|
|
103467
|
+
* // ... provide filter here
|
|
103468
|
+
* }
|
|
103469
|
+
* })
|
|
103470
|
+
*/
|
|
103471
|
+
findFirst<T extends LatestCreatorPaymentTransactionFindFirstArgs>(args?: SelectSubset<T, LatestCreatorPaymentTransactionFindFirstArgs<ExtArgs>>): Prisma__LatestCreatorPaymentTransactionClient<$Result.GetResult<Prisma.$LatestCreatorPaymentTransactionPayload<ExtArgs>, T, "findFirst"> | null, null, ExtArgs>
|
|
103472
|
+
|
|
103473
|
+
/**
|
|
103474
|
+
* Find the first LatestCreatorPaymentTransaction that matches the filter or
|
|
103475
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
103476
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
103477
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
103478
|
+
* @param {LatestCreatorPaymentTransactionFindFirstOrThrowArgs} args - Arguments to find a LatestCreatorPaymentTransaction
|
|
103479
|
+
* @example
|
|
103480
|
+
* // Get one LatestCreatorPaymentTransaction
|
|
103481
|
+
* const latestCreatorPaymentTransaction = await prisma.latestCreatorPaymentTransaction.findFirstOrThrow({
|
|
103482
|
+
* where: {
|
|
103483
|
+
* // ... provide filter here
|
|
103484
|
+
* }
|
|
103485
|
+
* })
|
|
103486
|
+
*/
|
|
103487
|
+
findFirstOrThrow<T extends LatestCreatorPaymentTransactionFindFirstOrThrowArgs>(args?: SelectSubset<T, LatestCreatorPaymentTransactionFindFirstOrThrowArgs<ExtArgs>>): Prisma__LatestCreatorPaymentTransactionClient<$Result.GetResult<Prisma.$LatestCreatorPaymentTransactionPayload<ExtArgs>, T, "findFirstOrThrow">, never, ExtArgs>
|
|
103488
|
+
|
|
103489
|
+
/**
|
|
103490
|
+
* Find zero or more LatestCreatorPaymentTransactions that matches the filter.
|
|
103491
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
103492
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
103493
|
+
* @param {LatestCreatorPaymentTransactionFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
103494
|
+
* @example
|
|
103495
|
+
* // Get all LatestCreatorPaymentTransactions
|
|
103496
|
+
* const latestCreatorPaymentTransactions = await prisma.latestCreatorPaymentTransaction.findMany()
|
|
103497
|
+
*
|
|
103498
|
+
* // Get first 10 LatestCreatorPaymentTransactions
|
|
103499
|
+
* const latestCreatorPaymentTransactions = await prisma.latestCreatorPaymentTransaction.findMany({ take: 10 })
|
|
103500
|
+
*
|
|
103501
|
+
* // Only select the `id`
|
|
103502
|
+
* const latestCreatorPaymentTransactionWithIdOnly = await prisma.latestCreatorPaymentTransaction.findMany({ select: { id: true } })
|
|
103503
|
+
*
|
|
103504
|
+
*/
|
|
103505
|
+
findMany<T extends LatestCreatorPaymentTransactionFindManyArgs>(args?: SelectSubset<T, LatestCreatorPaymentTransactionFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$LatestCreatorPaymentTransactionPayload<ExtArgs>, T, "findMany">>
|
|
103506
|
+
|
|
103507
|
+
/**
|
|
103508
|
+
* Create a LatestCreatorPaymentTransaction.
|
|
103509
|
+
* @param {LatestCreatorPaymentTransactionCreateArgs} args - Arguments to create a LatestCreatorPaymentTransaction.
|
|
103510
|
+
* @example
|
|
103511
|
+
* // Create one LatestCreatorPaymentTransaction
|
|
103512
|
+
* const LatestCreatorPaymentTransaction = await prisma.latestCreatorPaymentTransaction.create({
|
|
103513
|
+
* data: {
|
|
103514
|
+
* // ... data to create a LatestCreatorPaymentTransaction
|
|
103515
|
+
* }
|
|
103516
|
+
* })
|
|
103517
|
+
*
|
|
103518
|
+
*/
|
|
103519
|
+
create<T extends LatestCreatorPaymentTransactionCreateArgs>(args: SelectSubset<T, LatestCreatorPaymentTransactionCreateArgs<ExtArgs>>): Prisma__LatestCreatorPaymentTransactionClient<$Result.GetResult<Prisma.$LatestCreatorPaymentTransactionPayload<ExtArgs>, T, "create">, never, ExtArgs>
|
|
103520
|
+
|
|
103521
|
+
/**
|
|
103522
|
+
* Create many LatestCreatorPaymentTransactions.
|
|
103523
|
+
* @param {LatestCreatorPaymentTransactionCreateManyArgs} args - Arguments to create many LatestCreatorPaymentTransactions.
|
|
103524
|
+
* @example
|
|
103525
|
+
* // Create many LatestCreatorPaymentTransactions
|
|
103526
|
+
* const latestCreatorPaymentTransaction = await prisma.latestCreatorPaymentTransaction.createMany({
|
|
103527
|
+
* data: [
|
|
103528
|
+
* // ... provide data here
|
|
103529
|
+
* ]
|
|
103530
|
+
* })
|
|
103531
|
+
*
|
|
103532
|
+
*/
|
|
103533
|
+
createMany<T extends LatestCreatorPaymentTransactionCreateManyArgs>(args?: SelectSubset<T, LatestCreatorPaymentTransactionCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
103534
|
+
|
|
103535
|
+
/**
|
|
103536
|
+
* Create many LatestCreatorPaymentTransactions and returns the data saved in the database.
|
|
103537
|
+
* @param {LatestCreatorPaymentTransactionCreateManyAndReturnArgs} args - Arguments to create many LatestCreatorPaymentTransactions.
|
|
103538
|
+
* @example
|
|
103539
|
+
* // Create many LatestCreatorPaymentTransactions
|
|
103540
|
+
* const latestCreatorPaymentTransaction = await prisma.latestCreatorPaymentTransaction.createManyAndReturn({
|
|
103541
|
+
* data: [
|
|
103542
|
+
* // ... provide data here
|
|
103543
|
+
* ]
|
|
103544
|
+
* })
|
|
103545
|
+
*
|
|
103546
|
+
* // Create many LatestCreatorPaymentTransactions and only return the `id`
|
|
103547
|
+
* const latestCreatorPaymentTransactionWithIdOnly = await prisma.latestCreatorPaymentTransaction.createManyAndReturn({
|
|
103548
|
+
* select: { id: true },
|
|
103549
|
+
* data: [
|
|
103550
|
+
* // ... provide data here
|
|
103551
|
+
* ]
|
|
103552
|
+
* })
|
|
103553
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
103554
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
103555
|
+
*
|
|
103556
|
+
*/
|
|
103557
|
+
createManyAndReturn<T extends LatestCreatorPaymentTransactionCreateManyAndReturnArgs>(args?: SelectSubset<T, LatestCreatorPaymentTransactionCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$LatestCreatorPaymentTransactionPayload<ExtArgs>, T, "createManyAndReturn">>
|
|
103558
|
+
|
|
103559
|
+
/**
|
|
103560
|
+
* Delete a LatestCreatorPaymentTransaction.
|
|
103561
|
+
* @param {LatestCreatorPaymentTransactionDeleteArgs} args - Arguments to delete one LatestCreatorPaymentTransaction.
|
|
103562
|
+
* @example
|
|
103563
|
+
* // Delete one LatestCreatorPaymentTransaction
|
|
103564
|
+
* const LatestCreatorPaymentTransaction = await prisma.latestCreatorPaymentTransaction.delete({
|
|
103565
|
+
* where: {
|
|
103566
|
+
* // ... filter to delete one LatestCreatorPaymentTransaction
|
|
103567
|
+
* }
|
|
103568
|
+
* })
|
|
103569
|
+
*
|
|
103570
|
+
*/
|
|
103571
|
+
delete<T extends LatestCreatorPaymentTransactionDeleteArgs>(args: SelectSubset<T, LatestCreatorPaymentTransactionDeleteArgs<ExtArgs>>): Prisma__LatestCreatorPaymentTransactionClient<$Result.GetResult<Prisma.$LatestCreatorPaymentTransactionPayload<ExtArgs>, T, "delete">, never, ExtArgs>
|
|
103572
|
+
|
|
103573
|
+
/**
|
|
103574
|
+
* Update one LatestCreatorPaymentTransaction.
|
|
103575
|
+
* @param {LatestCreatorPaymentTransactionUpdateArgs} args - Arguments to update one LatestCreatorPaymentTransaction.
|
|
103576
|
+
* @example
|
|
103577
|
+
* // Update one LatestCreatorPaymentTransaction
|
|
103578
|
+
* const latestCreatorPaymentTransaction = await prisma.latestCreatorPaymentTransaction.update({
|
|
103579
|
+
* where: {
|
|
103580
|
+
* // ... provide filter here
|
|
103581
|
+
* },
|
|
103582
|
+
* data: {
|
|
103583
|
+
* // ... provide data here
|
|
103584
|
+
* }
|
|
103585
|
+
* })
|
|
103586
|
+
*
|
|
103587
|
+
*/
|
|
103588
|
+
update<T extends LatestCreatorPaymentTransactionUpdateArgs>(args: SelectSubset<T, LatestCreatorPaymentTransactionUpdateArgs<ExtArgs>>): Prisma__LatestCreatorPaymentTransactionClient<$Result.GetResult<Prisma.$LatestCreatorPaymentTransactionPayload<ExtArgs>, T, "update">, never, ExtArgs>
|
|
103589
|
+
|
|
103590
|
+
/**
|
|
103591
|
+
* Delete zero or more LatestCreatorPaymentTransactions.
|
|
103592
|
+
* @param {LatestCreatorPaymentTransactionDeleteManyArgs} args - Arguments to filter LatestCreatorPaymentTransactions to delete.
|
|
103593
|
+
* @example
|
|
103594
|
+
* // Delete a few LatestCreatorPaymentTransactions
|
|
103595
|
+
* const { count } = await prisma.latestCreatorPaymentTransaction.deleteMany({
|
|
103596
|
+
* where: {
|
|
103597
|
+
* // ... provide filter here
|
|
103598
|
+
* }
|
|
103599
|
+
* })
|
|
103600
|
+
*
|
|
103601
|
+
*/
|
|
103602
|
+
deleteMany<T extends LatestCreatorPaymentTransactionDeleteManyArgs>(args?: SelectSubset<T, LatestCreatorPaymentTransactionDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
103603
|
+
|
|
103604
|
+
/**
|
|
103605
|
+
* Update zero or more LatestCreatorPaymentTransactions.
|
|
103606
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
103607
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
103608
|
+
* @param {LatestCreatorPaymentTransactionUpdateManyArgs} args - Arguments to update one or more rows.
|
|
103609
|
+
* @example
|
|
103610
|
+
* // Update many LatestCreatorPaymentTransactions
|
|
103611
|
+
* const latestCreatorPaymentTransaction = await prisma.latestCreatorPaymentTransaction.updateMany({
|
|
103612
|
+
* where: {
|
|
103613
|
+
* // ... provide filter here
|
|
103614
|
+
* },
|
|
103615
|
+
* data: {
|
|
103616
|
+
* // ... provide data here
|
|
103617
|
+
* }
|
|
103618
|
+
* })
|
|
103619
|
+
*
|
|
103620
|
+
*/
|
|
103621
|
+
updateMany<T extends LatestCreatorPaymentTransactionUpdateManyArgs>(args: SelectSubset<T, LatestCreatorPaymentTransactionUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
103622
|
+
|
|
103623
|
+
/**
|
|
103624
|
+
* Create or update one LatestCreatorPaymentTransaction.
|
|
103625
|
+
* @param {LatestCreatorPaymentTransactionUpsertArgs} args - Arguments to update or create a LatestCreatorPaymentTransaction.
|
|
103626
|
+
* @example
|
|
103627
|
+
* // Update or create a LatestCreatorPaymentTransaction
|
|
103628
|
+
* const latestCreatorPaymentTransaction = await prisma.latestCreatorPaymentTransaction.upsert({
|
|
103629
|
+
* create: {
|
|
103630
|
+
* // ... data to create a LatestCreatorPaymentTransaction
|
|
103631
|
+
* },
|
|
103632
|
+
* update: {
|
|
103633
|
+
* // ... in case it already exists, update
|
|
103634
|
+
* },
|
|
103635
|
+
* where: {
|
|
103636
|
+
* // ... the filter for the LatestCreatorPaymentTransaction we want to update
|
|
103637
|
+
* }
|
|
103638
|
+
* })
|
|
103639
|
+
*/
|
|
103640
|
+
upsert<T extends LatestCreatorPaymentTransactionUpsertArgs>(args: SelectSubset<T, LatestCreatorPaymentTransactionUpsertArgs<ExtArgs>>): Prisma__LatestCreatorPaymentTransactionClient<$Result.GetResult<Prisma.$LatestCreatorPaymentTransactionPayload<ExtArgs>, T, "upsert">, never, ExtArgs>
|
|
103641
|
+
|
|
103642
|
+
|
|
103643
|
+
/**
|
|
103644
|
+
* Count the number of LatestCreatorPaymentTransactions.
|
|
103645
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
103646
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
103647
|
+
* @param {LatestCreatorPaymentTransactionCountArgs} args - Arguments to filter LatestCreatorPaymentTransactions to count.
|
|
103648
|
+
* @example
|
|
103649
|
+
* // Count the number of LatestCreatorPaymentTransactions
|
|
103650
|
+
* const count = await prisma.latestCreatorPaymentTransaction.count({
|
|
103651
|
+
* where: {
|
|
103652
|
+
* // ... the filter for the LatestCreatorPaymentTransactions we want to count
|
|
103653
|
+
* }
|
|
103654
|
+
* })
|
|
103655
|
+
**/
|
|
103656
|
+
count<T extends LatestCreatorPaymentTransactionCountArgs>(
|
|
103657
|
+
args?: Subset<T, LatestCreatorPaymentTransactionCountArgs>,
|
|
103658
|
+
): Prisma.PrismaPromise<
|
|
103659
|
+
T extends $Utils.Record<'select', any>
|
|
103660
|
+
? T['select'] extends true
|
|
103661
|
+
? number
|
|
103662
|
+
: GetScalarType<T['select'], LatestCreatorPaymentTransactionCountAggregateOutputType>
|
|
103663
|
+
: number
|
|
103664
|
+
>
|
|
103665
|
+
|
|
103666
|
+
/**
|
|
103667
|
+
* Allows you to perform aggregations operations on a LatestCreatorPaymentTransaction.
|
|
103668
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
103669
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
103670
|
+
* @param {LatestCreatorPaymentTransactionAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
103671
|
+
* @example
|
|
103672
|
+
* // Ordered by age ascending
|
|
103673
|
+
* // Where email contains prisma.io
|
|
103674
|
+
* // Limited to the 10 users
|
|
103675
|
+
* const aggregations = await prisma.user.aggregate({
|
|
103676
|
+
* _avg: {
|
|
103677
|
+
* age: true,
|
|
103678
|
+
* },
|
|
103679
|
+
* where: {
|
|
103680
|
+
* email: {
|
|
103681
|
+
* contains: "prisma.io",
|
|
103682
|
+
* },
|
|
103683
|
+
* },
|
|
103684
|
+
* orderBy: {
|
|
103685
|
+
* age: "asc",
|
|
103686
|
+
* },
|
|
103687
|
+
* take: 10,
|
|
103688
|
+
* })
|
|
103689
|
+
**/
|
|
103690
|
+
aggregate<T extends LatestCreatorPaymentTransactionAggregateArgs>(args: Subset<T, LatestCreatorPaymentTransactionAggregateArgs>): Prisma.PrismaPromise<GetLatestCreatorPaymentTransactionAggregateType<T>>
|
|
103691
|
+
|
|
103692
|
+
/**
|
|
103693
|
+
* Group by LatestCreatorPaymentTransaction.
|
|
103694
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
103695
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
103696
|
+
* @param {LatestCreatorPaymentTransactionGroupByArgs} args - Group by arguments.
|
|
103697
|
+
* @example
|
|
103698
|
+
* // Group by city, order by createdAt, get count
|
|
103699
|
+
* const result = await prisma.user.groupBy({
|
|
103700
|
+
* by: ['city', 'createdAt'],
|
|
103701
|
+
* orderBy: {
|
|
103702
|
+
* createdAt: true
|
|
103703
|
+
* },
|
|
103704
|
+
* _count: {
|
|
103705
|
+
* _all: true
|
|
103706
|
+
* },
|
|
103707
|
+
* })
|
|
103708
|
+
*
|
|
103709
|
+
**/
|
|
103710
|
+
groupBy<
|
|
103711
|
+
T extends LatestCreatorPaymentTransactionGroupByArgs,
|
|
103712
|
+
HasSelectOrTake extends Or<
|
|
103713
|
+
Extends<'skip', Keys<T>>,
|
|
103714
|
+
Extends<'take', Keys<T>>
|
|
103715
|
+
>,
|
|
103716
|
+
OrderByArg extends True extends HasSelectOrTake
|
|
103717
|
+
? { orderBy: LatestCreatorPaymentTransactionGroupByArgs['orderBy'] }
|
|
103718
|
+
: { orderBy?: LatestCreatorPaymentTransactionGroupByArgs['orderBy'] },
|
|
103719
|
+
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
103720
|
+
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
103721
|
+
ByValid extends Has<ByFields, OrderFields>,
|
|
103722
|
+
HavingFields extends GetHavingFields<T['having']>,
|
|
103723
|
+
HavingValid extends Has<ByFields, HavingFields>,
|
|
103724
|
+
ByEmpty extends T['by'] extends never[] ? True : False,
|
|
103725
|
+
InputErrors extends ByEmpty extends True
|
|
103726
|
+
? `Error: "by" must not be empty.`
|
|
103727
|
+
: HavingValid extends False
|
|
103728
|
+
? {
|
|
103729
|
+
[P in HavingFields]: P extends ByFields
|
|
103730
|
+
? never
|
|
103731
|
+
: P extends string
|
|
103732
|
+
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
|
103733
|
+
: [
|
|
103734
|
+
Error,
|
|
103735
|
+
'Field ',
|
|
103736
|
+
P,
|
|
103737
|
+
` in "having" needs to be provided in "by"`,
|
|
103738
|
+
]
|
|
103739
|
+
}[HavingFields]
|
|
103740
|
+
: 'take' extends Keys<T>
|
|
103741
|
+
? 'orderBy' extends Keys<T>
|
|
103742
|
+
? ByValid extends True
|
|
103743
|
+
? {}
|
|
103744
|
+
: {
|
|
103745
|
+
[P in OrderFields]: P extends ByFields
|
|
103746
|
+
? never
|
|
103747
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
103748
|
+
}[OrderFields]
|
|
103749
|
+
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
|
103750
|
+
: 'skip' extends Keys<T>
|
|
103751
|
+
? 'orderBy' extends Keys<T>
|
|
103752
|
+
? ByValid extends True
|
|
103753
|
+
? {}
|
|
103754
|
+
: {
|
|
103755
|
+
[P in OrderFields]: P extends ByFields
|
|
103756
|
+
? never
|
|
103757
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
103758
|
+
}[OrderFields]
|
|
103759
|
+
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
|
103760
|
+
: ByValid extends True
|
|
103761
|
+
? {}
|
|
103762
|
+
: {
|
|
103763
|
+
[P in OrderFields]: P extends ByFields
|
|
103764
|
+
? never
|
|
103765
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
103766
|
+
}[OrderFields]
|
|
103767
|
+
>(args: SubsetIntersection<T, LatestCreatorPaymentTransactionGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetLatestCreatorPaymentTransactionGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
103768
|
+
/**
|
|
103769
|
+
* Fields of the LatestCreatorPaymentTransaction model
|
|
103770
|
+
*/
|
|
103771
|
+
readonly fields: LatestCreatorPaymentTransactionFieldRefs;
|
|
103772
|
+
}
|
|
103773
|
+
|
|
103774
|
+
/**
|
|
103775
|
+
* The delegate class that acts as a "Promise-like" for LatestCreatorPaymentTransaction.
|
|
103776
|
+
* Why is this prefixed with `Prisma__`?
|
|
103777
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
103778
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
103779
|
+
*/
|
|
103780
|
+
export interface Prisma__LatestCreatorPaymentTransactionClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
103781
|
+
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
103782
|
+
/**
|
|
103783
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
103784
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
103785
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
103786
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
103787
|
+
*/
|
|
103788
|
+
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>
|
|
103789
|
+
/**
|
|
103790
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
103791
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
103792
|
+
* @returns A Promise for the completion of the callback.
|
|
103793
|
+
*/
|
|
103794
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>
|
|
103795
|
+
/**
|
|
103796
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
103797
|
+
* resolved value cannot be modified from the callback.
|
|
103798
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
103799
|
+
* @returns A Promise for the completion of the callback.
|
|
103800
|
+
*/
|
|
103801
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>
|
|
103802
|
+
}
|
|
103803
|
+
|
|
103804
|
+
|
|
103805
|
+
|
|
103806
|
+
|
|
103807
|
+
/**
|
|
103808
|
+
* Fields of the LatestCreatorPaymentTransaction model
|
|
103809
|
+
*/
|
|
103810
|
+
interface LatestCreatorPaymentTransactionFieldRefs {
|
|
103811
|
+
readonly id: FieldRef<"LatestCreatorPaymentTransaction", 'Int'>
|
|
103812
|
+
readonly balance: FieldRef<"LatestCreatorPaymentTransaction", 'Float'>
|
|
103813
|
+
readonly type: FieldRef<"LatestCreatorPaymentTransaction", 'String'>
|
|
103814
|
+
readonly date: FieldRef<"LatestCreatorPaymentTransaction", 'DateTime'>
|
|
103815
|
+
readonly notes: FieldRef<"LatestCreatorPaymentTransaction", 'String'>
|
|
103816
|
+
readonly metaData: FieldRef<"LatestCreatorPaymentTransaction", 'Json'>
|
|
103817
|
+
readonly accountId: FieldRef<"LatestCreatorPaymentTransaction", 'Int'>
|
|
103818
|
+
readonly creatorId: FieldRef<"LatestCreatorPaymentTransaction", 'Int'>
|
|
103819
|
+
}
|
|
103820
|
+
|
|
103821
|
+
|
|
103822
|
+
// Custom InputTypes
|
|
103823
|
+
/**
|
|
103824
|
+
* LatestCreatorPaymentTransaction findUnique
|
|
103825
|
+
*/
|
|
103826
|
+
export type LatestCreatorPaymentTransactionFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
103827
|
+
/**
|
|
103828
|
+
* Select specific fields to fetch from the LatestCreatorPaymentTransaction
|
|
103829
|
+
*/
|
|
103830
|
+
select?: LatestCreatorPaymentTransactionSelect<ExtArgs> | null
|
|
103831
|
+
/**
|
|
103832
|
+
* Filter, which LatestCreatorPaymentTransaction to fetch.
|
|
103833
|
+
*/
|
|
103834
|
+
where: LatestCreatorPaymentTransactionWhereUniqueInput
|
|
103835
|
+
}
|
|
103836
|
+
|
|
103837
|
+
/**
|
|
103838
|
+
* LatestCreatorPaymentTransaction findUniqueOrThrow
|
|
103839
|
+
*/
|
|
103840
|
+
export type LatestCreatorPaymentTransactionFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
103841
|
+
/**
|
|
103842
|
+
* Select specific fields to fetch from the LatestCreatorPaymentTransaction
|
|
103843
|
+
*/
|
|
103844
|
+
select?: LatestCreatorPaymentTransactionSelect<ExtArgs> | null
|
|
103845
|
+
/**
|
|
103846
|
+
* Filter, which LatestCreatorPaymentTransaction to fetch.
|
|
103847
|
+
*/
|
|
103848
|
+
where: LatestCreatorPaymentTransactionWhereUniqueInput
|
|
103849
|
+
}
|
|
103850
|
+
|
|
103851
|
+
/**
|
|
103852
|
+
* LatestCreatorPaymentTransaction findFirst
|
|
103853
|
+
*/
|
|
103854
|
+
export type LatestCreatorPaymentTransactionFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
103855
|
+
/**
|
|
103856
|
+
* Select specific fields to fetch from the LatestCreatorPaymentTransaction
|
|
103857
|
+
*/
|
|
103858
|
+
select?: LatestCreatorPaymentTransactionSelect<ExtArgs> | null
|
|
103859
|
+
/**
|
|
103860
|
+
* Filter, which LatestCreatorPaymentTransaction to fetch.
|
|
103861
|
+
*/
|
|
103862
|
+
where?: LatestCreatorPaymentTransactionWhereInput
|
|
103863
|
+
/**
|
|
103864
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
103865
|
+
*
|
|
103866
|
+
* Determine the order of LatestCreatorPaymentTransactions to fetch.
|
|
103867
|
+
*/
|
|
103868
|
+
orderBy?: LatestCreatorPaymentTransactionOrderByWithRelationInput | LatestCreatorPaymentTransactionOrderByWithRelationInput[]
|
|
103869
|
+
/**
|
|
103870
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
103871
|
+
*
|
|
103872
|
+
* Sets the position for searching for LatestCreatorPaymentTransactions.
|
|
103873
|
+
*/
|
|
103874
|
+
cursor?: LatestCreatorPaymentTransactionWhereUniqueInput
|
|
103875
|
+
/**
|
|
103876
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
103877
|
+
*
|
|
103878
|
+
* Take `±n` LatestCreatorPaymentTransactions from the position of the cursor.
|
|
103879
|
+
*/
|
|
103880
|
+
take?: number
|
|
103881
|
+
/**
|
|
103882
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
103883
|
+
*
|
|
103884
|
+
* Skip the first `n` LatestCreatorPaymentTransactions.
|
|
103885
|
+
*/
|
|
103886
|
+
skip?: number
|
|
103887
|
+
/**
|
|
103888
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
103889
|
+
*
|
|
103890
|
+
* Filter by unique combinations of LatestCreatorPaymentTransactions.
|
|
103891
|
+
*/
|
|
103892
|
+
distinct?: LatestCreatorPaymentTransactionScalarFieldEnum | LatestCreatorPaymentTransactionScalarFieldEnum[]
|
|
103893
|
+
}
|
|
103894
|
+
|
|
103895
|
+
/**
|
|
103896
|
+
* LatestCreatorPaymentTransaction findFirstOrThrow
|
|
103897
|
+
*/
|
|
103898
|
+
export type LatestCreatorPaymentTransactionFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
103899
|
+
/**
|
|
103900
|
+
* Select specific fields to fetch from the LatestCreatorPaymentTransaction
|
|
103901
|
+
*/
|
|
103902
|
+
select?: LatestCreatorPaymentTransactionSelect<ExtArgs> | null
|
|
103903
|
+
/**
|
|
103904
|
+
* Filter, which LatestCreatorPaymentTransaction to fetch.
|
|
103905
|
+
*/
|
|
103906
|
+
where?: LatestCreatorPaymentTransactionWhereInput
|
|
103907
|
+
/**
|
|
103908
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
103909
|
+
*
|
|
103910
|
+
* Determine the order of LatestCreatorPaymentTransactions to fetch.
|
|
103911
|
+
*/
|
|
103912
|
+
orderBy?: LatestCreatorPaymentTransactionOrderByWithRelationInput | LatestCreatorPaymentTransactionOrderByWithRelationInput[]
|
|
103913
|
+
/**
|
|
103914
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
103915
|
+
*
|
|
103916
|
+
* Sets the position for searching for LatestCreatorPaymentTransactions.
|
|
103917
|
+
*/
|
|
103918
|
+
cursor?: LatestCreatorPaymentTransactionWhereUniqueInput
|
|
103919
|
+
/**
|
|
103920
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
103921
|
+
*
|
|
103922
|
+
* Take `±n` LatestCreatorPaymentTransactions from the position of the cursor.
|
|
103923
|
+
*/
|
|
103924
|
+
take?: number
|
|
103925
|
+
/**
|
|
103926
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
103927
|
+
*
|
|
103928
|
+
* Skip the first `n` LatestCreatorPaymentTransactions.
|
|
103929
|
+
*/
|
|
103930
|
+
skip?: number
|
|
103931
|
+
/**
|
|
103932
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
103933
|
+
*
|
|
103934
|
+
* Filter by unique combinations of LatestCreatorPaymentTransactions.
|
|
103935
|
+
*/
|
|
103936
|
+
distinct?: LatestCreatorPaymentTransactionScalarFieldEnum | LatestCreatorPaymentTransactionScalarFieldEnum[]
|
|
103937
|
+
}
|
|
103938
|
+
|
|
103939
|
+
/**
|
|
103940
|
+
* LatestCreatorPaymentTransaction findMany
|
|
103941
|
+
*/
|
|
103942
|
+
export type LatestCreatorPaymentTransactionFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
103943
|
+
/**
|
|
103944
|
+
* Select specific fields to fetch from the LatestCreatorPaymentTransaction
|
|
103945
|
+
*/
|
|
103946
|
+
select?: LatestCreatorPaymentTransactionSelect<ExtArgs> | null
|
|
103947
|
+
/**
|
|
103948
|
+
* Filter, which LatestCreatorPaymentTransactions to fetch.
|
|
103949
|
+
*/
|
|
103950
|
+
where?: LatestCreatorPaymentTransactionWhereInput
|
|
103951
|
+
/**
|
|
103952
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
103953
|
+
*
|
|
103954
|
+
* Determine the order of LatestCreatorPaymentTransactions to fetch.
|
|
103955
|
+
*/
|
|
103956
|
+
orderBy?: LatestCreatorPaymentTransactionOrderByWithRelationInput | LatestCreatorPaymentTransactionOrderByWithRelationInput[]
|
|
103957
|
+
/**
|
|
103958
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
103959
|
+
*
|
|
103960
|
+
* Sets the position for listing LatestCreatorPaymentTransactions.
|
|
103961
|
+
*/
|
|
103962
|
+
cursor?: LatestCreatorPaymentTransactionWhereUniqueInput
|
|
103963
|
+
/**
|
|
103964
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
103965
|
+
*
|
|
103966
|
+
* Take `±n` LatestCreatorPaymentTransactions from the position of the cursor.
|
|
103967
|
+
*/
|
|
103968
|
+
take?: number
|
|
103969
|
+
/**
|
|
103970
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
103971
|
+
*
|
|
103972
|
+
* Skip the first `n` LatestCreatorPaymentTransactions.
|
|
103973
|
+
*/
|
|
103974
|
+
skip?: number
|
|
103975
|
+
distinct?: LatestCreatorPaymentTransactionScalarFieldEnum | LatestCreatorPaymentTransactionScalarFieldEnum[]
|
|
103976
|
+
}
|
|
103977
|
+
|
|
103978
|
+
/**
|
|
103979
|
+
* LatestCreatorPaymentTransaction create
|
|
103980
|
+
*/
|
|
103981
|
+
export type LatestCreatorPaymentTransactionCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
103982
|
+
/**
|
|
103983
|
+
* Select specific fields to fetch from the LatestCreatorPaymentTransaction
|
|
103984
|
+
*/
|
|
103985
|
+
select?: LatestCreatorPaymentTransactionSelect<ExtArgs> | null
|
|
103986
|
+
/**
|
|
103987
|
+
* The data needed to create a LatestCreatorPaymentTransaction.
|
|
103988
|
+
*/
|
|
103989
|
+
data: XOR<LatestCreatorPaymentTransactionCreateInput, LatestCreatorPaymentTransactionUncheckedCreateInput>
|
|
103990
|
+
}
|
|
103991
|
+
|
|
103992
|
+
/**
|
|
103993
|
+
* LatestCreatorPaymentTransaction createMany
|
|
103994
|
+
*/
|
|
103995
|
+
export type LatestCreatorPaymentTransactionCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
103996
|
+
/**
|
|
103997
|
+
* The data used to create many LatestCreatorPaymentTransactions.
|
|
103998
|
+
*/
|
|
103999
|
+
data: LatestCreatorPaymentTransactionCreateManyInput | LatestCreatorPaymentTransactionCreateManyInput[]
|
|
104000
|
+
skipDuplicates?: boolean
|
|
104001
|
+
}
|
|
104002
|
+
|
|
104003
|
+
/**
|
|
104004
|
+
* LatestCreatorPaymentTransaction createManyAndReturn
|
|
104005
|
+
*/
|
|
104006
|
+
export type LatestCreatorPaymentTransactionCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
104007
|
+
/**
|
|
104008
|
+
* Select specific fields to fetch from the LatestCreatorPaymentTransaction
|
|
104009
|
+
*/
|
|
104010
|
+
select?: LatestCreatorPaymentTransactionSelectCreateManyAndReturn<ExtArgs> | null
|
|
104011
|
+
/**
|
|
104012
|
+
* The data used to create many LatestCreatorPaymentTransactions.
|
|
104013
|
+
*/
|
|
104014
|
+
data: LatestCreatorPaymentTransactionCreateManyInput | LatestCreatorPaymentTransactionCreateManyInput[]
|
|
104015
|
+
skipDuplicates?: boolean
|
|
104016
|
+
}
|
|
104017
|
+
|
|
104018
|
+
/**
|
|
104019
|
+
* LatestCreatorPaymentTransaction update
|
|
104020
|
+
*/
|
|
104021
|
+
export type LatestCreatorPaymentTransactionUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
104022
|
+
/**
|
|
104023
|
+
* Select specific fields to fetch from the LatestCreatorPaymentTransaction
|
|
104024
|
+
*/
|
|
104025
|
+
select?: LatestCreatorPaymentTransactionSelect<ExtArgs> | null
|
|
104026
|
+
/**
|
|
104027
|
+
* The data needed to update a LatestCreatorPaymentTransaction.
|
|
104028
|
+
*/
|
|
104029
|
+
data: XOR<LatestCreatorPaymentTransactionUpdateInput, LatestCreatorPaymentTransactionUncheckedUpdateInput>
|
|
104030
|
+
/**
|
|
104031
|
+
* Choose, which LatestCreatorPaymentTransaction to update.
|
|
104032
|
+
*/
|
|
104033
|
+
where: LatestCreatorPaymentTransactionWhereUniqueInput
|
|
104034
|
+
}
|
|
104035
|
+
|
|
104036
|
+
/**
|
|
104037
|
+
* LatestCreatorPaymentTransaction updateMany
|
|
104038
|
+
*/
|
|
104039
|
+
export type LatestCreatorPaymentTransactionUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
104040
|
+
/**
|
|
104041
|
+
* The data used to update LatestCreatorPaymentTransactions.
|
|
104042
|
+
*/
|
|
104043
|
+
data: XOR<LatestCreatorPaymentTransactionUpdateManyMutationInput, LatestCreatorPaymentTransactionUncheckedUpdateManyInput>
|
|
104044
|
+
/**
|
|
104045
|
+
* Filter which LatestCreatorPaymentTransactions to update
|
|
104046
|
+
*/
|
|
104047
|
+
where?: LatestCreatorPaymentTransactionWhereInput
|
|
104048
|
+
}
|
|
104049
|
+
|
|
104050
|
+
/**
|
|
104051
|
+
* LatestCreatorPaymentTransaction upsert
|
|
104052
|
+
*/
|
|
104053
|
+
export type LatestCreatorPaymentTransactionUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
104054
|
+
/**
|
|
104055
|
+
* Select specific fields to fetch from the LatestCreatorPaymentTransaction
|
|
104056
|
+
*/
|
|
104057
|
+
select?: LatestCreatorPaymentTransactionSelect<ExtArgs> | null
|
|
104058
|
+
/**
|
|
104059
|
+
* The filter to search for the LatestCreatorPaymentTransaction to update in case it exists.
|
|
104060
|
+
*/
|
|
104061
|
+
where: LatestCreatorPaymentTransactionWhereUniqueInput
|
|
104062
|
+
/**
|
|
104063
|
+
* In case the LatestCreatorPaymentTransaction found by the `where` argument doesn't exist, create a new LatestCreatorPaymentTransaction with this data.
|
|
104064
|
+
*/
|
|
104065
|
+
create: XOR<LatestCreatorPaymentTransactionCreateInput, LatestCreatorPaymentTransactionUncheckedCreateInput>
|
|
104066
|
+
/**
|
|
104067
|
+
* In case the LatestCreatorPaymentTransaction was found with the provided `where` argument, update it with this data.
|
|
104068
|
+
*/
|
|
104069
|
+
update: XOR<LatestCreatorPaymentTransactionUpdateInput, LatestCreatorPaymentTransactionUncheckedUpdateInput>
|
|
104070
|
+
}
|
|
104071
|
+
|
|
104072
|
+
/**
|
|
104073
|
+
* LatestCreatorPaymentTransaction delete
|
|
104074
|
+
*/
|
|
104075
|
+
export type LatestCreatorPaymentTransactionDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
104076
|
+
/**
|
|
104077
|
+
* Select specific fields to fetch from the LatestCreatorPaymentTransaction
|
|
104078
|
+
*/
|
|
104079
|
+
select?: LatestCreatorPaymentTransactionSelect<ExtArgs> | null
|
|
104080
|
+
/**
|
|
104081
|
+
* Filter which LatestCreatorPaymentTransaction to delete.
|
|
104082
|
+
*/
|
|
104083
|
+
where: LatestCreatorPaymentTransactionWhereUniqueInput
|
|
104084
|
+
}
|
|
104085
|
+
|
|
104086
|
+
/**
|
|
104087
|
+
* LatestCreatorPaymentTransaction deleteMany
|
|
104088
|
+
*/
|
|
104089
|
+
export type LatestCreatorPaymentTransactionDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
104090
|
+
/**
|
|
104091
|
+
* Filter which LatestCreatorPaymentTransactions to delete
|
|
104092
|
+
*/
|
|
104093
|
+
where?: LatestCreatorPaymentTransactionWhereInput
|
|
104094
|
+
}
|
|
104095
|
+
|
|
104096
|
+
/**
|
|
104097
|
+
* LatestCreatorPaymentTransaction without action
|
|
104098
|
+
*/
|
|
104099
|
+
export type LatestCreatorPaymentTransactionDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
104100
|
+
/**
|
|
104101
|
+
* Select specific fields to fetch from the LatestCreatorPaymentTransaction
|
|
104102
|
+
*/
|
|
104103
|
+
select?: LatestCreatorPaymentTransactionSelect<ExtArgs> | null
|
|
104104
|
+
}
|
|
104105
|
+
|
|
104106
|
+
|
|
102973
104107
|
/**
|
|
102974
104108
|
* Enums
|
|
102975
104109
|
*/
|
|
@@ -103548,6 +104682,7 @@ export namespace Prisma {
|
|
|
103548
104682
|
type: 'type',
|
|
103549
104683
|
status: 'status',
|
|
103550
104684
|
optInId: 'optInId',
|
|
104685
|
+
paymentTransactionId: 'paymentTransactionId',
|
|
103551
104686
|
paymentAmount: 'paymentAmount',
|
|
103552
104687
|
metaData: 'metaData'
|
|
103553
104688
|
};
|
|
@@ -104295,6 +105430,20 @@ export namespace Prisma {
|
|
|
104295
105430
|
export type SequenceOutboundReplyEmailScalarFieldEnum = (typeof SequenceOutboundReplyEmailScalarFieldEnum)[keyof typeof SequenceOutboundReplyEmailScalarFieldEnum]
|
|
104296
105431
|
|
|
104297
105432
|
|
|
105433
|
+
export const LatestCreatorPaymentTransactionScalarFieldEnum: {
|
|
105434
|
+
id: 'id',
|
|
105435
|
+
balance: 'balance',
|
|
105436
|
+
type: 'type',
|
|
105437
|
+
date: 'date',
|
|
105438
|
+
notes: 'notes',
|
|
105439
|
+
metaData: 'metaData',
|
|
105440
|
+
accountId: 'accountId',
|
|
105441
|
+
creatorId: 'creatorId'
|
|
105442
|
+
};
|
|
105443
|
+
|
|
105444
|
+
export type LatestCreatorPaymentTransactionScalarFieldEnum = (typeof LatestCreatorPaymentTransactionScalarFieldEnum)[keyof typeof LatestCreatorPaymentTransactionScalarFieldEnum]
|
|
105445
|
+
|
|
105446
|
+
|
|
104298
105447
|
export const SortOrder: {
|
|
104299
105448
|
asc: 'asc',
|
|
104300
105449
|
desc: 'desc'
|
|
@@ -104966,6 +106115,14 @@ export namespace Prisma {
|
|
|
104966
106115
|
export type SequenceOutboundReplyEmailOrderByRelevanceFieldEnum = (typeof SequenceOutboundReplyEmailOrderByRelevanceFieldEnum)[keyof typeof SequenceOutboundReplyEmailOrderByRelevanceFieldEnum]
|
|
104967
106116
|
|
|
104968
106117
|
|
|
106118
|
+
export const LatestCreatorPaymentTransactionOrderByRelevanceFieldEnum: {
|
|
106119
|
+
type: 'type',
|
|
106120
|
+
notes: 'notes'
|
|
106121
|
+
};
|
|
106122
|
+
|
|
106123
|
+
export type LatestCreatorPaymentTransactionOrderByRelevanceFieldEnum = (typeof LatestCreatorPaymentTransactionOrderByRelevanceFieldEnum)[keyof typeof LatestCreatorPaymentTransactionOrderByRelevanceFieldEnum]
|
|
106124
|
+
|
|
106125
|
+
|
|
104969
106126
|
/**
|
|
104970
106127
|
* Field references
|
|
104971
106128
|
*/
|
|
@@ -108446,9 +109603,11 @@ export namespace Prisma {
|
|
|
108446
109603
|
type?: EnumtrolleyPaymentTypeNullableFilter<"TrolleyPayment"> | $Enums.trolleyPaymentType | null
|
|
108447
109604
|
status?: EnumtrolleyPaymentStatusFilter<"TrolleyPayment"> | $Enums.trolleyPaymentStatus
|
|
108448
109605
|
optInId?: IntNullableFilter<"TrolleyPayment"> | number | null
|
|
109606
|
+
paymentTransactionId?: IntNullableFilter<"TrolleyPayment"> | number | null
|
|
108449
109607
|
paymentAmount?: IntFilter<"TrolleyPayment"> | number
|
|
108450
109608
|
metaData?: JsonFilter<"TrolleyPayment">
|
|
108451
109609
|
optIn?: XOR<OptInNullableRelationFilter, OptInWhereInput> | null
|
|
109610
|
+
paymentTransaction?: XOR<PaymentTransactionNullableRelationFilter, PaymentTransactionWhereInput> | null
|
|
108452
109611
|
}
|
|
108453
109612
|
|
|
108454
109613
|
export type TrolleyPaymentOrderByWithRelationInput = {
|
|
@@ -108457,9 +109616,11 @@ export namespace Prisma {
|
|
|
108457
109616
|
type?: SortOrderInput | SortOrder
|
|
108458
109617
|
status?: SortOrder
|
|
108459
109618
|
optInId?: SortOrderInput | SortOrder
|
|
109619
|
+
paymentTransactionId?: SortOrderInput | SortOrder
|
|
108460
109620
|
paymentAmount?: SortOrder
|
|
108461
109621
|
metaData?: SortOrder
|
|
108462
109622
|
optIn?: OptInOrderByWithRelationInput
|
|
109623
|
+
paymentTransaction?: PaymentTransactionOrderByWithRelationInput
|
|
108463
109624
|
_relevance?: TrolleyPaymentOrderByRelevanceInput
|
|
108464
109625
|
}
|
|
108465
109626
|
|
|
@@ -108472,9 +109633,11 @@ export namespace Prisma {
|
|
|
108472
109633
|
type?: EnumtrolleyPaymentTypeNullableFilter<"TrolleyPayment"> | $Enums.trolleyPaymentType | null
|
|
108473
109634
|
status?: EnumtrolleyPaymentStatusFilter<"TrolleyPayment"> | $Enums.trolleyPaymentStatus
|
|
108474
109635
|
optInId?: IntNullableFilter<"TrolleyPayment"> | number | null
|
|
109636
|
+
paymentTransactionId?: IntNullableFilter<"TrolleyPayment"> | number | null
|
|
108475
109637
|
paymentAmount?: IntFilter<"TrolleyPayment"> | number
|
|
108476
109638
|
metaData?: JsonFilter<"TrolleyPayment">
|
|
108477
109639
|
optIn?: XOR<OptInNullableRelationFilter, OptInWhereInput> | null
|
|
109640
|
+
paymentTransaction?: XOR<PaymentTransactionNullableRelationFilter, PaymentTransactionWhereInput> | null
|
|
108478
109641
|
}, "id" | "paymentId">
|
|
108479
109642
|
|
|
108480
109643
|
export type TrolleyPaymentOrderByWithAggregationInput = {
|
|
@@ -108483,6 +109646,7 @@ export namespace Prisma {
|
|
|
108483
109646
|
type?: SortOrderInput | SortOrder
|
|
108484
109647
|
status?: SortOrder
|
|
108485
109648
|
optInId?: SortOrderInput | SortOrder
|
|
109649
|
+
paymentTransactionId?: SortOrderInput | SortOrder
|
|
108486
109650
|
paymentAmount?: SortOrder
|
|
108487
109651
|
metaData?: SortOrder
|
|
108488
109652
|
_count?: TrolleyPaymentCountOrderByAggregateInput
|
|
@@ -108501,6 +109665,7 @@ export namespace Prisma {
|
|
|
108501
109665
|
type?: EnumtrolleyPaymentTypeNullableWithAggregatesFilter<"TrolleyPayment"> | $Enums.trolleyPaymentType | null
|
|
108502
109666
|
status?: EnumtrolleyPaymentStatusWithAggregatesFilter<"TrolleyPayment"> | $Enums.trolleyPaymentStatus
|
|
108503
109667
|
optInId?: IntNullableWithAggregatesFilter<"TrolleyPayment"> | number | null
|
|
109668
|
+
paymentTransactionId?: IntNullableWithAggregatesFilter<"TrolleyPayment"> | number | null
|
|
108504
109669
|
paymentAmount?: IntWithAggregatesFilter<"TrolleyPayment"> | number
|
|
108505
109670
|
metaData?: JsonWithAggregatesFilter<"TrolleyPayment">
|
|
108506
109671
|
}
|
|
@@ -109409,6 +110574,7 @@ export namespace Prisma {
|
|
|
109409
110574
|
creator?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
109410
110575
|
prevTransaction?: XOR<PaymentTransactionNullableRelationFilter, PaymentTransactionWhereInput> | null
|
|
109411
110576
|
nextTransaction?: XOR<PaymentTransactionNullableRelationFilter, PaymentTransactionWhereInput> | null
|
|
110577
|
+
trolleyPayments?: TrolleyPaymentListRelationFilter
|
|
109412
110578
|
}
|
|
109413
110579
|
|
|
109414
110580
|
export type PaymentTransactionOrderByWithRelationInput = {
|
|
@@ -109427,6 +110593,7 @@ export namespace Prisma {
|
|
|
109427
110593
|
creator?: UserOrderByWithRelationInput
|
|
109428
110594
|
prevTransaction?: PaymentTransactionOrderByWithRelationInput
|
|
109429
110595
|
nextTransaction?: PaymentTransactionOrderByWithRelationInput
|
|
110596
|
+
trolleyPayments?: TrolleyPaymentOrderByRelationAggregateInput
|
|
109430
110597
|
_relevance?: PaymentTransactionOrderByRelevanceInput
|
|
109431
110598
|
}
|
|
109432
110599
|
|
|
@@ -109449,6 +110616,7 @@ export namespace Prisma {
|
|
|
109449
110616
|
creator?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
109450
110617
|
prevTransaction?: XOR<PaymentTransactionNullableRelationFilter, PaymentTransactionWhereInput> | null
|
|
109451
110618
|
nextTransaction?: XOR<PaymentTransactionNullableRelationFilter, PaymentTransactionWhereInput> | null
|
|
110619
|
+
trolleyPayments?: TrolleyPaymentListRelationFilter
|
|
109452
110620
|
}, "id" | "prevTransactionId">
|
|
109453
110621
|
|
|
109454
110622
|
export type PaymentTransactionOrderByWithAggregationInput = {
|
|
@@ -112566,6 +113734,76 @@ export namespace Prisma {
|
|
|
112566
113734
|
updatedAt?: DateTimeWithAggregatesFilter<"SequenceOutboundReplyEmail"> | Date | string
|
|
112567
113735
|
}
|
|
112568
113736
|
|
|
113737
|
+
export type LatestCreatorPaymentTransactionWhereInput = {
|
|
113738
|
+
AND?: LatestCreatorPaymentTransactionWhereInput | LatestCreatorPaymentTransactionWhereInput[]
|
|
113739
|
+
OR?: LatestCreatorPaymentTransactionWhereInput[]
|
|
113740
|
+
NOT?: LatestCreatorPaymentTransactionWhereInput | LatestCreatorPaymentTransactionWhereInput[]
|
|
113741
|
+
id?: IntFilter<"LatestCreatorPaymentTransaction"> | number
|
|
113742
|
+
balance?: FloatFilter<"LatestCreatorPaymentTransaction"> | number
|
|
113743
|
+
type?: StringFilter<"LatestCreatorPaymentTransaction"> | string
|
|
113744
|
+
date?: DateTimeFilter<"LatestCreatorPaymentTransaction"> | Date | string
|
|
113745
|
+
notes?: StringNullableFilter<"LatestCreatorPaymentTransaction"> | string | null
|
|
113746
|
+
metaData?: JsonFilter<"LatestCreatorPaymentTransaction">
|
|
113747
|
+
accountId?: IntFilter<"LatestCreatorPaymentTransaction"> | number
|
|
113748
|
+
creatorId?: IntNullableFilter<"LatestCreatorPaymentTransaction"> | number | null
|
|
113749
|
+
}
|
|
113750
|
+
|
|
113751
|
+
export type LatestCreatorPaymentTransactionOrderByWithRelationInput = {
|
|
113752
|
+
id?: SortOrder
|
|
113753
|
+
balance?: SortOrder
|
|
113754
|
+
type?: SortOrder
|
|
113755
|
+
date?: SortOrder
|
|
113756
|
+
notes?: SortOrderInput | SortOrder
|
|
113757
|
+
metaData?: SortOrder
|
|
113758
|
+
accountId?: SortOrder
|
|
113759
|
+
creatorId?: SortOrderInput | SortOrder
|
|
113760
|
+
_relevance?: LatestCreatorPaymentTransactionOrderByRelevanceInput
|
|
113761
|
+
}
|
|
113762
|
+
|
|
113763
|
+
export type LatestCreatorPaymentTransactionWhereUniqueInput = Prisma.AtLeast<{
|
|
113764
|
+
id?: number
|
|
113765
|
+
AND?: LatestCreatorPaymentTransactionWhereInput | LatestCreatorPaymentTransactionWhereInput[]
|
|
113766
|
+
OR?: LatestCreatorPaymentTransactionWhereInput[]
|
|
113767
|
+
NOT?: LatestCreatorPaymentTransactionWhereInput | LatestCreatorPaymentTransactionWhereInput[]
|
|
113768
|
+
balance?: FloatFilter<"LatestCreatorPaymentTransaction"> | number
|
|
113769
|
+
type?: StringFilter<"LatestCreatorPaymentTransaction"> | string
|
|
113770
|
+
date?: DateTimeFilter<"LatestCreatorPaymentTransaction"> | Date | string
|
|
113771
|
+
notes?: StringNullableFilter<"LatestCreatorPaymentTransaction"> | string | null
|
|
113772
|
+
metaData?: JsonFilter<"LatestCreatorPaymentTransaction">
|
|
113773
|
+
accountId?: IntFilter<"LatestCreatorPaymentTransaction"> | number
|
|
113774
|
+
creatorId?: IntNullableFilter<"LatestCreatorPaymentTransaction"> | number | null
|
|
113775
|
+
}, "id">
|
|
113776
|
+
|
|
113777
|
+
export type LatestCreatorPaymentTransactionOrderByWithAggregationInput = {
|
|
113778
|
+
id?: SortOrder
|
|
113779
|
+
balance?: SortOrder
|
|
113780
|
+
type?: SortOrder
|
|
113781
|
+
date?: SortOrder
|
|
113782
|
+
notes?: SortOrderInput | SortOrder
|
|
113783
|
+
metaData?: SortOrder
|
|
113784
|
+
accountId?: SortOrder
|
|
113785
|
+
creatorId?: SortOrderInput | SortOrder
|
|
113786
|
+
_count?: LatestCreatorPaymentTransactionCountOrderByAggregateInput
|
|
113787
|
+
_avg?: LatestCreatorPaymentTransactionAvgOrderByAggregateInput
|
|
113788
|
+
_max?: LatestCreatorPaymentTransactionMaxOrderByAggregateInput
|
|
113789
|
+
_min?: LatestCreatorPaymentTransactionMinOrderByAggregateInput
|
|
113790
|
+
_sum?: LatestCreatorPaymentTransactionSumOrderByAggregateInput
|
|
113791
|
+
}
|
|
113792
|
+
|
|
113793
|
+
export type LatestCreatorPaymentTransactionScalarWhereWithAggregatesInput = {
|
|
113794
|
+
AND?: LatestCreatorPaymentTransactionScalarWhereWithAggregatesInput | LatestCreatorPaymentTransactionScalarWhereWithAggregatesInput[]
|
|
113795
|
+
OR?: LatestCreatorPaymentTransactionScalarWhereWithAggregatesInput[]
|
|
113796
|
+
NOT?: LatestCreatorPaymentTransactionScalarWhereWithAggregatesInput | LatestCreatorPaymentTransactionScalarWhereWithAggregatesInput[]
|
|
113797
|
+
id?: IntWithAggregatesFilter<"LatestCreatorPaymentTransaction"> | number
|
|
113798
|
+
balance?: FloatWithAggregatesFilter<"LatestCreatorPaymentTransaction"> | number
|
|
113799
|
+
type?: StringWithAggregatesFilter<"LatestCreatorPaymentTransaction"> | string
|
|
113800
|
+
date?: DateTimeWithAggregatesFilter<"LatestCreatorPaymentTransaction"> | Date | string
|
|
113801
|
+
notes?: StringNullableWithAggregatesFilter<"LatestCreatorPaymentTransaction"> | string | null
|
|
113802
|
+
metaData?: JsonWithAggregatesFilter<"LatestCreatorPaymentTransaction">
|
|
113803
|
+
accountId?: IntWithAggregatesFilter<"LatestCreatorPaymentTransaction"> | number
|
|
113804
|
+
creatorId?: IntNullableWithAggregatesFilter<"LatestCreatorPaymentTransaction"> | number | null
|
|
113805
|
+
}
|
|
113806
|
+
|
|
112569
113807
|
export type UserCreateInput = {
|
|
112570
113808
|
idmId?: string | null
|
|
112571
113809
|
role: string
|
|
@@ -116052,6 +117290,7 @@ export namespace Prisma {
|
|
|
116052
117290
|
paymentAmount: number
|
|
116053
117291
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
116054
117292
|
optIn?: OptInCreateNestedOneWithoutTrolleyPaymentsInput
|
|
117293
|
+
paymentTransaction?: PaymentTransactionCreateNestedOneWithoutTrolleyPaymentsInput
|
|
116055
117294
|
}
|
|
116056
117295
|
|
|
116057
117296
|
export type TrolleyPaymentUncheckedCreateInput = {
|
|
@@ -116060,6 +117299,7 @@ export namespace Prisma {
|
|
|
116060
117299
|
type?: $Enums.trolleyPaymentType | null
|
|
116061
117300
|
status: $Enums.trolleyPaymentStatus
|
|
116062
117301
|
optInId?: number | null
|
|
117302
|
+
paymentTransactionId?: number | null
|
|
116063
117303
|
paymentAmount: number
|
|
116064
117304
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
116065
117305
|
}
|
|
@@ -116071,6 +117311,7 @@ export namespace Prisma {
|
|
|
116071
117311
|
paymentAmount?: IntFieldUpdateOperationsInput | number
|
|
116072
117312
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
116073
117313
|
optIn?: OptInUpdateOneWithoutTrolleyPaymentsNestedInput
|
|
117314
|
+
paymentTransaction?: PaymentTransactionUpdateOneWithoutTrolleyPaymentsNestedInput
|
|
116074
117315
|
}
|
|
116075
117316
|
|
|
116076
117317
|
export type TrolleyPaymentUncheckedUpdateInput = {
|
|
@@ -116079,6 +117320,7 @@ export namespace Prisma {
|
|
|
116079
117320
|
type?: NullableEnumtrolleyPaymentTypeFieldUpdateOperationsInput | $Enums.trolleyPaymentType | null
|
|
116080
117321
|
status?: EnumtrolleyPaymentStatusFieldUpdateOperationsInput | $Enums.trolleyPaymentStatus
|
|
116081
117322
|
optInId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
117323
|
+
paymentTransactionId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
116082
117324
|
paymentAmount?: IntFieldUpdateOperationsInput | number
|
|
116083
117325
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
116084
117326
|
}
|
|
@@ -116089,6 +117331,7 @@ export namespace Prisma {
|
|
|
116089
117331
|
type?: $Enums.trolleyPaymentType | null
|
|
116090
117332
|
status: $Enums.trolleyPaymentStatus
|
|
116091
117333
|
optInId?: number | null
|
|
117334
|
+
paymentTransactionId?: number | null
|
|
116092
117335
|
paymentAmount: number
|
|
116093
117336
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
116094
117337
|
}
|
|
@@ -116107,6 +117350,7 @@ export namespace Prisma {
|
|
|
116107
117350
|
type?: NullableEnumtrolleyPaymentTypeFieldUpdateOperationsInput | $Enums.trolleyPaymentType | null
|
|
116108
117351
|
status?: EnumtrolleyPaymentStatusFieldUpdateOperationsInput | $Enums.trolleyPaymentStatus
|
|
116109
117352
|
optInId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
117353
|
+
paymentTransactionId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
116110
117354
|
paymentAmount?: IntFieldUpdateOperationsInput | number
|
|
116111
117355
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
116112
117356
|
}
|
|
@@ -117064,6 +118308,7 @@ export namespace Prisma {
|
|
|
117064
118308
|
creator?: UserCreateNestedOneWithoutPaymentTransactionsInput
|
|
117065
118309
|
prevTransaction?: PaymentTransactionCreateNestedOneWithoutNextTransactionInput
|
|
117066
118310
|
nextTransaction?: PaymentTransactionCreateNestedOneWithoutPrevTransactionInput
|
|
118311
|
+
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutPaymentTransactionInput
|
|
117067
118312
|
}
|
|
117068
118313
|
|
|
117069
118314
|
export type PaymentTransactionUncheckedCreateInput = {
|
|
@@ -117079,6 +118324,7 @@ export namespace Prisma {
|
|
|
117079
118324
|
creatorId?: number | null
|
|
117080
118325
|
prevTransactionId?: number | null
|
|
117081
118326
|
nextTransaction?: PaymentTransactionUncheckedCreateNestedOneWithoutPrevTransactionInput
|
|
118327
|
+
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutPaymentTransactionInput
|
|
117082
118328
|
}
|
|
117083
118329
|
|
|
117084
118330
|
export type PaymentTransactionUpdateInput = {
|
|
@@ -117093,6 +118339,7 @@ export namespace Prisma {
|
|
|
117093
118339
|
creator?: UserUpdateOneWithoutPaymentTransactionsNestedInput
|
|
117094
118340
|
prevTransaction?: PaymentTransactionUpdateOneWithoutNextTransactionNestedInput
|
|
117095
118341
|
nextTransaction?: PaymentTransactionUpdateOneWithoutPrevTransactionNestedInput
|
|
118342
|
+
trolleyPayments?: TrolleyPaymentUpdateManyWithoutPaymentTransactionNestedInput
|
|
117096
118343
|
}
|
|
117097
118344
|
|
|
117098
118345
|
export type PaymentTransactionUncheckedUpdateInput = {
|
|
@@ -117108,6 +118355,7 @@ export namespace Prisma {
|
|
|
117108
118355
|
creatorId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
117109
118356
|
prevTransactionId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
117110
118357
|
nextTransaction?: PaymentTransactionUncheckedUpdateOneWithoutPrevTransactionNestedInput
|
|
118358
|
+
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutPaymentTransactionNestedInput
|
|
117111
118359
|
}
|
|
117112
118360
|
|
|
117113
118361
|
export type PaymentTransactionCreateManyInput = {
|
|
@@ -120165,6 +121413,83 @@ export namespace Prisma {
|
|
|
120165
121413
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
120166
121414
|
}
|
|
120167
121415
|
|
|
121416
|
+
export type LatestCreatorPaymentTransactionCreateInput = {
|
|
121417
|
+
id: number
|
|
121418
|
+
balance: number
|
|
121419
|
+
type: string
|
|
121420
|
+
date: Date | string
|
|
121421
|
+
notes?: string | null
|
|
121422
|
+
metaData: JsonNullValueInput | InputJsonValue
|
|
121423
|
+
accountId: number
|
|
121424
|
+
creatorId?: number | null
|
|
121425
|
+
}
|
|
121426
|
+
|
|
121427
|
+
export type LatestCreatorPaymentTransactionUncheckedCreateInput = {
|
|
121428
|
+
id: number
|
|
121429
|
+
balance: number
|
|
121430
|
+
type: string
|
|
121431
|
+
date: Date | string
|
|
121432
|
+
notes?: string | null
|
|
121433
|
+
metaData: JsonNullValueInput | InputJsonValue
|
|
121434
|
+
accountId: number
|
|
121435
|
+
creatorId?: number | null
|
|
121436
|
+
}
|
|
121437
|
+
|
|
121438
|
+
export type LatestCreatorPaymentTransactionUpdateInput = {
|
|
121439
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
121440
|
+
balance?: FloatFieldUpdateOperationsInput | number
|
|
121441
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
121442
|
+
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121443
|
+
notes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121444
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
121445
|
+
accountId?: IntFieldUpdateOperationsInput | number
|
|
121446
|
+
creatorId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
121447
|
+
}
|
|
121448
|
+
|
|
121449
|
+
export type LatestCreatorPaymentTransactionUncheckedUpdateInput = {
|
|
121450
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
121451
|
+
balance?: FloatFieldUpdateOperationsInput | number
|
|
121452
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
121453
|
+
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121454
|
+
notes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121455
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
121456
|
+
accountId?: IntFieldUpdateOperationsInput | number
|
|
121457
|
+
creatorId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
121458
|
+
}
|
|
121459
|
+
|
|
121460
|
+
export type LatestCreatorPaymentTransactionCreateManyInput = {
|
|
121461
|
+
id: number
|
|
121462
|
+
balance: number
|
|
121463
|
+
type: string
|
|
121464
|
+
date: Date | string
|
|
121465
|
+
notes?: string | null
|
|
121466
|
+
metaData: JsonNullValueInput | InputJsonValue
|
|
121467
|
+
accountId: number
|
|
121468
|
+
creatorId?: number | null
|
|
121469
|
+
}
|
|
121470
|
+
|
|
121471
|
+
export type LatestCreatorPaymentTransactionUpdateManyMutationInput = {
|
|
121472
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
121473
|
+
balance?: FloatFieldUpdateOperationsInput | number
|
|
121474
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
121475
|
+
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121476
|
+
notes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121477
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
121478
|
+
accountId?: IntFieldUpdateOperationsInput | number
|
|
121479
|
+
creatorId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
121480
|
+
}
|
|
121481
|
+
|
|
121482
|
+
export type LatestCreatorPaymentTransactionUncheckedUpdateManyInput = {
|
|
121483
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
121484
|
+
balance?: FloatFieldUpdateOperationsInput | number
|
|
121485
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
121486
|
+
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121487
|
+
notes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121488
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
121489
|
+
accountId?: IntFieldUpdateOperationsInput | number
|
|
121490
|
+
creatorId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
121491
|
+
}
|
|
121492
|
+
|
|
120168
121493
|
export type IntFilter<$PrismaModel = never> = {
|
|
120169
121494
|
equals?: number | IntFieldRefInput<$PrismaModel>
|
|
120170
121495
|
in?: number[] | ListIntFieldRefInput<$PrismaModel>
|
|
@@ -123245,6 +124570,11 @@ export namespace Prisma {
|
|
|
123245
124570
|
not?: NestedEnumtrolleyPaymentStatusFilter<$PrismaModel> | $Enums.trolleyPaymentStatus
|
|
123246
124571
|
}
|
|
123247
124572
|
|
|
124573
|
+
export type PaymentTransactionNullableRelationFilter = {
|
|
124574
|
+
is?: PaymentTransactionWhereInput | null
|
|
124575
|
+
isNot?: PaymentTransactionWhereInput | null
|
|
124576
|
+
}
|
|
124577
|
+
|
|
123248
124578
|
export type TrolleyPaymentOrderByRelevanceInput = {
|
|
123249
124579
|
fields: TrolleyPaymentOrderByRelevanceFieldEnum | TrolleyPaymentOrderByRelevanceFieldEnum[]
|
|
123250
124580
|
sort: SortOrder
|
|
@@ -123257,6 +124587,7 @@ export namespace Prisma {
|
|
|
123257
124587
|
type?: SortOrder
|
|
123258
124588
|
status?: SortOrder
|
|
123259
124589
|
optInId?: SortOrder
|
|
124590
|
+
paymentTransactionId?: SortOrder
|
|
123260
124591
|
paymentAmount?: SortOrder
|
|
123261
124592
|
metaData?: SortOrder
|
|
123262
124593
|
}
|
|
@@ -123264,6 +124595,7 @@ export namespace Prisma {
|
|
|
123264
124595
|
export type TrolleyPaymentAvgOrderByAggregateInput = {
|
|
123265
124596
|
id?: SortOrder
|
|
123266
124597
|
optInId?: SortOrder
|
|
124598
|
+
paymentTransactionId?: SortOrder
|
|
123267
124599
|
paymentAmount?: SortOrder
|
|
123268
124600
|
}
|
|
123269
124601
|
|
|
@@ -123273,6 +124605,7 @@ export namespace Prisma {
|
|
|
123273
124605
|
type?: SortOrder
|
|
123274
124606
|
status?: SortOrder
|
|
123275
124607
|
optInId?: SortOrder
|
|
124608
|
+
paymentTransactionId?: SortOrder
|
|
123276
124609
|
paymentAmount?: SortOrder
|
|
123277
124610
|
}
|
|
123278
124611
|
|
|
@@ -123282,12 +124615,14 @@ export namespace Prisma {
|
|
|
123282
124615
|
type?: SortOrder
|
|
123283
124616
|
status?: SortOrder
|
|
123284
124617
|
optInId?: SortOrder
|
|
124618
|
+
paymentTransactionId?: SortOrder
|
|
123285
124619
|
paymentAmount?: SortOrder
|
|
123286
124620
|
}
|
|
123287
124621
|
|
|
123288
124622
|
export type TrolleyPaymentSumOrderByAggregateInput = {
|
|
123289
124623
|
id?: SortOrder
|
|
123290
124624
|
optInId?: SortOrder
|
|
124625
|
+
paymentTransactionId?: SortOrder
|
|
123291
124626
|
paymentAmount?: SortOrder
|
|
123292
124627
|
}
|
|
123293
124628
|
|
|
@@ -124005,11 +125340,6 @@ export namespace Prisma {
|
|
|
124005
125340
|
brandId?: SortOrder
|
|
124006
125341
|
}
|
|
124007
125342
|
|
|
124008
|
-
export type PaymentTransactionNullableRelationFilter = {
|
|
124009
|
-
is?: PaymentTransactionWhereInput | null
|
|
124010
|
-
isNot?: PaymentTransactionWhereInput | null
|
|
124011
|
-
}
|
|
124012
|
-
|
|
124013
125343
|
export type PaymentTransactionOrderByRelevanceInput = {
|
|
124014
125344
|
fields: PaymentTransactionOrderByRelevanceFieldEnum | PaymentTransactionOrderByRelevanceFieldEnum[]
|
|
124015
125345
|
sort: SortOrder
|
|
@@ -126338,6 +127668,57 @@ export namespace Prisma {
|
|
|
126338
127668
|
replyCount?: SortOrder
|
|
126339
127669
|
}
|
|
126340
127670
|
|
|
127671
|
+
export type LatestCreatorPaymentTransactionOrderByRelevanceInput = {
|
|
127672
|
+
fields: LatestCreatorPaymentTransactionOrderByRelevanceFieldEnum | LatestCreatorPaymentTransactionOrderByRelevanceFieldEnum[]
|
|
127673
|
+
sort: SortOrder
|
|
127674
|
+
search: string
|
|
127675
|
+
}
|
|
127676
|
+
|
|
127677
|
+
export type LatestCreatorPaymentTransactionCountOrderByAggregateInput = {
|
|
127678
|
+
id?: SortOrder
|
|
127679
|
+
balance?: SortOrder
|
|
127680
|
+
type?: SortOrder
|
|
127681
|
+
date?: SortOrder
|
|
127682
|
+
notes?: SortOrder
|
|
127683
|
+
metaData?: SortOrder
|
|
127684
|
+
accountId?: SortOrder
|
|
127685
|
+
creatorId?: SortOrder
|
|
127686
|
+
}
|
|
127687
|
+
|
|
127688
|
+
export type LatestCreatorPaymentTransactionAvgOrderByAggregateInput = {
|
|
127689
|
+
id?: SortOrder
|
|
127690
|
+
balance?: SortOrder
|
|
127691
|
+
accountId?: SortOrder
|
|
127692
|
+
creatorId?: SortOrder
|
|
127693
|
+
}
|
|
127694
|
+
|
|
127695
|
+
export type LatestCreatorPaymentTransactionMaxOrderByAggregateInput = {
|
|
127696
|
+
id?: SortOrder
|
|
127697
|
+
balance?: SortOrder
|
|
127698
|
+
type?: SortOrder
|
|
127699
|
+
date?: SortOrder
|
|
127700
|
+
notes?: SortOrder
|
|
127701
|
+
accountId?: SortOrder
|
|
127702
|
+
creatorId?: SortOrder
|
|
127703
|
+
}
|
|
127704
|
+
|
|
127705
|
+
export type LatestCreatorPaymentTransactionMinOrderByAggregateInput = {
|
|
127706
|
+
id?: SortOrder
|
|
127707
|
+
balance?: SortOrder
|
|
127708
|
+
type?: SortOrder
|
|
127709
|
+
date?: SortOrder
|
|
127710
|
+
notes?: SortOrder
|
|
127711
|
+
accountId?: SortOrder
|
|
127712
|
+
creatorId?: SortOrder
|
|
127713
|
+
}
|
|
127714
|
+
|
|
127715
|
+
export type LatestCreatorPaymentTransactionSumOrderByAggregateInput = {
|
|
127716
|
+
id?: SortOrder
|
|
127717
|
+
balance?: SortOrder
|
|
127718
|
+
accountId?: SortOrder
|
|
127719
|
+
creatorId?: SortOrder
|
|
127720
|
+
}
|
|
127721
|
+
|
|
126341
127722
|
export type UserCreateNestedOneWithoutReferredUsersInput = {
|
|
126342
127723
|
create?: XOR<UserCreateWithoutReferredUsersInput, UserUncheckedCreateWithoutReferredUsersInput>
|
|
126343
127724
|
connectOrCreate?: UserCreateOrConnectWithoutReferredUsersInput
|
|
@@ -131692,6 +133073,12 @@ export namespace Prisma {
|
|
|
131692
133073
|
connect?: OptInWhereUniqueInput
|
|
131693
133074
|
}
|
|
131694
133075
|
|
|
133076
|
+
export type PaymentTransactionCreateNestedOneWithoutTrolleyPaymentsInput = {
|
|
133077
|
+
create?: XOR<PaymentTransactionCreateWithoutTrolleyPaymentsInput, PaymentTransactionUncheckedCreateWithoutTrolleyPaymentsInput>
|
|
133078
|
+
connectOrCreate?: PaymentTransactionCreateOrConnectWithoutTrolleyPaymentsInput
|
|
133079
|
+
connect?: PaymentTransactionWhereUniqueInput
|
|
133080
|
+
}
|
|
133081
|
+
|
|
131695
133082
|
export type NullableEnumtrolleyPaymentTypeFieldUpdateOperationsInput = {
|
|
131696
133083
|
set?: $Enums.trolleyPaymentType | null
|
|
131697
133084
|
}
|
|
@@ -131710,6 +133097,16 @@ export namespace Prisma {
|
|
|
131710
133097
|
update?: XOR<XOR<OptInUpdateToOneWithWhereWithoutTrolleyPaymentsInput, OptInUpdateWithoutTrolleyPaymentsInput>, OptInUncheckedUpdateWithoutTrolleyPaymentsInput>
|
|
131711
133098
|
}
|
|
131712
133099
|
|
|
133100
|
+
export type PaymentTransactionUpdateOneWithoutTrolleyPaymentsNestedInput = {
|
|
133101
|
+
create?: XOR<PaymentTransactionCreateWithoutTrolleyPaymentsInput, PaymentTransactionUncheckedCreateWithoutTrolleyPaymentsInput>
|
|
133102
|
+
connectOrCreate?: PaymentTransactionCreateOrConnectWithoutTrolleyPaymentsInput
|
|
133103
|
+
upsert?: PaymentTransactionUpsertWithoutTrolleyPaymentsInput
|
|
133104
|
+
disconnect?: PaymentTransactionWhereInput | boolean
|
|
133105
|
+
delete?: PaymentTransactionWhereInput | boolean
|
|
133106
|
+
connect?: PaymentTransactionWhereUniqueInput
|
|
133107
|
+
update?: XOR<XOR<PaymentTransactionUpdateToOneWithWhereWithoutTrolleyPaymentsInput, PaymentTransactionUpdateWithoutTrolleyPaymentsInput>, PaymentTransactionUncheckedUpdateWithoutTrolleyPaymentsInput>
|
|
133108
|
+
}
|
|
133109
|
+
|
|
131713
133110
|
export type OptInCreateNestedOneWithoutVariablesInput = {
|
|
131714
133111
|
create?: XOR<OptInCreateWithoutVariablesInput, OptInUncheckedCreateWithoutVariablesInput>
|
|
131715
133112
|
connectOrCreate?: OptInCreateOrConnectWithoutVariablesInput
|
|
@@ -132112,12 +133509,26 @@ export namespace Prisma {
|
|
|
132112
133509
|
connect?: PaymentTransactionWhereUniqueInput
|
|
132113
133510
|
}
|
|
132114
133511
|
|
|
133512
|
+
export type TrolleyPaymentCreateNestedManyWithoutPaymentTransactionInput = {
|
|
133513
|
+
create?: XOR<TrolleyPaymentCreateWithoutPaymentTransactionInput, TrolleyPaymentUncheckedCreateWithoutPaymentTransactionInput> | TrolleyPaymentCreateWithoutPaymentTransactionInput[] | TrolleyPaymentUncheckedCreateWithoutPaymentTransactionInput[]
|
|
133514
|
+
connectOrCreate?: TrolleyPaymentCreateOrConnectWithoutPaymentTransactionInput | TrolleyPaymentCreateOrConnectWithoutPaymentTransactionInput[]
|
|
133515
|
+
createMany?: TrolleyPaymentCreateManyPaymentTransactionInputEnvelope
|
|
133516
|
+
connect?: TrolleyPaymentWhereUniqueInput | TrolleyPaymentWhereUniqueInput[]
|
|
133517
|
+
}
|
|
133518
|
+
|
|
132115
133519
|
export type PaymentTransactionUncheckedCreateNestedOneWithoutPrevTransactionInput = {
|
|
132116
133520
|
create?: XOR<PaymentTransactionCreateWithoutPrevTransactionInput, PaymentTransactionUncheckedCreateWithoutPrevTransactionInput>
|
|
132117
133521
|
connectOrCreate?: PaymentTransactionCreateOrConnectWithoutPrevTransactionInput
|
|
132118
133522
|
connect?: PaymentTransactionWhereUniqueInput
|
|
132119
133523
|
}
|
|
132120
133524
|
|
|
133525
|
+
export type TrolleyPaymentUncheckedCreateNestedManyWithoutPaymentTransactionInput = {
|
|
133526
|
+
create?: XOR<TrolleyPaymentCreateWithoutPaymentTransactionInput, TrolleyPaymentUncheckedCreateWithoutPaymentTransactionInput> | TrolleyPaymentCreateWithoutPaymentTransactionInput[] | TrolleyPaymentUncheckedCreateWithoutPaymentTransactionInput[]
|
|
133527
|
+
connectOrCreate?: TrolleyPaymentCreateOrConnectWithoutPaymentTransactionInput | TrolleyPaymentCreateOrConnectWithoutPaymentTransactionInput[]
|
|
133528
|
+
createMany?: TrolleyPaymentCreateManyPaymentTransactionInputEnvelope
|
|
133529
|
+
connect?: TrolleyPaymentWhereUniqueInput | TrolleyPaymentWhereUniqueInput[]
|
|
133530
|
+
}
|
|
133531
|
+
|
|
132121
133532
|
export type BrandUpdateOneWithoutPaymentTransactionsNestedInput = {
|
|
132122
133533
|
create?: XOR<BrandCreateWithoutPaymentTransactionsInput, BrandUncheckedCreateWithoutPaymentTransactionsInput>
|
|
132123
133534
|
connectOrCreate?: BrandCreateOrConnectWithoutPaymentTransactionsInput
|
|
@@ -132158,6 +133569,20 @@ export namespace Prisma {
|
|
|
132158
133569
|
update?: XOR<XOR<PaymentTransactionUpdateToOneWithWhereWithoutPrevTransactionInput, PaymentTransactionUpdateWithoutPrevTransactionInput>, PaymentTransactionUncheckedUpdateWithoutPrevTransactionInput>
|
|
132159
133570
|
}
|
|
132160
133571
|
|
|
133572
|
+
export type TrolleyPaymentUpdateManyWithoutPaymentTransactionNestedInput = {
|
|
133573
|
+
create?: XOR<TrolleyPaymentCreateWithoutPaymentTransactionInput, TrolleyPaymentUncheckedCreateWithoutPaymentTransactionInput> | TrolleyPaymentCreateWithoutPaymentTransactionInput[] | TrolleyPaymentUncheckedCreateWithoutPaymentTransactionInput[]
|
|
133574
|
+
connectOrCreate?: TrolleyPaymentCreateOrConnectWithoutPaymentTransactionInput | TrolleyPaymentCreateOrConnectWithoutPaymentTransactionInput[]
|
|
133575
|
+
upsert?: TrolleyPaymentUpsertWithWhereUniqueWithoutPaymentTransactionInput | TrolleyPaymentUpsertWithWhereUniqueWithoutPaymentTransactionInput[]
|
|
133576
|
+
createMany?: TrolleyPaymentCreateManyPaymentTransactionInputEnvelope
|
|
133577
|
+
set?: TrolleyPaymentWhereUniqueInput | TrolleyPaymentWhereUniqueInput[]
|
|
133578
|
+
disconnect?: TrolleyPaymentWhereUniqueInput | TrolleyPaymentWhereUniqueInput[]
|
|
133579
|
+
delete?: TrolleyPaymentWhereUniqueInput | TrolleyPaymentWhereUniqueInput[]
|
|
133580
|
+
connect?: TrolleyPaymentWhereUniqueInput | TrolleyPaymentWhereUniqueInput[]
|
|
133581
|
+
update?: TrolleyPaymentUpdateWithWhereUniqueWithoutPaymentTransactionInput | TrolleyPaymentUpdateWithWhereUniqueWithoutPaymentTransactionInput[]
|
|
133582
|
+
updateMany?: TrolleyPaymentUpdateManyWithWhereWithoutPaymentTransactionInput | TrolleyPaymentUpdateManyWithWhereWithoutPaymentTransactionInput[]
|
|
133583
|
+
deleteMany?: TrolleyPaymentScalarWhereInput | TrolleyPaymentScalarWhereInput[]
|
|
133584
|
+
}
|
|
133585
|
+
|
|
132161
133586
|
export type PaymentTransactionUncheckedUpdateOneWithoutPrevTransactionNestedInput = {
|
|
132162
133587
|
create?: XOR<PaymentTransactionCreateWithoutPrevTransactionInput, PaymentTransactionUncheckedCreateWithoutPrevTransactionInput>
|
|
132163
133588
|
connectOrCreate?: PaymentTransactionCreateOrConnectWithoutPrevTransactionInput
|
|
@@ -132168,6 +133593,20 @@ export namespace Prisma {
|
|
|
132168
133593
|
update?: XOR<XOR<PaymentTransactionUpdateToOneWithWhereWithoutPrevTransactionInput, PaymentTransactionUpdateWithoutPrevTransactionInput>, PaymentTransactionUncheckedUpdateWithoutPrevTransactionInput>
|
|
132169
133594
|
}
|
|
132170
133595
|
|
|
133596
|
+
export type TrolleyPaymentUncheckedUpdateManyWithoutPaymentTransactionNestedInput = {
|
|
133597
|
+
create?: XOR<TrolleyPaymentCreateWithoutPaymentTransactionInput, TrolleyPaymentUncheckedCreateWithoutPaymentTransactionInput> | TrolleyPaymentCreateWithoutPaymentTransactionInput[] | TrolleyPaymentUncheckedCreateWithoutPaymentTransactionInput[]
|
|
133598
|
+
connectOrCreate?: TrolleyPaymentCreateOrConnectWithoutPaymentTransactionInput | TrolleyPaymentCreateOrConnectWithoutPaymentTransactionInput[]
|
|
133599
|
+
upsert?: TrolleyPaymentUpsertWithWhereUniqueWithoutPaymentTransactionInput | TrolleyPaymentUpsertWithWhereUniqueWithoutPaymentTransactionInput[]
|
|
133600
|
+
createMany?: TrolleyPaymentCreateManyPaymentTransactionInputEnvelope
|
|
133601
|
+
set?: TrolleyPaymentWhereUniqueInput | TrolleyPaymentWhereUniqueInput[]
|
|
133602
|
+
disconnect?: TrolleyPaymentWhereUniqueInput | TrolleyPaymentWhereUniqueInput[]
|
|
133603
|
+
delete?: TrolleyPaymentWhereUniqueInput | TrolleyPaymentWhereUniqueInput[]
|
|
133604
|
+
connect?: TrolleyPaymentWhereUniqueInput | TrolleyPaymentWhereUniqueInput[]
|
|
133605
|
+
update?: TrolleyPaymentUpdateWithWhereUniqueWithoutPaymentTransactionInput | TrolleyPaymentUpdateWithWhereUniqueWithoutPaymentTransactionInput[]
|
|
133606
|
+
updateMany?: TrolleyPaymentUpdateManyWithWhereWithoutPaymentTransactionInput | TrolleyPaymentUpdateManyWithWhereWithoutPaymentTransactionInput[]
|
|
133607
|
+
deleteMany?: TrolleyPaymentScalarWhereInput | TrolleyPaymentScalarWhereInput[]
|
|
133608
|
+
}
|
|
133609
|
+
|
|
132171
133610
|
export type OptInCreateNestedOneWithoutExternalAffiliateClickInput = {
|
|
132172
133611
|
create?: XOR<OptInCreateWithoutExternalAffiliateClickInput, OptInUncheckedCreateWithoutExternalAffiliateClickInput>
|
|
132173
133612
|
connectOrCreate?: OptInCreateOrConnectWithoutExternalAffiliateClickInput
|
|
@@ -135804,6 +137243,7 @@ export namespace Prisma {
|
|
|
135804
137243
|
brand?: BrandCreateNestedOneWithoutPaymentTransactionsInput
|
|
135805
137244
|
prevTransaction?: PaymentTransactionCreateNestedOneWithoutNextTransactionInput
|
|
135806
137245
|
nextTransaction?: PaymentTransactionCreateNestedOneWithoutPrevTransactionInput
|
|
137246
|
+
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutPaymentTransactionInput
|
|
135807
137247
|
}
|
|
135808
137248
|
|
|
135809
137249
|
export type PaymentTransactionUncheckedCreateWithoutCreatorInput = {
|
|
@@ -135818,6 +137258,7 @@ export namespace Prisma {
|
|
|
135818
137258
|
brandId?: number | null
|
|
135819
137259
|
prevTransactionId?: number | null
|
|
135820
137260
|
nextTransaction?: PaymentTransactionUncheckedCreateNestedOneWithoutPrevTransactionInput
|
|
137261
|
+
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutPaymentTransactionInput
|
|
135821
137262
|
}
|
|
135822
137263
|
|
|
135823
137264
|
export type PaymentTransactionCreateOrConnectWithoutCreatorInput = {
|
|
@@ -141294,6 +142735,7 @@ export namespace Prisma {
|
|
|
141294
142735
|
creator?: UserCreateNestedOneWithoutPaymentTransactionsInput
|
|
141295
142736
|
prevTransaction?: PaymentTransactionCreateNestedOneWithoutNextTransactionInput
|
|
141296
142737
|
nextTransaction?: PaymentTransactionCreateNestedOneWithoutPrevTransactionInput
|
|
142738
|
+
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutPaymentTransactionInput
|
|
141297
142739
|
}
|
|
141298
142740
|
|
|
141299
142741
|
export type PaymentTransactionUncheckedCreateWithoutBrandInput = {
|
|
@@ -141308,6 +142750,7 @@ export namespace Prisma {
|
|
|
141308
142750
|
creatorId?: number | null
|
|
141309
142751
|
prevTransactionId?: number | null
|
|
141310
142752
|
nextTransaction?: PaymentTransactionUncheckedCreateNestedOneWithoutPrevTransactionInput
|
|
142753
|
+
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutPaymentTransactionInput
|
|
141311
142754
|
}
|
|
141312
142755
|
|
|
141313
142756
|
export type PaymentTransactionCreateOrConnectWithoutBrandInput = {
|
|
@@ -151120,6 +152563,7 @@ export namespace Prisma {
|
|
|
151120
152563
|
status: $Enums.trolleyPaymentStatus
|
|
151121
152564
|
paymentAmount: number
|
|
151122
152565
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
152566
|
+
paymentTransaction?: PaymentTransactionCreateNestedOneWithoutTrolleyPaymentsInput
|
|
151123
152567
|
}
|
|
151124
152568
|
|
|
151125
152569
|
export type TrolleyPaymentUncheckedCreateWithoutOptInInput = {
|
|
@@ -151127,6 +152571,7 @@ export namespace Prisma {
|
|
|
151127
152571
|
paymentId: string
|
|
151128
152572
|
type?: $Enums.trolleyPaymentType | null
|
|
151129
152573
|
status: $Enums.trolleyPaymentStatus
|
|
152574
|
+
paymentTransactionId?: number | null
|
|
151130
152575
|
paymentAmount: number
|
|
151131
152576
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
151132
152577
|
}
|
|
@@ -151910,6 +153355,7 @@ export namespace Prisma {
|
|
|
151910
153355
|
type?: EnumtrolleyPaymentTypeNullableFilter<"TrolleyPayment"> | $Enums.trolleyPaymentType | null
|
|
151911
153356
|
status?: EnumtrolleyPaymentStatusFilter<"TrolleyPayment"> | $Enums.trolleyPaymentStatus
|
|
151912
153357
|
optInId?: IntNullableFilter<"TrolleyPayment"> | number | null
|
|
153358
|
+
paymentTransactionId?: IntNullableFilter<"TrolleyPayment"> | number | null
|
|
151913
153359
|
paymentAmount?: IntFilter<"TrolleyPayment"> | number
|
|
151914
153360
|
metaData?: JsonFilter<"TrolleyPayment">
|
|
151915
153361
|
}
|
|
@@ -152139,6 +153585,40 @@ export namespace Prisma {
|
|
|
152139
153585
|
create: XOR<OptInCreateWithoutTrolleyPaymentsInput, OptInUncheckedCreateWithoutTrolleyPaymentsInput>
|
|
152140
153586
|
}
|
|
152141
153587
|
|
|
153588
|
+
export type PaymentTransactionCreateWithoutTrolleyPaymentsInput = {
|
|
153589
|
+
amount: number
|
|
153590
|
+
balance: number
|
|
153591
|
+
type: string
|
|
153592
|
+
date?: Date | string
|
|
153593
|
+
notes?: string | null
|
|
153594
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
153595
|
+
accountId: number
|
|
153596
|
+
brand?: BrandCreateNestedOneWithoutPaymentTransactionsInput
|
|
153597
|
+
creator?: UserCreateNestedOneWithoutPaymentTransactionsInput
|
|
153598
|
+
prevTransaction?: PaymentTransactionCreateNestedOneWithoutNextTransactionInput
|
|
153599
|
+
nextTransaction?: PaymentTransactionCreateNestedOneWithoutPrevTransactionInput
|
|
153600
|
+
}
|
|
153601
|
+
|
|
153602
|
+
export type PaymentTransactionUncheckedCreateWithoutTrolleyPaymentsInput = {
|
|
153603
|
+
id?: number
|
|
153604
|
+
amount: number
|
|
153605
|
+
balance: number
|
|
153606
|
+
type: string
|
|
153607
|
+
date?: Date | string
|
|
153608
|
+
notes?: string | null
|
|
153609
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
153610
|
+
accountId: number
|
|
153611
|
+
brandId?: number | null
|
|
153612
|
+
creatorId?: number | null
|
|
153613
|
+
prevTransactionId?: number | null
|
|
153614
|
+
nextTransaction?: PaymentTransactionUncheckedCreateNestedOneWithoutPrevTransactionInput
|
|
153615
|
+
}
|
|
153616
|
+
|
|
153617
|
+
export type PaymentTransactionCreateOrConnectWithoutTrolleyPaymentsInput = {
|
|
153618
|
+
where: PaymentTransactionWhereUniqueInput
|
|
153619
|
+
create: XOR<PaymentTransactionCreateWithoutTrolleyPaymentsInput, PaymentTransactionUncheckedCreateWithoutTrolleyPaymentsInput>
|
|
153620
|
+
}
|
|
153621
|
+
|
|
152142
153622
|
export type OptInUpsertWithoutTrolleyPaymentsInput = {
|
|
152143
153623
|
update: XOR<OptInUpdateWithoutTrolleyPaymentsInput, OptInUncheckedUpdateWithoutTrolleyPaymentsInput>
|
|
152144
153624
|
create: XOR<OptInCreateWithoutTrolleyPaymentsInput, OptInUncheckedCreateWithoutTrolleyPaymentsInput>
|
|
@@ -152221,6 +153701,46 @@ export namespace Prisma {
|
|
|
152221
153701
|
shopifyDiscountCodes?: ShopifyDiscountCodeUncheckedUpdateManyWithoutOptInNestedInput
|
|
152222
153702
|
}
|
|
152223
153703
|
|
|
153704
|
+
export type PaymentTransactionUpsertWithoutTrolleyPaymentsInput = {
|
|
153705
|
+
update: XOR<PaymentTransactionUpdateWithoutTrolleyPaymentsInput, PaymentTransactionUncheckedUpdateWithoutTrolleyPaymentsInput>
|
|
153706
|
+
create: XOR<PaymentTransactionCreateWithoutTrolleyPaymentsInput, PaymentTransactionUncheckedCreateWithoutTrolleyPaymentsInput>
|
|
153707
|
+
where?: PaymentTransactionWhereInput
|
|
153708
|
+
}
|
|
153709
|
+
|
|
153710
|
+
export type PaymentTransactionUpdateToOneWithWhereWithoutTrolleyPaymentsInput = {
|
|
153711
|
+
where?: PaymentTransactionWhereInput
|
|
153712
|
+
data: XOR<PaymentTransactionUpdateWithoutTrolleyPaymentsInput, PaymentTransactionUncheckedUpdateWithoutTrolleyPaymentsInput>
|
|
153713
|
+
}
|
|
153714
|
+
|
|
153715
|
+
export type PaymentTransactionUpdateWithoutTrolleyPaymentsInput = {
|
|
153716
|
+
amount?: FloatFieldUpdateOperationsInput | number
|
|
153717
|
+
balance?: FloatFieldUpdateOperationsInput | number
|
|
153718
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
153719
|
+
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
153720
|
+
notes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
153721
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
153722
|
+
accountId?: IntFieldUpdateOperationsInput | number
|
|
153723
|
+
brand?: BrandUpdateOneWithoutPaymentTransactionsNestedInput
|
|
153724
|
+
creator?: UserUpdateOneWithoutPaymentTransactionsNestedInput
|
|
153725
|
+
prevTransaction?: PaymentTransactionUpdateOneWithoutNextTransactionNestedInput
|
|
153726
|
+
nextTransaction?: PaymentTransactionUpdateOneWithoutPrevTransactionNestedInput
|
|
153727
|
+
}
|
|
153728
|
+
|
|
153729
|
+
export type PaymentTransactionUncheckedUpdateWithoutTrolleyPaymentsInput = {
|
|
153730
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
153731
|
+
amount?: FloatFieldUpdateOperationsInput | number
|
|
153732
|
+
balance?: FloatFieldUpdateOperationsInput | number
|
|
153733
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
153734
|
+
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
153735
|
+
notes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
153736
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
153737
|
+
accountId?: IntFieldUpdateOperationsInput | number
|
|
153738
|
+
brandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
153739
|
+
creatorId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
153740
|
+
prevTransactionId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
153741
|
+
nextTransaction?: PaymentTransactionUncheckedUpdateOneWithoutPrevTransactionNestedInput
|
|
153742
|
+
}
|
|
153743
|
+
|
|
152224
153744
|
export type OptInCreateWithoutVariablesInput = {
|
|
152225
153745
|
status?: string
|
|
152226
153746
|
created?: Date | string
|
|
@@ -154421,6 +155941,7 @@ export namespace Prisma {
|
|
|
154421
155941
|
brand?: BrandCreateNestedOneWithoutPaymentTransactionsInput
|
|
154422
155942
|
creator?: UserCreateNestedOneWithoutPaymentTransactionsInput
|
|
154423
155943
|
prevTransaction?: PaymentTransactionCreateNestedOneWithoutNextTransactionInput
|
|
155944
|
+
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutPaymentTransactionInput
|
|
154424
155945
|
}
|
|
154425
155946
|
|
|
154426
155947
|
export type PaymentTransactionUncheckedCreateWithoutNextTransactionInput = {
|
|
@@ -154435,6 +155956,7 @@ export namespace Prisma {
|
|
|
154435
155956
|
brandId?: number | null
|
|
154436
155957
|
creatorId?: number | null
|
|
154437
155958
|
prevTransactionId?: number | null
|
|
155959
|
+
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutPaymentTransactionInput
|
|
154438
155960
|
}
|
|
154439
155961
|
|
|
154440
155962
|
export type PaymentTransactionCreateOrConnectWithoutNextTransactionInput = {
|
|
@@ -154453,6 +155975,7 @@ export namespace Prisma {
|
|
|
154453
155975
|
brand?: BrandCreateNestedOneWithoutPaymentTransactionsInput
|
|
154454
155976
|
creator?: UserCreateNestedOneWithoutPaymentTransactionsInput
|
|
154455
155977
|
nextTransaction?: PaymentTransactionCreateNestedOneWithoutPrevTransactionInput
|
|
155978
|
+
trolleyPayments?: TrolleyPaymentCreateNestedManyWithoutPaymentTransactionInput
|
|
154456
155979
|
}
|
|
154457
155980
|
|
|
154458
155981
|
export type PaymentTransactionUncheckedCreateWithoutPrevTransactionInput = {
|
|
@@ -154467,6 +155990,7 @@ export namespace Prisma {
|
|
|
154467
155990
|
brandId?: number | null
|
|
154468
155991
|
creatorId?: number | null
|
|
154469
155992
|
nextTransaction?: PaymentTransactionUncheckedCreateNestedOneWithoutPrevTransactionInput
|
|
155993
|
+
trolleyPayments?: TrolleyPaymentUncheckedCreateNestedManyWithoutPaymentTransactionInput
|
|
154470
155994
|
}
|
|
154471
155995
|
|
|
154472
155996
|
export type PaymentTransactionCreateOrConnectWithoutPrevTransactionInput = {
|
|
@@ -154474,6 +155998,35 @@ export namespace Prisma {
|
|
|
154474
155998
|
create: XOR<PaymentTransactionCreateWithoutPrevTransactionInput, PaymentTransactionUncheckedCreateWithoutPrevTransactionInput>
|
|
154475
155999
|
}
|
|
154476
156000
|
|
|
156001
|
+
export type TrolleyPaymentCreateWithoutPaymentTransactionInput = {
|
|
156002
|
+
paymentId: string
|
|
156003
|
+
type?: $Enums.trolleyPaymentType | null
|
|
156004
|
+
status: $Enums.trolleyPaymentStatus
|
|
156005
|
+
paymentAmount: number
|
|
156006
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
156007
|
+
optIn?: OptInCreateNestedOneWithoutTrolleyPaymentsInput
|
|
156008
|
+
}
|
|
156009
|
+
|
|
156010
|
+
export type TrolleyPaymentUncheckedCreateWithoutPaymentTransactionInput = {
|
|
156011
|
+
id?: number
|
|
156012
|
+
paymentId: string
|
|
156013
|
+
type?: $Enums.trolleyPaymentType | null
|
|
156014
|
+
status: $Enums.trolleyPaymentStatus
|
|
156015
|
+
optInId?: number | null
|
|
156016
|
+
paymentAmount: number
|
|
156017
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
156018
|
+
}
|
|
156019
|
+
|
|
156020
|
+
export type TrolleyPaymentCreateOrConnectWithoutPaymentTransactionInput = {
|
|
156021
|
+
where: TrolleyPaymentWhereUniqueInput
|
|
156022
|
+
create: XOR<TrolleyPaymentCreateWithoutPaymentTransactionInput, TrolleyPaymentUncheckedCreateWithoutPaymentTransactionInput>
|
|
156023
|
+
}
|
|
156024
|
+
|
|
156025
|
+
export type TrolleyPaymentCreateManyPaymentTransactionInputEnvelope = {
|
|
156026
|
+
data: TrolleyPaymentCreateManyPaymentTransactionInput | TrolleyPaymentCreateManyPaymentTransactionInput[]
|
|
156027
|
+
skipDuplicates?: boolean
|
|
156028
|
+
}
|
|
156029
|
+
|
|
154477
156030
|
export type BrandUpsertWithoutPaymentTransactionsInput = {
|
|
154478
156031
|
update: XOR<BrandUpdateWithoutPaymentTransactionsInput, BrandUncheckedUpdateWithoutPaymentTransactionsInput>
|
|
154479
156032
|
create: XOR<BrandCreateWithoutPaymentTransactionsInput, BrandUncheckedCreateWithoutPaymentTransactionsInput>
|
|
@@ -154722,6 +156275,7 @@ export namespace Prisma {
|
|
|
154722
156275
|
brand?: BrandUpdateOneWithoutPaymentTransactionsNestedInput
|
|
154723
156276
|
creator?: UserUpdateOneWithoutPaymentTransactionsNestedInput
|
|
154724
156277
|
prevTransaction?: PaymentTransactionUpdateOneWithoutNextTransactionNestedInput
|
|
156278
|
+
trolleyPayments?: TrolleyPaymentUpdateManyWithoutPaymentTransactionNestedInput
|
|
154725
156279
|
}
|
|
154726
156280
|
|
|
154727
156281
|
export type PaymentTransactionUncheckedUpdateWithoutNextTransactionInput = {
|
|
@@ -154736,6 +156290,7 @@ export namespace Prisma {
|
|
|
154736
156290
|
brandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
154737
156291
|
creatorId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
154738
156292
|
prevTransactionId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
156293
|
+
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutPaymentTransactionNestedInput
|
|
154739
156294
|
}
|
|
154740
156295
|
|
|
154741
156296
|
export type PaymentTransactionUpsertWithoutPrevTransactionInput = {
|
|
@@ -154760,6 +156315,7 @@ export namespace Prisma {
|
|
|
154760
156315
|
brand?: BrandUpdateOneWithoutPaymentTransactionsNestedInput
|
|
154761
156316
|
creator?: UserUpdateOneWithoutPaymentTransactionsNestedInput
|
|
154762
156317
|
nextTransaction?: PaymentTransactionUpdateOneWithoutPrevTransactionNestedInput
|
|
156318
|
+
trolleyPayments?: TrolleyPaymentUpdateManyWithoutPaymentTransactionNestedInput
|
|
154763
156319
|
}
|
|
154764
156320
|
|
|
154765
156321
|
export type PaymentTransactionUncheckedUpdateWithoutPrevTransactionInput = {
|
|
@@ -154774,6 +156330,23 @@ export namespace Prisma {
|
|
|
154774
156330
|
brandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
154775
156331
|
creatorId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
154776
156332
|
nextTransaction?: PaymentTransactionUncheckedUpdateOneWithoutPrevTransactionNestedInput
|
|
156333
|
+
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutPaymentTransactionNestedInput
|
|
156334
|
+
}
|
|
156335
|
+
|
|
156336
|
+
export type TrolleyPaymentUpsertWithWhereUniqueWithoutPaymentTransactionInput = {
|
|
156337
|
+
where: TrolleyPaymentWhereUniqueInput
|
|
156338
|
+
update: XOR<TrolleyPaymentUpdateWithoutPaymentTransactionInput, TrolleyPaymentUncheckedUpdateWithoutPaymentTransactionInput>
|
|
156339
|
+
create: XOR<TrolleyPaymentCreateWithoutPaymentTransactionInput, TrolleyPaymentUncheckedCreateWithoutPaymentTransactionInput>
|
|
156340
|
+
}
|
|
156341
|
+
|
|
156342
|
+
export type TrolleyPaymentUpdateWithWhereUniqueWithoutPaymentTransactionInput = {
|
|
156343
|
+
where: TrolleyPaymentWhereUniqueInput
|
|
156344
|
+
data: XOR<TrolleyPaymentUpdateWithoutPaymentTransactionInput, TrolleyPaymentUncheckedUpdateWithoutPaymentTransactionInput>
|
|
156345
|
+
}
|
|
156346
|
+
|
|
156347
|
+
export type TrolleyPaymentUpdateManyWithWhereWithoutPaymentTransactionInput = {
|
|
156348
|
+
where: TrolleyPaymentScalarWhereInput
|
|
156349
|
+
data: XOR<TrolleyPaymentUpdateManyMutationInput, TrolleyPaymentUncheckedUpdateManyWithoutPaymentTransactionInput>
|
|
154777
156350
|
}
|
|
154778
156351
|
|
|
154779
156352
|
export type OptInCreateWithoutExternalAffiliateClickInput = {
|
|
@@ -169174,6 +170747,7 @@ export namespace Prisma {
|
|
|
169174
170747
|
brand?: BrandUpdateOneWithoutPaymentTransactionsNestedInput
|
|
169175
170748
|
prevTransaction?: PaymentTransactionUpdateOneWithoutNextTransactionNestedInput
|
|
169176
170749
|
nextTransaction?: PaymentTransactionUpdateOneWithoutPrevTransactionNestedInput
|
|
170750
|
+
trolleyPayments?: TrolleyPaymentUpdateManyWithoutPaymentTransactionNestedInput
|
|
169177
170751
|
}
|
|
169178
170752
|
|
|
169179
170753
|
export type PaymentTransactionUncheckedUpdateWithoutCreatorInput = {
|
|
@@ -169188,6 +170762,7 @@ export namespace Prisma {
|
|
|
169188
170762
|
brandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
169189
170763
|
prevTransactionId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
169190
170764
|
nextTransaction?: PaymentTransactionUncheckedUpdateOneWithoutPrevTransactionNestedInput
|
|
170765
|
+
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutPaymentTransactionNestedInput
|
|
169191
170766
|
}
|
|
169192
170767
|
|
|
169193
170768
|
export type PaymentTransactionUncheckedUpdateManyWithoutCreatorInput = {
|
|
@@ -170596,6 +172171,7 @@ export namespace Prisma {
|
|
|
170596
172171
|
creator?: UserUpdateOneWithoutPaymentTransactionsNestedInput
|
|
170597
172172
|
prevTransaction?: PaymentTransactionUpdateOneWithoutNextTransactionNestedInput
|
|
170598
172173
|
nextTransaction?: PaymentTransactionUpdateOneWithoutPrevTransactionNestedInput
|
|
172174
|
+
trolleyPayments?: TrolleyPaymentUpdateManyWithoutPaymentTransactionNestedInput
|
|
170599
172175
|
}
|
|
170600
172176
|
|
|
170601
172177
|
export type PaymentTransactionUncheckedUpdateWithoutBrandInput = {
|
|
@@ -170610,6 +172186,7 @@ export namespace Prisma {
|
|
|
170610
172186
|
creatorId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
170611
172187
|
prevTransactionId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
170612
172188
|
nextTransaction?: PaymentTransactionUncheckedUpdateOneWithoutPrevTransactionNestedInput
|
|
172189
|
+
trolleyPayments?: TrolleyPaymentUncheckedUpdateManyWithoutPaymentTransactionNestedInput
|
|
170613
172190
|
}
|
|
170614
172191
|
|
|
170615
172192
|
export type PaymentTransactionUncheckedUpdateManyWithoutBrandInput = {
|
|
@@ -172646,6 +174223,7 @@ export namespace Prisma {
|
|
|
172646
174223
|
paymentId: string
|
|
172647
174224
|
type?: $Enums.trolleyPaymentType | null
|
|
172648
174225
|
status: $Enums.trolleyPaymentStatus
|
|
174226
|
+
paymentTransactionId?: number | null
|
|
172649
174227
|
paymentAmount: number
|
|
172650
174228
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
172651
174229
|
}
|
|
@@ -172793,6 +174371,7 @@ export namespace Prisma {
|
|
|
172793
174371
|
status?: EnumtrolleyPaymentStatusFieldUpdateOperationsInput | $Enums.trolleyPaymentStatus
|
|
172794
174372
|
paymentAmount?: IntFieldUpdateOperationsInput | number
|
|
172795
174373
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
174374
|
+
paymentTransaction?: PaymentTransactionUpdateOneWithoutTrolleyPaymentsNestedInput
|
|
172796
174375
|
}
|
|
172797
174376
|
|
|
172798
174377
|
export type TrolleyPaymentUncheckedUpdateWithoutOptInInput = {
|
|
@@ -172800,6 +174379,7 @@ export namespace Prisma {
|
|
|
172800
174379
|
paymentId?: StringFieldUpdateOperationsInput | string
|
|
172801
174380
|
type?: NullableEnumtrolleyPaymentTypeFieldUpdateOperationsInput | $Enums.trolleyPaymentType | null
|
|
172802
174381
|
status?: EnumtrolleyPaymentStatusFieldUpdateOperationsInput | $Enums.trolleyPaymentStatus
|
|
174382
|
+
paymentTransactionId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
172803
174383
|
paymentAmount?: IntFieldUpdateOperationsInput | number
|
|
172804
174384
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
172805
174385
|
}
|
|
@@ -172809,6 +174389,7 @@ export namespace Prisma {
|
|
|
172809
174389
|
paymentId?: StringFieldUpdateOperationsInput | string
|
|
172810
174390
|
type?: NullableEnumtrolleyPaymentTypeFieldUpdateOperationsInput | $Enums.trolleyPaymentType | null
|
|
172811
174391
|
status?: EnumtrolleyPaymentStatusFieldUpdateOperationsInput | $Enums.trolleyPaymentStatus
|
|
174392
|
+
paymentTransactionId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
172812
174393
|
paymentAmount?: IntFieldUpdateOperationsInput | number
|
|
172813
174394
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
172814
174395
|
}
|
|
@@ -173083,6 +174664,45 @@ export namespace Prisma {
|
|
|
173083
174664
|
campaignId?: IntFieldUpdateOperationsInput | number
|
|
173084
174665
|
}
|
|
173085
174666
|
|
|
174667
|
+
export type TrolleyPaymentCreateManyPaymentTransactionInput = {
|
|
174668
|
+
id?: number
|
|
174669
|
+
paymentId: string
|
|
174670
|
+
type?: $Enums.trolleyPaymentType | null
|
|
174671
|
+
status: $Enums.trolleyPaymentStatus
|
|
174672
|
+
optInId?: number | null
|
|
174673
|
+
paymentAmount: number
|
|
174674
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
174675
|
+
}
|
|
174676
|
+
|
|
174677
|
+
export type TrolleyPaymentUpdateWithoutPaymentTransactionInput = {
|
|
174678
|
+
paymentId?: StringFieldUpdateOperationsInput | string
|
|
174679
|
+
type?: NullableEnumtrolleyPaymentTypeFieldUpdateOperationsInput | $Enums.trolleyPaymentType | null
|
|
174680
|
+
status?: EnumtrolleyPaymentStatusFieldUpdateOperationsInput | $Enums.trolleyPaymentStatus
|
|
174681
|
+
paymentAmount?: IntFieldUpdateOperationsInput | number
|
|
174682
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
174683
|
+
optIn?: OptInUpdateOneWithoutTrolleyPaymentsNestedInput
|
|
174684
|
+
}
|
|
174685
|
+
|
|
174686
|
+
export type TrolleyPaymentUncheckedUpdateWithoutPaymentTransactionInput = {
|
|
174687
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
174688
|
+
paymentId?: StringFieldUpdateOperationsInput | string
|
|
174689
|
+
type?: NullableEnumtrolleyPaymentTypeFieldUpdateOperationsInput | $Enums.trolleyPaymentType | null
|
|
174690
|
+
status?: EnumtrolleyPaymentStatusFieldUpdateOperationsInput | $Enums.trolleyPaymentStatus
|
|
174691
|
+
optInId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
174692
|
+
paymentAmount?: IntFieldUpdateOperationsInput | number
|
|
174693
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
174694
|
+
}
|
|
174695
|
+
|
|
174696
|
+
export type TrolleyPaymentUncheckedUpdateManyWithoutPaymentTransactionInput = {
|
|
174697
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
174698
|
+
paymentId?: StringFieldUpdateOperationsInput | string
|
|
174699
|
+
type?: NullableEnumtrolleyPaymentTypeFieldUpdateOperationsInput | $Enums.trolleyPaymentType | null
|
|
174700
|
+
status?: EnumtrolleyPaymentStatusFieldUpdateOperationsInput | $Enums.trolleyPaymentStatus
|
|
174701
|
+
optInId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
174702
|
+
paymentAmount?: IntFieldUpdateOperationsInput | number
|
|
174703
|
+
metaData?: JsonNullValueInput | InputJsonValue
|
|
174704
|
+
}
|
|
174705
|
+
|
|
173086
174706
|
export type AffiliateLinkCreateManyBrandAffiliateLinkInput = {
|
|
173087
174707
|
id?: number
|
|
173088
174708
|
created?: Date | string
|
|
@@ -174138,6 +175758,10 @@ export namespace Prisma {
|
|
|
174138
175758
|
* @deprecated Use CountryCountOutputTypeDefaultArgs instead
|
|
174139
175759
|
*/
|
|
174140
175760
|
export type CountryCountOutputTypeArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = CountryCountOutputTypeDefaultArgs<ExtArgs>
|
|
175761
|
+
/**
|
|
175762
|
+
* @deprecated Use PaymentTransactionCountOutputTypeDefaultArgs instead
|
|
175763
|
+
*/
|
|
175764
|
+
export type PaymentTransactionCountOutputTypeArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = PaymentTransactionCountOutputTypeDefaultArgs<ExtArgs>
|
|
174141
175765
|
/**
|
|
174142
175766
|
* @deprecated Use BrandAffiliateLinkCountOutputTypeDefaultArgs instead
|
|
174143
175767
|
*/
|
|
@@ -174542,6 +176166,10 @@ export namespace Prisma {
|
|
|
174542
176166
|
* @deprecated Use SequenceOutboundReplyEmailDefaultArgs instead
|
|
174543
176167
|
*/
|
|
174544
176168
|
export type SequenceOutboundReplyEmailArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = SequenceOutboundReplyEmailDefaultArgs<ExtArgs>
|
|
176169
|
+
/**
|
|
176170
|
+
* @deprecated Use LatestCreatorPaymentTransactionDefaultArgs instead
|
|
176171
|
+
*/
|
|
176172
|
+
export type LatestCreatorPaymentTransactionArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = LatestCreatorPaymentTransactionDefaultArgs<ExtArgs>
|
|
174545
176173
|
|
|
174546
176174
|
/**
|
|
174547
176175
|
* Batch Payload for updateMany & deleteMany & createMany
|