@creator.co/creatorco-prisma-client 1.0.57 → 1.0.59
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 +26 -5
- package/index-browser.js +22 -1
- package/index.d.ts +2042 -126
- package/index.js +26 -5
- package/package.json +1 -1
- package/schema.prisma +48 -31
- package/wasm.js +22 -1
package/index.d.ts
CHANGED
|
@@ -233,6 +233,11 @@ export type Country = $Result.DefaultSelection<Prisma.$CountryPayload>
|
|
|
233
233
|
*
|
|
234
234
|
*/
|
|
235
235
|
export type State = $Result.DefaultSelection<Prisma.$StatePayload>
|
|
236
|
+
/**
|
|
237
|
+
* Model PendingBrandInvoicePayment
|
|
238
|
+
*
|
|
239
|
+
*/
|
|
240
|
+
export type PendingBrandInvoicePayment = $Result.DefaultSelection<Prisma.$PendingBrandInvoicePaymentPayload>
|
|
236
241
|
/**
|
|
237
242
|
* Model PaymentTransaction
|
|
238
243
|
*
|
|
@@ -1025,6 +1030,16 @@ export class PrismaClient<
|
|
|
1025
1030
|
*/
|
|
1026
1031
|
get state(): Prisma.StateDelegate<ExtArgs>;
|
|
1027
1032
|
|
|
1033
|
+
/**
|
|
1034
|
+
* `prisma.pendingBrandInvoicePayment`: Exposes CRUD operations for the **PendingBrandInvoicePayment** model.
|
|
1035
|
+
* Example usage:
|
|
1036
|
+
* ```ts
|
|
1037
|
+
* // Fetch zero or more PendingBrandInvoicePayments
|
|
1038
|
+
* const pendingBrandInvoicePayments = await prisma.pendingBrandInvoicePayment.findMany()
|
|
1039
|
+
* ```
|
|
1040
|
+
*/
|
|
1041
|
+
get pendingBrandInvoicePayment(): Prisma.PendingBrandInvoicePaymentDelegate<ExtArgs>;
|
|
1042
|
+
|
|
1028
1043
|
/**
|
|
1029
1044
|
* `prisma.paymentTransaction`: Exposes CRUD operations for the **PaymentTransaction** model.
|
|
1030
1045
|
* Example usage:
|
|
@@ -1885,6 +1900,7 @@ export namespace Prisma {
|
|
|
1885
1900
|
BrandImage: 'BrandImage',
|
|
1886
1901
|
Country: 'Country',
|
|
1887
1902
|
State: 'State',
|
|
1903
|
+
PendingBrandInvoicePayment: 'PendingBrandInvoicePayment',
|
|
1888
1904
|
PaymentTransaction: 'PaymentTransaction',
|
|
1889
1905
|
ExternalAffiliateClick: 'ExternalAffiliateClick',
|
|
1890
1906
|
BrandAffiliateLink: 'BrandAffiliateLink',
|
|
@@ -1935,7 +1951,7 @@ export namespace Prisma {
|
|
|
1935
1951
|
|
|
1936
1952
|
export type TypeMap<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
1937
1953
|
meta: {
|
|
1938
|
-
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' | 'campaignToSocialPost' | 'archivedSocialPost' | 'image' | 'brandImage' | 'country' | 'state' | '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'
|
|
1954
|
+
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' | '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'
|
|
1939
1955
|
txIsolationLevel: Prisma.TransactionIsolationLevel
|
|
1940
1956
|
},
|
|
1941
1957
|
model: {
|
|
@@ -5019,6 +5035,76 @@ export namespace Prisma {
|
|
|
5019
5035
|
}
|
|
5020
5036
|
}
|
|
5021
5037
|
}
|
|
5038
|
+
PendingBrandInvoicePayment: {
|
|
5039
|
+
payload: Prisma.$PendingBrandInvoicePaymentPayload<ExtArgs>
|
|
5040
|
+
fields: Prisma.PendingBrandInvoicePaymentFieldRefs
|
|
5041
|
+
operations: {
|
|
5042
|
+
findUnique: {
|
|
5043
|
+
args: Prisma.PendingBrandInvoicePaymentFindUniqueArgs<ExtArgs>,
|
|
5044
|
+
result: $Utils.PayloadToResult<Prisma.$PendingBrandInvoicePaymentPayload> | null
|
|
5045
|
+
}
|
|
5046
|
+
findUniqueOrThrow: {
|
|
5047
|
+
args: Prisma.PendingBrandInvoicePaymentFindUniqueOrThrowArgs<ExtArgs>,
|
|
5048
|
+
result: $Utils.PayloadToResult<Prisma.$PendingBrandInvoicePaymentPayload>
|
|
5049
|
+
}
|
|
5050
|
+
findFirst: {
|
|
5051
|
+
args: Prisma.PendingBrandInvoicePaymentFindFirstArgs<ExtArgs>,
|
|
5052
|
+
result: $Utils.PayloadToResult<Prisma.$PendingBrandInvoicePaymentPayload> | null
|
|
5053
|
+
}
|
|
5054
|
+
findFirstOrThrow: {
|
|
5055
|
+
args: Prisma.PendingBrandInvoicePaymentFindFirstOrThrowArgs<ExtArgs>,
|
|
5056
|
+
result: $Utils.PayloadToResult<Prisma.$PendingBrandInvoicePaymentPayload>
|
|
5057
|
+
}
|
|
5058
|
+
findMany: {
|
|
5059
|
+
args: Prisma.PendingBrandInvoicePaymentFindManyArgs<ExtArgs>,
|
|
5060
|
+
result: $Utils.PayloadToResult<Prisma.$PendingBrandInvoicePaymentPayload>[]
|
|
5061
|
+
}
|
|
5062
|
+
create: {
|
|
5063
|
+
args: Prisma.PendingBrandInvoicePaymentCreateArgs<ExtArgs>,
|
|
5064
|
+
result: $Utils.PayloadToResult<Prisma.$PendingBrandInvoicePaymentPayload>
|
|
5065
|
+
}
|
|
5066
|
+
createMany: {
|
|
5067
|
+
args: Prisma.PendingBrandInvoicePaymentCreateManyArgs<ExtArgs>,
|
|
5068
|
+
result: Prisma.BatchPayload
|
|
5069
|
+
}
|
|
5070
|
+
createManyAndReturn: {
|
|
5071
|
+
args: Prisma.PendingBrandInvoicePaymentCreateManyAndReturnArgs<ExtArgs>,
|
|
5072
|
+
result: $Utils.PayloadToResult<Prisma.$PendingBrandInvoicePaymentPayload>[]
|
|
5073
|
+
}
|
|
5074
|
+
delete: {
|
|
5075
|
+
args: Prisma.PendingBrandInvoicePaymentDeleteArgs<ExtArgs>,
|
|
5076
|
+
result: $Utils.PayloadToResult<Prisma.$PendingBrandInvoicePaymentPayload>
|
|
5077
|
+
}
|
|
5078
|
+
update: {
|
|
5079
|
+
args: Prisma.PendingBrandInvoicePaymentUpdateArgs<ExtArgs>,
|
|
5080
|
+
result: $Utils.PayloadToResult<Prisma.$PendingBrandInvoicePaymentPayload>
|
|
5081
|
+
}
|
|
5082
|
+
deleteMany: {
|
|
5083
|
+
args: Prisma.PendingBrandInvoicePaymentDeleteManyArgs<ExtArgs>,
|
|
5084
|
+
result: Prisma.BatchPayload
|
|
5085
|
+
}
|
|
5086
|
+
updateMany: {
|
|
5087
|
+
args: Prisma.PendingBrandInvoicePaymentUpdateManyArgs<ExtArgs>,
|
|
5088
|
+
result: Prisma.BatchPayload
|
|
5089
|
+
}
|
|
5090
|
+
upsert: {
|
|
5091
|
+
args: Prisma.PendingBrandInvoicePaymentUpsertArgs<ExtArgs>,
|
|
5092
|
+
result: $Utils.PayloadToResult<Prisma.$PendingBrandInvoicePaymentPayload>
|
|
5093
|
+
}
|
|
5094
|
+
aggregate: {
|
|
5095
|
+
args: Prisma.PendingBrandInvoicePaymentAggregateArgs<ExtArgs>,
|
|
5096
|
+
result: $Utils.Optional<AggregatePendingBrandInvoicePayment>
|
|
5097
|
+
}
|
|
5098
|
+
groupBy: {
|
|
5099
|
+
args: Prisma.PendingBrandInvoicePaymentGroupByArgs<ExtArgs>,
|
|
5100
|
+
result: $Utils.Optional<PendingBrandInvoicePaymentGroupByOutputType>[]
|
|
5101
|
+
}
|
|
5102
|
+
count: {
|
|
5103
|
+
args: Prisma.PendingBrandInvoicePaymentCountArgs<ExtArgs>,
|
|
5104
|
+
result: $Utils.Optional<PendingBrandInvoicePaymentCountAggregateOutputType> | number
|
|
5105
|
+
}
|
|
5106
|
+
}
|
|
5107
|
+
}
|
|
5022
5108
|
PaymentTransaction: {
|
|
5023
5109
|
payload: Prisma.$PaymentTransactionPayload<ExtArgs>
|
|
5024
5110
|
fields: Prisma.PaymentTransactionFieldRefs
|
|
@@ -7780,6 +7866,7 @@ export namespace Prisma {
|
|
|
7780
7866
|
reportCredits: number
|
|
7781
7867
|
categories: number
|
|
7782
7868
|
paymentTransactions: number
|
|
7869
|
+
PendingBrandInvoicePayments: number
|
|
7783
7870
|
savedfiles: number
|
|
7784
7871
|
creatorLists: number
|
|
7785
7872
|
affiliateLinks: number
|
|
@@ -7804,6 +7891,7 @@ export namespace Prisma {
|
|
|
7804
7891
|
reportCredits?: boolean | BrandCountOutputTypeCountReportCreditsArgs
|
|
7805
7892
|
categories?: boolean | BrandCountOutputTypeCountCategoriesArgs
|
|
7806
7893
|
paymentTransactions?: boolean | BrandCountOutputTypeCountPaymentTransactionsArgs
|
|
7894
|
+
PendingBrandInvoicePayments?: boolean | BrandCountOutputTypeCountPendingBrandInvoicePaymentsArgs
|
|
7807
7895
|
savedfiles?: boolean | BrandCountOutputTypeCountSavedfilesArgs
|
|
7808
7896
|
creatorLists?: boolean | BrandCountOutputTypeCountCreatorListsArgs
|
|
7809
7897
|
affiliateLinks?: boolean | BrandCountOutputTypeCountAffiliateLinksArgs
|
|
@@ -7874,6 +7962,13 @@ export namespace Prisma {
|
|
|
7874
7962
|
where?: PaymentTransactionWhereInput
|
|
7875
7963
|
}
|
|
7876
7964
|
|
|
7965
|
+
/**
|
|
7966
|
+
* BrandCountOutputType without action
|
|
7967
|
+
*/
|
|
7968
|
+
export type BrandCountOutputTypeCountPendingBrandInvoicePaymentsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
7969
|
+
where?: PendingBrandInvoicePaymentWhereInput
|
|
7970
|
+
}
|
|
7971
|
+
|
|
7877
7972
|
/**
|
|
7878
7973
|
* BrandCountOutputType without action
|
|
7879
7974
|
*/
|
|
@@ -21640,6 +21735,7 @@ export namespace Prisma {
|
|
|
21640
21735
|
reportCredits?: boolean | Brand$reportCreditsArgs<ExtArgs>
|
|
21641
21736
|
categories?: boolean | Brand$categoriesArgs<ExtArgs>
|
|
21642
21737
|
paymentTransactions?: boolean | Brand$paymentTransactionsArgs<ExtArgs>
|
|
21738
|
+
PendingBrandInvoicePayments?: boolean | Brand$PendingBrandInvoicePaymentsArgs<ExtArgs>
|
|
21643
21739
|
savedfiles?: boolean | Brand$savedfilesArgs<ExtArgs>
|
|
21644
21740
|
creatorLists?: boolean | Brand$creatorListsArgs<ExtArgs>
|
|
21645
21741
|
affiliateLinks?: boolean | Brand$affiliateLinksArgs<ExtArgs>
|
|
@@ -21706,6 +21802,7 @@ export namespace Prisma {
|
|
|
21706
21802
|
reportCredits?: boolean | Brand$reportCreditsArgs<ExtArgs>
|
|
21707
21803
|
categories?: boolean | Brand$categoriesArgs<ExtArgs>
|
|
21708
21804
|
paymentTransactions?: boolean | Brand$paymentTransactionsArgs<ExtArgs>
|
|
21805
|
+
PendingBrandInvoicePayments?: boolean | Brand$PendingBrandInvoicePaymentsArgs<ExtArgs>
|
|
21709
21806
|
savedfiles?: boolean | Brand$savedfilesArgs<ExtArgs>
|
|
21710
21807
|
creatorLists?: boolean | Brand$creatorListsArgs<ExtArgs>
|
|
21711
21808
|
affiliateLinks?: boolean | Brand$affiliateLinksArgs<ExtArgs>
|
|
@@ -21742,6 +21839,7 @@ export namespace Prisma {
|
|
|
21742
21839
|
reportCredits: Prisma.$ReportCreditsPayload<ExtArgs>[]
|
|
21743
21840
|
categories: Prisma.$BrandToCategoryPayload<ExtArgs>[]
|
|
21744
21841
|
paymentTransactions: Prisma.$PaymentTransactionPayload<ExtArgs>[]
|
|
21842
|
+
PendingBrandInvoicePayments: Prisma.$PendingBrandInvoicePaymentPayload<ExtArgs>[]
|
|
21745
21843
|
savedfiles: Prisma.$SavedFilePayload<ExtArgs>[]
|
|
21746
21844
|
creatorLists: Prisma.$CreatorListPayload<ExtArgs>[]
|
|
21747
21845
|
affiliateLinks: Prisma.$BrandAffiliateLinkPayload<ExtArgs>[]
|
|
@@ -22184,6 +22282,8 @@ export namespace Prisma {
|
|
|
22184
22282
|
|
|
22185
22283
|
paymentTransactions<T extends Brand$paymentTransactionsArgs<ExtArgs> = {}>(args?: Subset<T, Brand$paymentTransactionsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$PaymentTransactionPayload<ExtArgs>, T, 'findMany'> | Null>;
|
|
22186
22284
|
|
|
22285
|
+
PendingBrandInvoicePayments<T extends Brand$PendingBrandInvoicePaymentsArgs<ExtArgs> = {}>(args?: Subset<T, Brand$PendingBrandInvoicePaymentsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$PendingBrandInvoicePaymentPayload<ExtArgs>, T, 'findMany'> | Null>;
|
|
22286
|
+
|
|
22187
22287
|
savedfiles<T extends Brand$savedfilesArgs<ExtArgs> = {}>(args?: Subset<T, Brand$savedfilesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$SavedFilePayload<ExtArgs>, T, 'findMany'> | Null>;
|
|
22188
22288
|
|
|
22189
22289
|
creatorLists<T extends Brand$creatorListsArgs<ExtArgs> = {}>(args?: Subset<T, Brand$creatorListsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CreatorListPayload<ExtArgs>, T, 'findMany'> | Null>;
|
|
@@ -22755,6 +22855,26 @@ export namespace Prisma {
|
|
|
22755
22855
|
distinct?: PaymentTransactionScalarFieldEnum | PaymentTransactionScalarFieldEnum[]
|
|
22756
22856
|
}
|
|
22757
22857
|
|
|
22858
|
+
/**
|
|
22859
|
+
* Brand.PendingBrandInvoicePayments
|
|
22860
|
+
*/
|
|
22861
|
+
export type Brand$PendingBrandInvoicePaymentsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
22862
|
+
/**
|
|
22863
|
+
* Select specific fields to fetch from the PendingBrandInvoicePayment
|
|
22864
|
+
*/
|
|
22865
|
+
select?: PendingBrandInvoicePaymentSelect<ExtArgs> | null
|
|
22866
|
+
/**
|
|
22867
|
+
* Choose, which related nodes to fetch as well
|
|
22868
|
+
*/
|
|
22869
|
+
include?: PendingBrandInvoicePaymentInclude<ExtArgs> | null
|
|
22870
|
+
where?: PendingBrandInvoicePaymentWhereInput
|
|
22871
|
+
orderBy?: PendingBrandInvoicePaymentOrderByWithRelationAndSearchRelevanceInput | PendingBrandInvoicePaymentOrderByWithRelationAndSearchRelevanceInput[]
|
|
22872
|
+
cursor?: PendingBrandInvoicePaymentWhereUniqueInput
|
|
22873
|
+
take?: number
|
|
22874
|
+
skip?: number
|
|
22875
|
+
distinct?: PendingBrandInvoicePaymentScalarFieldEnum | PendingBrandInvoicePaymentScalarFieldEnum[]
|
|
22876
|
+
}
|
|
22877
|
+
|
|
22758
22878
|
/**
|
|
22759
22879
|
* Brand.savedfiles
|
|
22760
22880
|
*/
|
|
@@ -58543,342 +58663,1390 @@ export namespace Prisma {
|
|
|
58543
58663
|
|
|
58544
58664
|
|
|
58545
58665
|
/**
|
|
58546
|
-
* Fields of the State model
|
|
58666
|
+
* Fields of the State model
|
|
58667
|
+
*/
|
|
58668
|
+
interface StateFieldRefs {
|
|
58669
|
+
readonly id: FieldRef<"State", 'Int'>
|
|
58670
|
+
readonly countryId: FieldRef<"State", 'Int'>
|
|
58671
|
+
readonly stateCode: FieldRef<"State", 'String'>
|
|
58672
|
+
readonly stateName: FieldRef<"State", 'String'>
|
|
58673
|
+
}
|
|
58674
|
+
|
|
58675
|
+
|
|
58676
|
+
// Custom InputTypes
|
|
58677
|
+
/**
|
|
58678
|
+
* State findUnique
|
|
58679
|
+
*/
|
|
58680
|
+
export type StateFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58681
|
+
/**
|
|
58682
|
+
* Select specific fields to fetch from the State
|
|
58683
|
+
*/
|
|
58684
|
+
select?: StateSelect<ExtArgs> | null
|
|
58685
|
+
/**
|
|
58686
|
+
* Choose, which related nodes to fetch as well
|
|
58687
|
+
*/
|
|
58688
|
+
include?: StateInclude<ExtArgs> | null
|
|
58689
|
+
/**
|
|
58690
|
+
* Filter, which State to fetch.
|
|
58691
|
+
*/
|
|
58692
|
+
where: StateWhereUniqueInput
|
|
58693
|
+
}
|
|
58694
|
+
|
|
58695
|
+
/**
|
|
58696
|
+
* State findUniqueOrThrow
|
|
58697
|
+
*/
|
|
58698
|
+
export type StateFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58699
|
+
/**
|
|
58700
|
+
* Select specific fields to fetch from the State
|
|
58701
|
+
*/
|
|
58702
|
+
select?: StateSelect<ExtArgs> | null
|
|
58703
|
+
/**
|
|
58704
|
+
* Choose, which related nodes to fetch as well
|
|
58705
|
+
*/
|
|
58706
|
+
include?: StateInclude<ExtArgs> | null
|
|
58707
|
+
/**
|
|
58708
|
+
* Filter, which State to fetch.
|
|
58709
|
+
*/
|
|
58710
|
+
where: StateWhereUniqueInput
|
|
58711
|
+
}
|
|
58712
|
+
|
|
58713
|
+
/**
|
|
58714
|
+
* State findFirst
|
|
58715
|
+
*/
|
|
58716
|
+
export type StateFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58717
|
+
/**
|
|
58718
|
+
* Select specific fields to fetch from the State
|
|
58719
|
+
*/
|
|
58720
|
+
select?: StateSelect<ExtArgs> | null
|
|
58721
|
+
/**
|
|
58722
|
+
* Choose, which related nodes to fetch as well
|
|
58723
|
+
*/
|
|
58724
|
+
include?: StateInclude<ExtArgs> | null
|
|
58725
|
+
/**
|
|
58726
|
+
* Filter, which State to fetch.
|
|
58727
|
+
*/
|
|
58728
|
+
where?: StateWhereInput
|
|
58729
|
+
/**
|
|
58730
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
58731
|
+
*
|
|
58732
|
+
* Determine the order of States to fetch.
|
|
58733
|
+
*/
|
|
58734
|
+
orderBy?: StateOrderByWithRelationAndSearchRelevanceInput | StateOrderByWithRelationAndSearchRelevanceInput[]
|
|
58735
|
+
/**
|
|
58736
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
58737
|
+
*
|
|
58738
|
+
* Sets the position for searching for States.
|
|
58739
|
+
*/
|
|
58740
|
+
cursor?: StateWhereUniqueInput
|
|
58741
|
+
/**
|
|
58742
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
58743
|
+
*
|
|
58744
|
+
* Take `±n` States from the position of the cursor.
|
|
58745
|
+
*/
|
|
58746
|
+
take?: number
|
|
58747
|
+
/**
|
|
58748
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
58749
|
+
*
|
|
58750
|
+
* Skip the first `n` States.
|
|
58751
|
+
*/
|
|
58752
|
+
skip?: number
|
|
58753
|
+
/**
|
|
58754
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
58755
|
+
*
|
|
58756
|
+
* Filter by unique combinations of States.
|
|
58757
|
+
*/
|
|
58758
|
+
distinct?: StateScalarFieldEnum | StateScalarFieldEnum[]
|
|
58759
|
+
}
|
|
58760
|
+
|
|
58761
|
+
/**
|
|
58762
|
+
* State findFirstOrThrow
|
|
58763
|
+
*/
|
|
58764
|
+
export type StateFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58765
|
+
/**
|
|
58766
|
+
* Select specific fields to fetch from the State
|
|
58767
|
+
*/
|
|
58768
|
+
select?: StateSelect<ExtArgs> | null
|
|
58769
|
+
/**
|
|
58770
|
+
* Choose, which related nodes to fetch as well
|
|
58771
|
+
*/
|
|
58772
|
+
include?: StateInclude<ExtArgs> | null
|
|
58773
|
+
/**
|
|
58774
|
+
* Filter, which State to fetch.
|
|
58775
|
+
*/
|
|
58776
|
+
where?: StateWhereInput
|
|
58777
|
+
/**
|
|
58778
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
58779
|
+
*
|
|
58780
|
+
* Determine the order of States to fetch.
|
|
58781
|
+
*/
|
|
58782
|
+
orderBy?: StateOrderByWithRelationAndSearchRelevanceInput | StateOrderByWithRelationAndSearchRelevanceInput[]
|
|
58783
|
+
/**
|
|
58784
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
58785
|
+
*
|
|
58786
|
+
* Sets the position for searching for States.
|
|
58787
|
+
*/
|
|
58788
|
+
cursor?: StateWhereUniqueInput
|
|
58789
|
+
/**
|
|
58790
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
58791
|
+
*
|
|
58792
|
+
* Take `±n` States from the position of the cursor.
|
|
58793
|
+
*/
|
|
58794
|
+
take?: number
|
|
58795
|
+
/**
|
|
58796
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
58797
|
+
*
|
|
58798
|
+
* Skip the first `n` States.
|
|
58799
|
+
*/
|
|
58800
|
+
skip?: number
|
|
58801
|
+
/**
|
|
58802
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
58803
|
+
*
|
|
58804
|
+
* Filter by unique combinations of States.
|
|
58805
|
+
*/
|
|
58806
|
+
distinct?: StateScalarFieldEnum | StateScalarFieldEnum[]
|
|
58807
|
+
}
|
|
58808
|
+
|
|
58809
|
+
/**
|
|
58810
|
+
* State findMany
|
|
58811
|
+
*/
|
|
58812
|
+
export type StateFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58813
|
+
/**
|
|
58814
|
+
* Select specific fields to fetch from the State
|
|
58815
|
+
*/
|
|
58816
|
+
select?: StateSelect<ExtArgs> | null
|
|
58817
|
+
/**
|
|
58818
|
+
* Choose, which related nodes to fetch as well
|
|
58819
|
+
*/
|
|
58820
|
+
include?: StateInclude<ExtArgs> | null
|
|
58821
|
+
/**
|
|
58822
|
+
* Filter, which States to fetch.
|
|
58823
|
+
*/
|
|
58824
|
+
where?: StateWhereInput
|
|
58825
|
+
/**
|
|
58826
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
58827
|
+
*
|
|
58828
|
+
* Determine the order of States to fetch.
|
|
58829
|
+
*/
|
|
58830
|
+
orderBy?: StateOrderByWithRelationAndSearchRelevanceInput | StateOrderByWithRelationAndSearchRelevanceInput[]
|
|
58831
|
+
/**
|
|
58832
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
58833
|
+
*
|
|
58834
|
+
* Sets the position for listing States.
|
|
58835
|
+
*/
|
|
58836
|
+
cursor?: StateWhereUniqueInput
|
|
58837
|
+
/**
|
|
58838
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
58839
|
+
*
|
|
58840
|
+
* Take `±n` States from the position of the cursor.
|
|
58841
|
+
*/
|
|
58842
|
+
take?: number
|
|
58843
|
+
/**
|
|
58844
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
58845
|
+
*
|
|
58846
|
+
* Skip the first `n` States.
|
|
58847
|
+
*/
|
|
58848
|
+
skip?: number
|
|
58849
|
+
distinct?: StateScalarFieldEnum | StateScalarFieldEnum[]
|
|
58850
|
+
}
|
|
58851
|
+
|
|
58852
|
+
/**
|
|
58853
|
+
* State create
|
|
58854
|
+
*/
|
|
58855
|
+
export type StateCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58856
|
+
/**
|
|
58857
|
+
* Select specific fields to fetch from the State
|
|
58858
|
+
*/
|
|
58859
|
+
select?: StateSelect<ExtArgs> | null
|
|
58860
|
+
/**
|
|
58861
|
+
* Choose, which related nodes to fetch as well
|
|
58862
|
+
*/
|
|
58863
|
+
include?: StateInclude<ExtArgs> | null
|
|
58864
|
+
/**
|
|
58865
|
+
* The data needed to create a State.
|
|
58866
|
+
*/
|
|
58867
|
+
data: XOR<StateCreateInput, StateUncheckedCreateInput>
|
|
58868
|
+
}
|
|
58869
|
+
|
|
58870
|
+
/**
|
|
58871
|
+
* State createMany
|
|
58872
|
+
*/
|
|
58873
|
+
export type StateCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58874
|
+
/**
|
|
58875
|
+
* The data used to create many States.
|
|
58876
|
+
*/
|
|
58877
|
+
data: StateCreateManyInput | StateCreateManyInput[]
|
|
58878
|
+
skipDuplicates?: boolean
|
|
58879
|
+
}
|
|
58880
|
+
|
|
58881
|
+
/**
|
|
58882
|
+
* State createManyAndReturn
|
|
58883
|
+
*/
|
|
58884
|
+
export type StateCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58885
|
+
/**
|
|
58886
|
+
* Select specific fields to fetch from the State
|
|
58887
|
+
*/
|
|
58888
|
+
select?: StateSelectCreateManyAndReturn<ExtArgs> | null
|
|
58889
|
+
/**
|
|
58890
|
+
* The data used to create many States.
|
|
58891
|
+
*/
|
|
58892
|
+
data: StateCreateManyInput | StateCreateManyInput[]
|
|
58893
|
+
skipDuplicates?: boolean
|
|
58894
|
+
/**
|
|
58895
|
+
* Choose, which related nodes to fetch as well
|
|
58896
|
+
*/
|
|
58897
|
+
include?: StateIncludeCreateManyAndReturn<ExtArgs> | null
|
|
58898
|
+
}
|
|
58899
|
+
|
|
58900
|
+
/**
|
|
58901
|
+
* State update
|
|
58902
|
+
*/
|
|
58903
|
+
export type StateUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58904
|
+
/**
|
|
58905
|
+
* Select specific fields to fetch from the State
|
|
58906
|
+
*/
|
|
58907
|
+
select?: StateSelect<ExtArgs> | null
|
|
58908
|
+
/**
|
|
58909
|
+
* Choose, which related nodes to fetch as well
|
|
58910
|
+
*/
|
|
58911
|
+
include?: StateInclude<ExtArgs> | null
|
|
58912
|
+
/**
|
|
58913
|
+
* The data needed to update a State.
|
|
58914
|
+
*/
|
|
58915
|
+
data: XOR<StateUpdateInput, StateUncheckedUpdateInput>
|
|
58916
|
+
/**
|
|
58917
|
+
* Choose, which State to update.
|
|
58918
|
+
*/
|
|
58919
|
+
where: StateWhereUniqueInput
|
|
58920
|
+
}
|
|
58921
|
+
|
|
58922
|
+
/**
|
|
58923
|
+
* State updateMany
|
|
58924
|
+
*/
|
|
58925
|
+
export type StateUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58926
|
+
/**
|
|
58927
|
+
* The data used to update States.
|
|
58928
|
+
*/
|
|
58929
|
+
data: XOR<StateUpdateManyMutationInput, StateUncheckedUpdateManyInput>
|
|
58930
|
+
/**
|
|
58931
|
+
* Filter which States to update
|
|
58932
|
+
*/
|
|
58933
|
+
where?: StateWhereInput
|
|
58934
|
+
}
|
|
58935
|
+
|
|
58936
|
+
/**
|
|
58937
|
+
* State upsert
|
|
58938
|
+
*/
|
|
58939
|
+
export type StateUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58940
|
+
/**
|
|
58941
|
+
* Select specific fields to fetch from the State
|
|
58942
|
+
*/
|
|
58943
|
+
select?: StateSelect<ExtArgs> | null
|
|
58944
|
+
/**
|
|
58945
|
+
* Choose, which related nodes to fetch as well
|
|
58946
|
+
*/
|
|
58947
|
+
include?: StateInclude<ExtArgs> | null
|
|
58948
|
+
/**
|
|
58949
|
+
* The filter to search for the State to update in case it exists.
|
|
58950
|
+
*/
|
|
58951
|
+
where: StateWhereUniqueInput
|
|
58952
|
+
/**
|
|
58953
|
+
* In case the State found by the `where` argument doesn't exist, create a new State with this data.
|
|
58954
|
+
*/
|
|
58955
|
+
create: XOR<StateCreateInput, StateUncheckedCreateInput>
|
|
58956
|
+
/**
|
|
58957
|
+
* In case the State was found with the provided `where` argument, update it with this data.
|
|
58958
|
+
*/
|
|
58959
|
+
update: XOR<StateUpdateInput, StateUncheckedUpdateInput>
|
|
58960
|
+
}
|
|
58961
|
+
|
|
58962
|
+
/**
|
|
58963
|
+
* State delete
|
|
58964
|
+
*/
|
|
58965
|
+
export type StateDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58966
|
+
/**
|
|
58967
|
+
* Select specific fields to fetch from the State
|
|
58968
|
+
*/
|
|
58969
|
+
select?: StateSelect<ExtArgs> | null
|
|
58970
|
+
/**
|
|
58971
|
+
* Choose, which related nodes to fetch as well
|
|
58972
|
+
*/
|
|
58973
|
+
include?: StateInclude<ExtArgs> | null
|
|
58974
|
+
/**
|
|
58975
|
+
* Filter which State to delete.
|
|
58976
|
+
*/
|
|
58977
|
+
where: StateWhereUniqueInput
|
|
58978
|
+
}
|
|
58979
|
+
|
|
58980
|
+
/**
|
|
58981
|
+
* State deleteMany
|
|
58982
|
+
*/
|
|
58983
|
+
export type StateDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58984
|
+
/**
|
|
58985
|
+
* Filter which States to delete
|
|
58986
|
+
*/
|
|
58987
|
+
where?: StateWhereInput
|
|
58988
|
+
}
|
|
58989
|
+
|
|
58990
|
+
/**
|
|
58991
|
+
* State without action
|
|
58992
|
+
*/
|
|
58993
|
+
export type StateDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58994
|
+
/**
|
|
58995
|
+
* Select specific fields to fetch from the State
|
|
58996
|
+
*/
|
|
58997
|
+
select?: StateSelect<ExtArgs> | null
|
|
58998
|
+
/**
|
|
58999
|
+
* Choose, which related nodes to fetch as well
|
|
59000
|
+
*/
|
|
59001
|
+
include?: StateInclude<ExtArgs> | null
|
|
59002
|
+
}
|
|
59003
|
+
|
|
59004
|
+
|
|
59005
|
+
/**
|
|
59006
|
+
* Model PendingBrandInvoicePayment
|
|
59007
|
+
*/
|
|
59008
|
+
|
|
59009
|
+
export type AggregatePendingBrandInvoicePayment = {
|
|
59010
|
+
_count: PendingBrandInvoicePaymentCountAggregateOutputType | null
|
|
59011
|
+
_avg: PendingBrandInvoicePaymentAvgAggregateOutputType | null
|
|
59012
|
+
_sum: PendingBrandInvoicePaymentSumAggregateOutputType | null
|
|
59013
|
+
_min: PendingBrandInvoicePaymentMinAggregateOutputType | null
|
|
59014
|
+
_max: PendingBrandInvoicePaymentMaxAggregateOutputType | null
|
|
59015
|
+
}
|
|
59016
|
+
|
|
59017
|
+
export type PendingBrandInvoicePaymentAvgAggregateOutputType = {
|
|
59018
|
+
id: number | null
|
|
59019
|
+
brandId: number | null
|
|
59020
|
+
}
|
|
59021
|
+
|
|
59022
|
+
export type PendingBrandInvoicePaymentSumAggregateOutputType = {
|
|
59023
|
+
id: number | null
|
|
59024
|
+
brandId: number | null
|
|
59025
|
+
}
|
|
59026
|
+
|
|
59027
|
+
export type PendingBrandInvoicePaymentMinAggregateOutputType = {
|
|
59028
|
+
id: number | null
|
|
59029
|
+
invoiceId: string | null
|
|
59030
|
+
type: string | null
|
|
59031
|
+
source: string | null
|
|
59032
|
+
brandId: number | null
|
|
59033
|
+
status: string | null
|
|
59034
|
+
createdAt: Date | null
|
|
59035
|
+
updatedAt: Date | null
|
|
59036
|
+
}
|
|
59037
|
+
|
|
59038
|
+
export type PendingBrandInvoicePaymentMaxAggregateOutputType = {
|
|
59039
|
+
id: number | null
|
|
59040
|
+
invoiceId: string | null
|
|
59041
|
+
type: string | null
|
|
59042
|
+
source: string | null
|
|
59043
|
+
brandId: number | null
|
|
59044
|
+
status: string | null
|
|
59045
|
+
createdAt: Date | null
|
|
59046
|
+
updatedAt: Date | null
|
|
59047
|
+
}
|
|
59048
|
+
|
|
59049
|
+
export type PendingBrandInvoicePaymentCountAggregateOutputType = {
|
|
59050
|
+
id: number
|
|
59051
|
+
invoiceId: number
|
|
59052
|
+
type: number
|
|
59053
|
+
source: number
|
|
59054
|
+
brandId: number
|
|
59055
|
+
status: number
|
|
59056
|
+
createdAt: number
|
|
59057
|
+
updatedAt: number
|
|
59058
|
+
_all: number
|
|
59059
|
+
}
|
|
59060
|
+
|
|
59061
|
+
|
|
59062
|
+
export type PendingBrandInvoicePaymentAvgAggregateInputType = {
|
|
59063
|
+
id?: true
|
|
59064
|
+
brandId?: true
|
|
59065
|
+
}
|
|
59066
|
+
|
|
59067
|
+
export type PendingBrandInvoicePaymentSumAggregateInputType = {
|
|
59068
|
+
id?: true
|
|
59069
|
+
brandId?: true
|
|
59070
|
+
}
|
|
59071
|
+
|
|
59072
|
+
export type PendingBrandInvoicePaymentMinAggregateInputType = {
|
|
59073
|
+
id?: true
|
|
59074
|
+
invoiceId?: true
|
|
59075
|
+
type?: true
|
|
59076
|
+
source?: true
|
|
59077
|
+
brandId?: true
|
|
59078
|
+
status?: true
|
|
59079
|
+
createdAt?: true
|
|
59080
|
+
updatedAt?: true
|
|
59081
|
+
}
|
|
59082
|
+
|
|
59083
|
+
export type PendingBrandInvoicePaymentMaxAggregateInputType = {
|
|
59084
|
+
id?: true
|
|
59085
|
+
invoiceId?: true
|
|
59086
|
+
type?: true
|
|
59087
|
+
source?: true
|
|
59088
|
+
brandId?: true
|
|
59089
|
+
status?: true
|
|
59090
|
+
createdAt?: true
|
|
59091
|
+
updatedAt?: true
|
|
59092
|
+
}
|
|
59093
|
+
|
|
59094
|
+
export type PendingBrandInvoicePaymentCountAggregateInputType = {
|
|
59095
|
+
id?: true
|
|
59096
|
+
invoiceId?: true
|
|
59097
|
+
type?: true
|
|
59098
|
+
source?: true
|
|
59099
|
+
brandId?: true
|
|
59100
|
+
status?: true
|
|
59101
|
+
createdAt?: true
|
|
59102
|
+
updatedAt?: true
|
|
59103
|
+
_all?: true
|
|
59104
|
+
}
|
|
59105
|
+
|
|
59106
|
+
export type PendingBrandInvoicePaymentAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
59107
|
+
/**
|
|
59108
|
+
* Filter which PendingBrandInvoicePayment to aggregate.
|
|
59109
|
+
*/
|
|
59110
|
+
where?: PendingBrandInvoicePaymentWhereInput
|
|
59111
|
+
/**
|
|
59112
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
59113
|
+
*
|
|
59114
|
+
* Determine the order of PendingBrandInvoicePayments to fetch.
|
|
59115
|
+
*/
|
|
59116
|
+
orderBy?: PendingBrandInvoicePaymentOrderByWithRelationAndSearchRelevanceInput | PendingBrandInvoicePaymentOrderByWithRelationAndSearchRelevanceInput[]
|
|
59117
|
+
/**
|
|
59118
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
59119
|
+
*
|
|
59120
|
+
* Sets the start position
|
|
59121
|
+
*/
|
|
59122
|
+
cursor?: PendingBrandInvoicePaymentWhereUniqueInput
|
|
59123
|
+
/**
|
|
59124
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
59125
|
+
*
|
|
59126
|
+
* Take `±n` PendingBrandInvoicePayments from the position of the cursor.
|
|
59127
|
+
*/
|
|
59128
|
+
take?: number
|
|
59129
|
+
/**
|
|
59130
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
59131
|
+
*
|
|
59132
|
+
* Skip the first `n` PendingBrandInvoicePayments.
|
|
59133
|
+
*/
|
|
59134
|
+
skip?: number
|
|
59135
|
+
/**
|
|
59136
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
59137
|
+
*
|
|
59138
|
+
* Count returned PendingBrandInvoicePayments
|
|
59139
|
+
**/
|
|
59140
|
+
_count?: true | PendingBrandInvoicePaymentCountAggregateInputType
|
|
59141
|
+
/**
|
|
59142
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
59143
|
+
*
|
|
59144
|
+
* Select which fields to average
|
|
59145
|
+
**/
|
|
59146
|
+
_avg?: PendingBrandInvoicePaymentAvgAggregateInputType
|
|
59147
|
+
/**
|
|
59148
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
59149
|
+
*
|
|
59150
|
+
* Select which fields to sum
|
|
59151
|
+
**/
|
|
59152
|
+
_sum?: PendingBrandInvoicePaymentSumAggregateInputType
|
|
59153
|
+
/**
|
|
59154
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
59155
|
+
*
|
|
59156
|
+
* Select which fields to find the minimum value
|
|
59157
|
+
**/
|
|
59158
|
+
_min?: PendingBrandInvoicePaymentMinAggregateInputType
|
|
59159
|
+
/**
|
|
59160
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
59161
|
+
*
|
|
59162
|
+
* Select which fields to find the maximum value
|
|
59163
|
+
**/
|
|
59164
|
+
_max?: PendingBrandInvoicePaymentMaxAggregateInputType
|
|
59165
|
+
}
|
|
59166
|
+
|
|
59167
|
+
export type GetPendingBrandInvoicePaymentAggregateType<T extends PendingBrandInvoicePaymentAggregateArgs> = {
|
|
59168
|
+
[P in keyof T & keyof AggregatePendingBrandInvoicePayment]: P extends '_count' | 'count'
|
|
59169
|
+
? T[P] extends true
|
|
59170
|
+
? number
|
|
59171
|
+
: GetScalarType<T[P], AggregatePendingBrandInvoicePayment[P]>
|
|
59172
|
+
: GetScalarType<T[P], AggregatePendingBrandInvoicePayment[P]>
|
|
59173
|
+
}
|
|
59174
|
+
|
|
59175
|
+
|
|
59176
|
+
|
|
59177
|
+
|
|
59178
|
+
export type PendingBrandInvoicePaymentGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
59179
|
+
where?: PendingBrandInvoicePaymentWhereInput
|
|
59180
|
+
orderBy?: PendingBrandInvoicePaymentOrderByWithAggregationInput | PendingBrandInvoicePaymentOrderByWithAggregationInput[]
|
|
59181
|
+
by: PendingBrandInvoicePaymentScalarFieldEnum[] | PendingBrandInvoicePaymentScalarFieldEnum
|
|
59182
|
+
having?: PendingBrandInvoicePaymentScalarWhereWithAggregatesInput
|
|
59183
|
+
take?: number
|
|
59184
|
+
skip?: number
|
|
59185
|
+
_count?: PendingBrandInvoicePaymentCountAggregateInputType | true
|
|
59186
|
+
_avg?: PendingBrandInvoicePaymentAvgAggregateInputType
|
|
59187
|
+
_sum?: PendingBrandInvoicePaymentSumAggregateInputType
|
|
59188
|
+
_min?: PendingBrandInvoicePaymentMinAggregateInputType
|
|
59189
|
+
_max?: PendingBrandInvoicePaymentMaxAggregateInputType
|
|
59190
|
+
}
|
|
59191
|
+
|
|
59192
|
+
export type PendingBrandInvoicePaymentGroupByOutputType = {
|
|
59193
|
+
id: number
|
|
59194
|
+
invoiceId: string
|
|
59195
|
+
type: string
|
|
59196
|
+
source: string
|
|
59197
|
+
brandId: number | null
|
|
59198
|
+
status: string
|
|
59199
|
+
createdAt: Date
|
|
59200
|
+
updatedAt: Date
|
|
59201
|
+
_count: PendingBrandInvoicePaymentCountAggregateOutputType | null
|
|
59202
|
+
_avg: PendingBrandInvoicePaymentAvgAggregateOutputType | null
|
|
59203
|
+
_sum: PendingBrandInvoicePaymentSumAggregateOutputType | null
|
|
59204
|
+
_min: PendingBrandInvoicePaymentMinAggregateOutputType | null
|
|
59205
|
+
_max: PendingBrandInvoicePaymentMaxAggregateOutputType | null
|
|
59206
|
+
}
|
|
59207
|
+
|
|
59208
|
+
type GetPendingBrandInvoicePaymentGroupByPayload<T extends PendingBrandInvoicePaymentGroupByArgs> = Prisma.PrismaPromise<
|
|
59209
|
+
Array<
|
|
59210
|
+
PickEnumerable<PendingBrandInvoicePaymentGroupByOutputType, T['by']> &
|
|
59211
|
+
{
|
|
59212
|
+
[P in ((keyof T) & (keyof PendingBrandInvoicePaymentGroupByOutputType))]: P extends '_count'
|
|
59213
|
+
? T[P] extends boolean
|
|
59214
|
+
? number
|
|
59215
|
+
: GetScalarType<T[P], PendingBrandInvoicePaymentGroupByOutputType[P]>
|
|
59216
|
+
: GetScalarType<T[P], PendingBrandInvoicePaymentGroupByOutputType[P]>
|
|
59217
|
+
}
|
|
59218
|
+
>
|
|
59219
|
+
>
|
|
59220
|
+
|
|
59221
|
+
|
|
59222
|
+
export type PendingBrandInvoicePaymentSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
59223
|
+
id?: boolean
|
|
59224
|
+
invoiceId?: boolean
|
|
59225
|
+
type?: boolean
|
|
59226
|
+
source?: boolean
|
|
59227
|
+
brandId?: boolean
|
|
59228
|
+
status?: boolean
|
|
59229
|
+
createdAt?: boolean
|
|
59230
|
+
updatedAt?: boolean
|
|
59231
|
+
brand?: boolean | PendingBrandInvoicePayment$brandArgs<ExtArgs>
|
|
59232
|
+
}, ExtArgs["result"]["pendingBrandInvoicePayment"]>
|
|
59233
|
+
|
|
59234
|
+
export type PendingBrandInvoicePaymentSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
59235
|
+
id?: boolean
|
|
59236
|
+
invoiceId?: boolean
|
|
59237
|
+
type?: boolean
|
|
59238
|
+
source?: boolean
|
|
59239
|
+
brandId?: boolean
|
|
59240
|
+
status?: boolean
|
|
59241
|
+
createdAt?: boolean
|
|
59242
|
+
updatedAt?: boolean
|
|
59243
|
+
brand?: boolean | PendingBrandInvoicePayment$brandArgs<ExtArgs>
|
|
59244
|
+
}, ExtArgs["result"]["pendingBrandInvoicePayment"]>
|
|
59245
|
+
|
|
59246
|
+
export type PendingBrandInvoicePaymentSelectScalar = {
|
|
59247
|
+
id?: boolean
|
|
59248
|
+
invoiceId?: boolean
|
|
59249
|
+
type?: boolean
|
|
59250
|
+
source?: boolean
|
|
59251
|
+
brandId?: boolean
|
|
59252
|
+
status?: boolean
|
|
59253
|
+
createdAt?: boolean
|
|
59254
|
+
updatedAt?: boolean
|
|
59255
|
+
}
|
|
59256
|
+
|
|
59257
|
+
export type PendingBrandInvoicePaymentInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
59258
|
+
brand?: boolean | PendingBrandInvoicePayment$brandArgs<ExtArgs>
|
|
59259
|
+
}
|
|
59260
|
+
export type PendingBrandInvoicePaymentIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
59261
|
+
brand?: boolean | PendingBrandInvoicePayment$brandArgs<ExtArgs>
|
|
59262
|
+
}
|
|
59263
|
+
|
|
59264
|
+
export type $PendingBrandInvoicePaymentPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
59265
|
+
name: "PendingBrandInvoicePayment"
|
|
59266
|
+
objects: {
|
|
59267
|
+
brand: Prisma.$BrandPayload<ExtArgs> | null
|
|
59268
|
+
}
|
|
59269
|
+
scalars: $Extensions.GetPayloadResult<{
|
|
59270
|
+
id: number
|
|
59271
|
+
invoiceId: string
|
|
59272
|
+
type: string
|
|
59273
|
+
source: string
|
|
59274
|
+
brandId: number | null
|
|
59275
|
+
status: string
|
|
59276
|
+
createdAt: Date
|
|
59277
|
+
updatedAt: Date
|
|
59278
|
+
}, ExtArgs["result"]["pendingBrandInvoicePayment"]>
|
|
59279
|
+
composites: {}
|
|
59280
|
+
}
|
|
59281
|
+
|
|
59282
|
+
type PendingBrandInvoicePaymentGetPayload<S extends boolean | null | undefined | PendingBrandInvoicePaymentDefaultArgs> = $Result.GetResult<Prisma.$PendingBrandInvoicePaymentPayload, S>
|
|
59283
|
+
|
|
59284
|
+
type PendingBrandInvoicePaymentCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
59285
|
+
Omit<PendingBrandInvoicePaymentFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
59286
|
+
select?: PendingBrandInvoicePaymentCountAggregateInputType | true
|
|
59287
|
+
}
|
|
59288
|
+
|
|
59289
|
+
export interface PendingBrandInvoicePaymentDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
59290
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['PendingBrandInvoicePayment'], meta: { name: 'PendingBrandInvoicePayment' } }
|
|
59291
|
+
/**
|
|
59292
|
+
* Find zero or one PendingBrandInvoicePayment that matches the filter.
|
|
59293
|
+
* @param {PendingBrandInvoicePaymentFindUniqueArgs} args - Arguments to find a PendingBrandInvoicePayment
|
|
59294
|
+
* @example
|
|
59295
|
+
* // Get one PendingBrandInvoicePayment
|
|
59296
|
+
* const pendingBrandInvoicePayment = await prisma.pendingBrandInvoicePayment.findUnique({
|
|
59297
|
+
* where: {
|
|
59298
|
+
* // ... provide filter here
|
|
59299
|
+
* }
|
|
59300
|
+
* })
|
|
59301
|
+
**/
|
|
59302
|
+
findUnique<T extends PendingBrandInvoicePaymentFindUniqueArgs<ExtArgs>>(
|
|
59303
|
+
args: SelectSubset<T, PendingBrandInvoicePaymentFindUniqueArgs<ExtArgs>>
|
|
59304
|
+
): Prisma__PendingBrandInvoicePaymentClient<$Result.GetResult<Prisma.$PendingBrandInvoicePaymentPayload<ExtArgs>, T, 'findUnique'> | null, null, ExtArgs>
|
|
59305
|
+
|
|
59306
|
+
/**
|
|
59307
|
+
* Find one PendingBrandInvoicePayment that matches the filter or throw an error with `error.code='P2025'`
|
|
59308
|
+
* if no matches were found.
|
|
59309
|
+
* @param {PendingBrandInvoicePaymentFindUniqueOrThrowArgs} args - Arguments to find a PendingBrandInvoicePayment
|
|
59310
|
+
* @example
|
|
59311
|
+
* // Get one PendingBrandInvoicePayment
|
|
59312
|
+
* const pendingBrandInvoicePayment = await prisma.pendingBrandInvoicePayment.findUniqueOrThrow({
|
|
59313
|
+
* where: {
|
|
59314
|
+
* // ... provide filter here
|
|
59315
|
+
* }
|
|
59316
|
+
* })
|
|
59317
|
+
**/
|
|
59318
|
+
findUniqueOrThrow<T extends PendingBrandInvoicePaymentFindUniqueOrThrowArgs<ExtArgs>>(
|
|
59319
|
+
args?: SelectSubset<T, PendingBrandInvoicePaymentFindUniqueOrThrowArgs<ExtArgs>>
|
|
59320
|
+
): Prisma__PendingBrandInvoicePaymentClient<$Result.GetResult<Prisma.$PendingBrandInvoicePaymentPayload<ExtArgs>, T, 'findUniqueOrThrow'>, never, ExtArgs>
|
|
59321
|
+
|
|
59322
|
+
/**
|
|
59323
|
+
* Find the first PendingBrandInvoicePayment that matches the filter.
|
|
59324
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
59325
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
59326
|
+
* @param {PendingBrandInvoicePaymentFindFirstArgs} args - Arguments to find a PendingBrandInvoicePayment
|
|
59327
|
+
* @example
|
|
59328
|
+
* // Get one PendingBrandInvoicePayment
|
|
59329
|
+
* const pendingBrandInvoicePayment = await prisma.pendingBrandInvoicePayment.findFirst({
|
|
59330
|
+
* where: {
|
|
59331
|
+
* // ... provide filter here
|
|
59332
|
+
* }
|
|
59333
|
+
* })
|
|
59334
|
+
**/
|
|
59335
|
+
findFirst<T extends PendingBrandInvoicePaymentFindFirstArgs<ExtArgs>>(
|
|
59336
|
+
args?: SelectSubset<T, PendingBrandInvoicePaymentFindFirstArgs<ExtArgs>>
|
|
59337
|
+
): Prisma__PendingBrandInvoicePaymentClient<$Result.GetResult<Prisma.$PendingBrandInvoicePaymentPayload<ExtArgs>, T, 'findFirst'> | null, null, ExtArgs>
|
|
59338
|
+
|
|
59339
|
+
/**
|
|
59340
|
+
* Find the first PendingBrandInvoicePayment that matches the filter or
|
|
59341
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
59342
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
59343
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
59344
|
+
* @param {PendingBrandInvoicePaymentFindFirstOrThrowArgs} args - Arguments to find a PendingBrandInvoicePayment
|
|
59345
|
+
* @example
|
|
59346
|
+
* // Get one PendingBrandInvoicePayment
|
|
59347
|
+
* const pendingBrandInvoicePayment = await prisma.pendingBrandInvoicePayment.findFirstOrThrow({
|
|
59348
|
+
* where: {
|
|
59349
|
+
* // ... provide filter here
|
|
59350
|
+
* }
|
|
59351
|
+
* })
|
|
59352
|
+
**/
|
|
59353
|
+
findFirstOrThrow<T extends PendingBrandInvoicePaymentFindFirstOrThrowArgs<ExtArgs>>(
|
|
59354
|
+
args?: SelectSubset<T, PendingBrandInvoicePaymentFindFirstOrThrowArgs<ExtArgs>>
|
|
59355
|
+
): Prisma__PendingBrandInvoicePaymentClient<$Result.GetResult<Prisma.$PendingBrandInvoicePaymentPayload<ExtArgs>, T, 'findFirstOrThrow'>, never, ExtArgs>
|
|
59356
|
+
|
|
59357
|
+
/**
|
|
59358
|
+
* Find zero or more PendingBrandInvoicePayments that matches the filter.
|
|
59359
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
59360
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
59361
|
+
* @param {PendingBrandInvoicePaymentFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
59362
|
+
* @example
|
|
59363
|
+
* // Get all PendingBrandInvoicePayments
|
|
59364
|
+
* const pendingBrandInvoicePayments = await prisma.pendingBrandInvoicePayment.findMany()
|
|
59365
|
+
*
|
|
59366
|
+
* // Get first 10 PendingBrandInvoicePayments
|
|
59367
|
+
* const pendingBrandInvoicePayments = await prisma.pendingBrandInvoicePayment.findMany({ take: 10 })
|
|
59368
|
+
*
|
|
59369
|
+
* // Only select the `id`
|
|
59370
|
+
* const pendingBrandInvoicePaymentWithIdOnly = await prisma.pendingBrandInvoicePayment.findMany({ select: { id: true } })
|
|
59371
|
+
*
|
|
59372
|
+
**/
|
|
59373
|
+
findMany<T extends PendingBrandInvoicePaymentFindManyArgs<ExtArgs>>(
|
|
59374
|
+
args?: SelectSubset<T, PendingBrandInvoicePaymentFindManyArgs<ExtArgs>>
|
|
59375
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$PendingBrandInvoicePaymentPayload<ExtArgs>, T, 'findMany'>>
|
|
59376
|
+
|
|
59377
|
+
/**
|
|
59378
|
+
* Create a PendingBrandInvoicePayment.
|
|
59379
|
+
* @param {PendingBrandInvoicePaymentCreateArgs} args - Arguments to create a PendingBrandInvoicePayment.
|
|
59380
|
+
* @example
|
|
59381
|
+
* // Create one PendingBrandInvoicePayment
|
|
59382
|
+
* const PendingBrandInvoicePayment = await prisma.pendingBrandInvoicePayment.create({
|
|
59383
|
+
* data: {
|
|
59384
|
+
* // ... data to create a PendingBrandInvoicePayment
|
|
59385
|
+
* }
|
|
59386
|
+
* })
|
|
59387
|
+
*
|
|
59388
|
+
**/
|
|
59389
|
+
create<T extends PendingBrandInvoicePaymentCreateArgs<ExtArgs>>(
|
|
59390
|
+
args: SelectSubset<T, PendingBrandInvoicePaymentCreateArgs<ExtArgs>>
|
|
59391
|
+
): Prisma__PendingBrandInvoicePaymentClient<$Result.GetResult<Prisma.$PendingBrandInvoicePaymentPayload<ExtArgs>, T, 'create'>, never, ExtArgs>
|
|
59392
|
+
|
|
59393
|
+
/**
|
|
59394
|
+
* Create many PendingBrandInvoicePayments.
|
|
59395
|
+
* @param {PendingBrandInvoicePaymentCreateManyArgs} args - Arguments to create many PendingBrandInvoicePayments.
|
|
59396
|
+
* @example
|
|
59397
|
+
* // Create many PendingBrandInvoicePayments
|
|
59398
|
+
* const pendingBrandInvoicePayment = await prisma.pendingBrandInvoicePayment.createMany({
|
|
59399
|
+
* data: [
|
|
59400
|
+
* // ... provide data here
|
|
59401
|
+
* ]
|
|
59402
|
+
* })
|
|
59403
|
+
*
|
|
59404
|
+
**/
|
|
59405
|
+
createMany<T extends PendingBrandInvoicePaymentCreateManyArgs<ExtArgs>>(
|
|
59406
|
+
args?: SelectSubset<T, PendingBrandInvoicePaymentCreateManyArgs<ExtArgs>>
|
|
59407
|
+
): Prisma.PrismaPromise<BatchPayload>
|
|
59408
|
+
|
|
59409
|
+
/**
|
|
59410
|
+
* Create many PendingBrandInvoicePayments and returns the data saved in the database.
|
|
59411
|
+
* @param {PendingBrandInvoicePaymentCreateManyAndReturnArgs} args - Arguments to create many PendingBrandInvoicePayments.
|
|
59412
|
+
* @example
|
|
59413
|
+
* // Create many PendingBrandInvoicePayments
|
|
59414
|
+
* const pendingBrandInvoicePayment = await prisma.pendingBrandInvoicePayment.createManyAndReturn({
|
|
59415
|
+
* data: [
|
|
59416
|
+
* // ... provide data here
|
|
59417
|
+
* ]
|
|
59418
|
+
* })
|
|
59419
|
+
*
|
|
59420
|
+
* // Create many PendingBrandInvoicePayments and only return the `id`
|
|
59421
|
+
* const pendingBrandInvoicePaymentWithIdOnly = await prisma.pendingBrandInvoicePayment.createManyAndReturn({
|
|
59422
|
+
* select: { id: true },
|
|
59423
|
+
* data: [
|
|
59424
|
+
* // ... provide data here
|
|
59425
|
+
* ]
|
|
59426
|
+
* })
|
|
59427
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
59428
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
59429
|
+
*
|
|
59430
|
+
**/
|
|
59431
|
+
createManyAndReturn<T extends PendingBrandInvoicePaymentCreateManyAndReturnArgs<ExtArgs>>(
|
|
59432
|
+
args?: SelectSubset<T, PendingBrandInvoicePaymentCreateManyAndReturnArgs<ExtArgs>>
|
|
59433
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$PendingBrandInvoicePaymentPayload<ExtArgs>, T, 'createManyAndReturn'>>
|
|
59434
|
+
|
|
59435
|
+
/**
|
|
59436
|
+
* Delete a PendingBrandInvoicePayment.
|
|
59437
|
+
* @param {PendingBrandInvoicePaymentDeleteArgs} args - Arguments to delete one PendingBrandInvoicePayment.
|
|
59438
|
+
* @example
|
|
59439
|
+
* // Delete one PendingBrandInvoicePayment
|
|
59440
|
+
* const PendingBrandInvoicePayment = await prisma.pendingBrandInvoicePayment.delete({
|
|
59441
|
+
* where: {
|
|
59442
|
+
* // ... filter to delete one PendingBrandInvoicePayment
|
|
59443
|
+
* }
|
|
59444
|
+
* })
|
|
59445
|
+
*
|
|
59446
|
+
**/
|
|
59447
|
+
delete<T extends PendingBrandInvoicePaymentDeleteArgs<ExtArgs>>(
|
|
59448
|
+
args: SelectSubset<T, PendingBrandInvoicePaymentDeleteArgs<ExtArgs>>
|
|
59449
|
+
): Prisma__PendingBrandInvoicePaymentClient<$Result.GetResult<Prisma.$PendingBrandInvoicePaymentPayload<ExtArgs>, T, 'delete'>, never, ExtArgs>
|
|
59450
|
+
|
|
59451
|
+
/**
|
|
59452
|
+
* Update one PendingBrandInvoicePayment.
|
|
59453
|
+
* @param {PendingBrandInvoicePaymentUpdateArgs} args - Arguments to update one PendingBrandInvoicePayment.
|
|
59454
|
+
* @example
|
|
59455
|
+
* // Update one PendingBrandInvoicePayment
|
|
59456
|
+
* const pendingBrandInvoicePayment = await prisma.pendingBrandInvoicePayment.update({
|
|
59457
|
+
* where: {
|
|
59458
|
+
* // ... provide filter here
|
|
59459
|
+
* },
|
|
59460
|
+
* data: {
|
|
59461
|
+
* // ... provide data here
|
|
59462
|
+
* }
|
|
59463
|
+
* })
|
|
59464
|
+
*
|
|
59465
|
+
**/
|
|
59466
|
+
update<T extends PendingBrandInvoicePaymentUpdateArgs<ExtArgs>>(
|
|
59467
|
+
args: SelectSubset<T, PendingBrandInvoicePaymentUpdateArgs<ExtArgs>>
|
|
59468
|
+
): Prisma__PendingBrandInvoicePaymentClient<$Result.GetResult<Prisma.$PendingBrandInvoicePaymentPayload<ExtArgs>, T, 'update'>, never, ExtArgs>
|
|
59469
|
+
|
|
59470
|
+
/**
|
|
59471
|
+
* Delete zero or more PendingBrandInvoicePayments.
|
|
59472
|
+
* @param {PendingBrandInvoicePaymentDeleteManyArgs} args - Arguments to filter PendingBrandInvoicePayments to delete.
|
|
59473
|
+
* @example
|
|
59474
|
+
* // Delete a few PendingBrandInvoicePayments
|
|
59475
|
+
* const { count } = await prisma.pendingBrandInvoicePayment.deleteMany({
|
|
59476
|
+
* where: {
|
|
59477
|
+
* // ... provide filter here
|
|
59478
|
+
* }
|
|
59479
|
+
* })
|
|
59480
|
+
*
|
|
59481
|
+
**/
|
|
59482
|
+
deleteMany<T extends PendingBrandInvoicePaymentDeleteManyArgs<ExtArgs>>(
|
|
59483
|
+
args?: SelectSubset<T, PendingBrandInvoicePaymentDeleteManyArgs<ExtArgs>>
|
|
59484
|
+
): Prisma.PrismaPromise<BatchPayload>
|
|
59485
|
+
|
|
59486
|
+
/**
|
|
59487
|
+
* Update zero or more PendingBrandInvoicePayments.
|
|
59488
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
59489
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
59490
|
+
* @param {PendingBrandInvoicePaymentUpdateManyArgs} args - Arguments to update one or more rows.
|
|
59491
|
+
* @example
|
|
59492
|
+
* // Update many PendingBrandInvoicePayments
|
|
59493
|
+
* const pendingBrandInvoicePayment = await prisma.pendingBrandInvoicePayment.updateMany({
|
|
59494
|
+
* where: {
|
|
59495
|
+
* // ... provide filter here
|
|
59496
|
+
* },
|
|
59497
|
+
* data: {
|
|
59498
|
+
* // ... provide data here
|
|
59499
|
+
* }
|
|
59500
|
+
* })
|
|
59501
|
+
*
|
|
59502
|
+
**/
|
|
59503
|
+
updateMany<T extends PendingBrandInvoicePaymentUpdateManyArgs<ExtArgs>>(
|
|
59504
|
+
args: SelectSubset<T, PendingBrandInvoicePaymentUpdateManyArgs<ExtArgs>>
|
|
59505
|
+
): Prisma.PrismaPromise<BatchPayload>
|
|
59506
|
+
|
|
59507
|
+
/**
|
|
59508
|
+
* Create or update one PendingBrandInvoicePayment.
|
|
59509
|
+
* @param {PendingBrandInvoicePaymentUpsertArgs} args - Arguments to update or create a PendingBrandInvoicePayment.
|
|
59510
|
+
* @example
|
|
59511
|
+
* // Update or create a PendingBrandInvoicePayment
|
|
59512
|
+
* const pendingBrandInvoicePayment = await prisma.pendingBrandInvoicePayment.upsert({
|
|
59513
|
+
* create: {
|
|
59514
|
+
* // ... data to create a PendingBrandInvoicePayment
|
|
59515
|
+
* },
|
|
59516
|
+
* update: {
|
|
59517
|
+
* // ... in case it already exists, update
|
|
59518
|
+
* },
|
|
59519
|
+
* where: {
|
|
59520
|
+
* // ... the filter for the PendingBrandInvoicePayment we want to update
|
|
59521
|
+
* }
|
|
59522
|
+
* })
|
|
59523
|
+
**/
|
|
59524
|
+
upsert<T extends PendingBrandInvoicePaymentUpsertArgs<ExtArgs>>(
|
|
59525
|
+
args: SelectSubset<T, PendingBrandInvoicePaymentUpsertArgs<ExtArgs>>
|
|
59526
|
+
): Prisma__PendingBrandInvoicePaymentClient<$Result.GetResult<Prisma.$PendingBrandInvoicePaymentPayload<ExtArgs>, T, 'upsert'>, never, ExtArgs>
|
|
59527
|
+
|
|
59528
|
+
/**
|
|
59529
|
+
* Count the number of PendingBrandInvoicePayments.
|
|
59530
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
59531
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
59532
|
+
* @param {PendingBrandInvoicePaymentCountArgs} args - Arguments to filter PendingBrandInvoicePayments to count.
|
|
59533
|
+
* @example
|
|
59534
|
+
* // Count the number of PendingBrandInvoicePayments
|
|
59535
|
+
* const count = await prisma.pendingBrandInvoicePayment.count({
|
|
59536
|
+
* where: {
|
|
59537
|
+
* // ... the filter for the PendingBrandInvoicePayments we want to count
|
|
59538
|
+
* }
|
|
59539
|
+
* })
|
|
59540
|
+
**/
|
|
59541
|
+
count<T extends PendingBrandInvoicePaymentCountArgs>(
|
|
59542
|
+
args?: Subset<T, PendingBrandInvoicePaymentCountArgs>,
|
|
59543
|
+
): Prisma.PrismaPromise<
|
|
59544
|
+
T extends $Utils.Record<'select', any>
|
|
59545
|
+
? T['select'] extends true
|
|
59546
|
+
? number
|
|
59547
|
+
: GetScalarType<T['select'], PendingBrandInvoicePaymentCountAggregateOutputType>
|
|
59548
|
+
: number
|
|
59549
|
+
>
|
|
59550
|
+
|
|
59551
|
+
/**
|
|
59552
|
+
* Allows you to perform aggregations operations on a PendingBrandInvoicePayment.
|
|
59553
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
59554
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
59555
|
+
* @param {PendingBrandInvoicePaymentAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
59556
|
+
* @example
|
|
59557
|
+
* // Ordered by age ascending
|
|
59558
|
+
* // Where email contains prisma.io
|
|
59559
|
+
* // Limited to the 10 users
|
|
59560
|
+
* const aggregations = await prisma.user.aggregate({
|
|
59561
|
+
* _avg: {
|
|
59562
|
+
* age: true,
|
|
59563
|
+
* },
|
|
59564
|
+
* where: {
|
|
59565
|
+
* email: {
|
|
59566
|
+
* contains: "prisma.io",
|
|
59567
|
+
* },
|
|
59568
|
+
* },
|
|
59569
|
+
* orderBy: {
|
|
59570
|
+
* age: "asc",
|
|
59571
|
+
* },
|
|
59572
|
+
* take: 10,
|
|
59573
|
+
* })
|
|
59574
|
+
**/
|
|
59575
|
+
aggregate<T extends PendingBrandInvoicePaymentAggregateArgs>(args: Subset<T, PendingBrandInvoicePaymentAggregateArgs>): Prisma.PrismaPromise<GetPendingBrandInvoicePaymentAggregateType<T>>
|
|
59576
|
+
|
|
59577
|
+
/**
|
|
59578
|
+
* Group by PendingBrandInvoicePayment.
|
|
59579
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
59580
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
59581
|
+
* @param {PendingBrandInvoicePaymentGroupByArgs} args - Group by arguments.
|
|
59582
|
+
* @example
|
|
59583
|
+
* // Group by city, order by createdAt, get count
|
|
59584
|
+
* const result = await prisma.user.groupBy({
|
|
59585
|
+
* by: ['city', 'createdAt'],
|
|
59586
|
+
* orderBy: {
|
|
59587
|
+
* createdAt: true
|
|
59588
|
+
* },
|
|
59589
|
+
* _count: {
|
|
59590
|
+
* _all: true
|
|
59591
|
+
* },
|
|
59592
|
+
* })
|
|
59593
|
+
*
|
|
59594
|
+
**/
|
|
59595
|
+
groupBy<
|
|
59596
|
+
T extends PendingBrandInvoicePaymentGroupByArgs,
|
|
59597
|
+
HasSelectOrTake extends Or<
|
|
59598
|
+
Extends<'skip', Keys<T>>,
|
|
59599
|
+
Extends<'take', Keys<T>>
|
|
59600
|
+
>,
|
|
59601
|
+
OrderByArg extends True extends HasSelectOrTake
|
|
59602
|
+
? { orderBy: PendingBrandInvoicePaymentGroupByArgs['orderBy'] }
|
|
59603
|
+
: { orderBy?: PendingBrandInvoicePaymentGroupByArgs['orderBy'] },
|
|
59604
|
+
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
59605
|
+
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
59606
|
+
ByValid extends Has<ByFields, OrderFields>,
|
|
59607
|
+
HavingFields extends GetHavingFields<T['having']>,
|
|
59608
|
+
HavingValid extends Has<ByFields, HavingFields>,
|
|
59609
|
+
ByEmpty extends T['by'] extends never[] ? True : False,
|
|
59610
|
+
InputErrors extends ByEmpty extends True
|
|
59611
|
+
? `Error: "by" must not be empty.`
|
|
59612
|
+
: HavingValid extends False
|
|
59613
|
+
? {
|
|
59614
|
+
[P in HavingFields]: P extends ByFields
|
|
59615
|
+
? never
|
|
59616
|
+
: P extends string
|
|
59617
|
+
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
|
59618
|
+
: [
|
|
59619
|
+
Error,
|
|
59620
|
+
'Field ',
|
|
59621
|
+
P,
|
|
59622
|
+
` in "having" needs to be provided in "by"`,
|
|
59623
|
+
]
|
|
59624
|
+
}[HavingFields]
|
|
59625
|
+
: 'take' extends Keys<T>
|
|
59626
|
+
? 'orderBy' extends Keys<T>
|
|
59627
|
+
? ByValid extends True
|
|
59628
|
+
? {}
|
|
59629
|
+
: {
|
|
59630
|
+
[P in OrderFields]: P extends ByFields
|
|
59631
|
+
? never
|
|
59632
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
59633
|
+
}[OrderFields]
|
|
59634
|
+
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
|
59635
|
+
: 'skip' extends Keys<T>
|
|
59636
|
+
? 'orderBy' extends Keys<T>
|
|
59637
|
+
? ByValid extends True
|
|
59638
|
+
? {}
|
|
59639
|
+
: {
|
|
59640
|
+
[P in OrderFields]: P extends ByFields
|
|
59641
|
+
? never
|
|
59642
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
59643
|
+
}[OrderFields]
|
|
59644
|
+
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
|
59645
|
+
: ByValid extends True
|
|
59646
|
+
? {}
|
|
59647
|
+
: {
|
|
59648
|
+
[P in OrderFields]: P extends ByFields
|
|
59649
|
+
? never
|
|
59650
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
59651
|
+
}[OrderFields]
|
|
59652
|
+
>(args: SubsetIntersection<T, PendingBrandInvoicePaymentGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetPendingBrandInvoicePaymentGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
59653
|
+
/**
|
|
59654
|
+
* Fields of the PendingBrandInvoicePayment model
|
|
59655
|
+
*/
|
|
59656
|
+
readonly fields: PendingBrandInvoicePaymentFieldRefs;
|
|
59657
|
+
}
|
|
59658
|
+
|
|
59659
|
+
/**
|
|
59660
|
+
* The delegate class that acts as a "Promise-like" for PendingBrandInvoicePayment.
|
|
59661
|
+
* Why is this prefixed with `Prisma__`?
|
|
59662
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
59663
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
59664
|
+
*/
|
|
59665
|
+
export interface Prisma__PendingBrandInvoicePaymentClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
59666
|
+
readonly [Symbol.toStringTag]: 'PrismaPromise';
|
|
59667
|
+
|
|
59668
|
+
brand<T extends PendingBrandInvoicePayment$brandArgs<ExtArgs> = {}>(args?: Subset<T, PendingBrandInvoicePayment$brandArgs<ExtArgs>>): Prisma__BrandClient<$Result.GetResult<Prisma.$BrandPayload<ExtArgs>, T, 'findUniqueOrThrow'> | null, null, ExtArgs>;
|
|
59669
|
+
|
|
59670
|
+
/**
|
|
59671
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
59672
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
59673
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
59674
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
59675
|
+
*/
|
|
59676
|
+
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>;
|
|
59677
|
+
/**
|
|
59678
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
59679
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
59680
|
+
* @returns A Promise for the completion of the callback.
|
|
59681
|
+
*/
|
|
59682
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>;
|
|
59683
|
+
/**
|
|
59684
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
59685
|
+
* resolved value cannot be modified from the callback.
|
|
59686
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
59687
|
+
* @returns A Promise for the completion of the callback.
|
|
59688
|
+
*/
|
|
59689
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>;
|
|
59690
|
+
}
|
|
59691
|
+
|
|
59692
|
+
|
|
59693
|
+
|
|
59694
|
+
/**
|
|
59695
|
+
* Fields of the PendingBrandInvoicePayment model
|
|
58547
59696
|
*/
|
|
58548
|
-
interface
|
|
58549
|
-
readonly id: FieldRef<"
|
|
58550
|
-
readonly
|
|
58551
|
-
readonly
|
|
58552
|
-
readonly
|
|
59697
|
+
interface PendingBrandInvoicePaymentFieldRefs {
|
|
59698
|
+
readonly id: FieldRef<"PendingBrandInvoicePayment", 'Int'>
|
|
59699
|
+
readonly invoiceId: FieldRef<"PendingBrandInvoicePayment", 'String'>
|
|
59700
|
+
readonly type: FieldRef<"PendingBrandInvoicePayment", 'String'>
|
|
59701
|
+
readonly source: FieldRef<"PendingBrandInvoicePayment", 'String'>
|
|
59702
|
+
readonly brandId: FieldRef<"PendingBrandInvoicePayment", 'Int'>
|
|
59703
|
+
readonly status: FieldRef<"PendingBrandInvoicePayment", 'String'>
|
|
59704
|
+
readonly createdAt: FieldRef<"PendingBrandInvoicePayment", 'DateTime'>
|
|
59705
|
+
readonly updatedAt: FieldRef<"PendingBrandInvoicePayment", 'DateTime'>
|
|
58553
59706
|
}
|
|
58554
59707
|
|
|
58555
59708
|
|
|
58556
59709
|
// Custom InputTypes
|
|
58557
59710
|
/**
|
|
58558
|
-
*
|
|
59711
|
+
* PendingBrandInvoicePayment findUnique
|
|
58559
59712
|
*/
|
|
58560
|
-
export type
|
|
59713
|
+
export type PendingBrandInvoicePaymentFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58561
59714
|
/**
|
|
58562
|
-
* Select specific fields to fetch from the
|
|
59715
|
+
* Select specific fields to fetch from the PendingBrandInvoicePayment
|
|
58563
59716
|
*/
|
|
58564
|
-
select?:
|
|
59717
|
+
select?: PendingBrandInvoicePaymentSelect<ExtArgs> | null
|
|
58565
59718
|
/**
|
|
58566
59719
|
* Choose, which related nodes to fetch as well
|
|
58567
59720
|
*/
|
|
58568
|
-
include?:
|
|
59721
|
+
include?: PendingBrandInvoicePaymentInclude<ExtArgs> | null
|
|
58569
59722
|
/**
|
|
58570
|
-
* Filter, which
|
|
59723
|
+
* Filter, which PendingBrandInvoicePayment to fetch.
|
|
58571
59724
|
*/
|
|
58572
|
-
where:
|
|
59725
|
+
where: PendingBrandInvoicePaymentWhereUniqueInput
|
|
58573
59726
|
}
|
|
58574
59727
|
|
|
58575
59728
|
/**
|
|
58576
|
-
*
|
|
59729
|
+
* PendingBrandInvoicePayment findUniqueOrThrow
|
|
58577
59730
|
*/
|
|
58578
|
-
export type
|
|
59731
|
+
export type PendingBrandInvoicePaymentFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58579
59732
|
/**
|
|
58580
|
-
* Select specific fields to fetch from the
|
|
59733
|
+
* Select specific fields to fetch from the PendingBrandInvoicePayment
|
|
58581
59734
|
*/
|
|
58582
|
-
select?:
|
|
59735
|
+
select?: PendingBrandInvoicePaymentSelect<ExtArgs> | null
|
|
58583
59736
|
/**
|
|
58584
59737
|
* Choose, which related nodes to fetch as well
|
|
58585
59738
|
*/
|
|
58586
|
-
include?:
|
|
59739
|
+
include?: PendingBrandInvoicePaymentInclude<ExtArgs> | null
|
|
58587
59740
|
/**
|
|
58588
|
-
* Filter, which
|
|
59741
|
+
* Filter, which PendingBrandInvoicePayment to fetch.
|
|
58589
59742
|
*/
|
|
58590
|
-
where:
|
|
59743
|
+
where: PendingBrandInvoicePaymentWhereUniqueInput
|
|
58591
59744
|
}
|
|
58592
59745
|
|
|
58593
59746
|
/**
|
|
58594
|
-
*
|
|
59747
|
+
* PendingBrandInvoicePayment findFirst
|
|
58595
59748
|
*/
|
|
58596
|
-
export type
|
|
59749
|
+
export type PendingBrandInvoicePaymentFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58597
59750
|
/**
|
|
58598
|
-
* Select specific fields to fetch from the
|
|
59751
|
+
* Select specific fields to fetch from the PendingBrandInvoicePayment
|
|
58599
59752
|
*/
|
|
58600
|
-
select?:
|
|
59753
|
+
select?: PendingBrandInvoicePaymentSelect<ExtArgs> | null
|
|
58601
59754
|
/**
|
|
58602
59755
|
* Choose, which related nodes to fetch as well
|
|
58603
59756
|
*/
|
|
58604
|
-
include?:
|
|
59757
|
+
include?: PendingBrandInvoicePaymentInclude<ExtArgs> | null
|
|
58605
59758
|
/**
|
|
58606
|
-
* Filter, which
|
|
59759
|
+
* Filter, which PendingBrandInvoicePayment to fetch.
|
|
58607
59760
|
*/
|
|
58608
|
-
where?:
|
|
59761
|
+
where?: PendingBrandInvoicePaymentWhereInput
|
|
58609
59762
|
/**
|
|
58610
59763
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
58611
59764
|
*
|
|
58612
|
-
* Determine the order of
|
|
59765
|
+
* Determine the order of PendingBrandInvoicePayments to fetch.
|
|
58613
59766
|
*/
|
|
58614
|
-
orderBy?:
|
|
59767
|
+
orderBy?: PendingBrandInvoicePaymentOrderByWithRelationAndSearchRelevanceInput | PendingBrandInvoicePaymentOrderByWithRelationAndSearchRelevanceInput[]
|
|
58615
59768
|
/**
|
|
58616
59769
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
58617
59770
|
*
|
|
58618
|
-
* Sets the position for searching for
|
|
59771
|
+
* Sets the position for searching for PendingBrandInvoicePayments.
|
|
58619
59772
|
*/
|
|
58620
|
-
cursor?:
|
|
59773
|
+
cursor?: PendingBrandInvoicePaymentWhereUniqueInput
|
|
58621
59774
|
/**
|
|
58622
59775
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
58623
59776
|
*
|
|
58624
|
-
* Take `±n`
|
|
59777
|
+
* Take `±n` PendingBrandInvoicePayments from the position of the cursor.
|
|
58625
59778
|
*/
|
|
58626
59779
|
take?: number
|
|
58627
59780
|
/**
|
|
58628
59781
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
58629
59782
|
*
|
|
58630
|
-
* Skip the first `n`
|
|
59783
|
+
* Skip the first `n` PendingBrandInvoicePayments.
|
|
58631
59784
|
*/
|
|
58632
59785
|
skip?: number
|
|
58633
59786
|
/**
|
|
58634
59787
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
58635
59788
|
*
|
|
58636
|
-
* Filter by unique combinations of
|
|
59789
|
+
* Filter by unique combinations of PendingBrandInvoicePayments.
|
|
58637
59790
|
*/
|
|
58638
|
-
distinct?:
|
|
59791
|
+
distinct?: PendingBrandInvoicePaymentScalarFieldEnum | PendingBrandInvoicePaymentScalarFieldEnum[]
|
|
58639
59792
|
}
|
|
58640
59793
|
|
|
58641
59794
|
/**
|
|
58642
|
-
*
|
|
59795
|
+
* PendingBrandInvoicePayment findFirstOrThrow
|
|
58643
59796
|
*/
|
|
58644
|
-
export type
|
|
59797
|
+
export type PendingBrandInvoicePaymentFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58645
59798
|
/**
|
|
58646
|
-
* Select specific fields to fetch from the
|
|
59799
|
+
* Select specific fields to fetch from the PendingBrandInvoicePayment
|
|
58647
59800
|
*/
|
|
58648
|
-
select?:
|
|
59801
|
+
select?: PendingBrandInvoicePaymentSelect<ExtArgs> | null
|
|
58649
59802
|
/**
|
|
58650
59803
|
* Choose, which related nodes to fetch as well
|
|
58651
59804
|
*/
|
|
58652
|
-
include?:
|
|
59805
|
+
include?: PendingBrandInvoicePaymentInclude<ExtArgs> | null
|
|
58653
59806
|
/**
|
|
58654
|
-
* Filter, which
|
|
59807
|
+
* Filter, which PendingBrandInvoicePayment to fetch.
|
|
58655
59808
|
*/
|
|
58656
|
-
where?:
|
|
59809
|
+
where?: PendingBrandInvoicePaymentWhereInput
|
|
58657
59810
|
/**
|
|
58658
59811
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
58659
59812
|
*
|
|
58660
|
-
* Determine the order of
|
|
59813
|
+
* Determine the order of PendingBrandInvoicePayments to fetch.
|
|
58661
59814
|
*/
|
|
58662
|
-
orderBy?:
|
|
59815
|
+
orderBy?: PendingBrandInvoicePaymentOrderByWithRelationAndSearchRelevanceInput | PendingBrandInvoicePaymentOrderByWithRelationAndSearchRelevanceInput[]
|
|
58663
59816
|
/**
|
|
58664
59817
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
58665
59818
|
*
|
|
58666
|
-
* Sets the position for searching for
|
|
59819
|
+
* Sets the position for searching for PendingBrandInvoicePayments.
|
|
58667
59820
|
*/
|
|
58668
|
-
cursor?:
|
|
59821
|
+
cursor?: PendingBrandInvoicePaymentWhereUniqueInput
|
|
58669
59822
|
/**
|
|
58670
59823
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
58671
59824
|
*
|
|
58672
|
-
* Take `±n`
|
|
59825
|
+
* Take `±n` PendingBrandInvoicePayments from the position of the cursor.
|
|
58673
59826
|
*/
|
|
58674
59827
|
take?: number
|
|
58675
59828
|
/**
|
|
58676
59829
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
58677
59830
|
*
|
|
58678
|
-
* Skip the first `n`
|
|
59831
|
+
* Skip the first `n` PendingBrandInvoicePayments.
|
|
58679
59832
|
*/
|
|
58680
59833
|
skip?: number
|
|
58681
59834
|
/**
|
|
58682
59835
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
58683
59836
|
*
|
|
58684
|
-
* Filter by unique combinations of
|
|
59837
|
+
* Filter by unique combinations of PendingBrandInvoicePayments.
|
|
58685
59838
|
*/
|
|
58686
|
-
distinct?:
|
|
59839
|
+
distinct?: PendingBrandInvoicePaymentScalarFieldEnum | PendingBrandInvoicePaymentScalarFieldEnum[]
|
|
58687
59840
|
}
|
|
58688
59841
|
|
|
58689
59842
|
/**
|
|
58690
|
-
*
|
|
59843
|
+
* PendingBrandInvoicePayment findMany
|
|
58691
59844
|
*/
|
|
58692
|
-
export type
|
|
59845
|
+
export type PendingBrandInvoicePaymentFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58693
59846
|
/**
|
|
58694
|
-
* Select specific fields to fetch from the
|
|
59847
|
+
* Select specific fields to fetch from the PendingBrandInvoicePayment
|
|
58695
59848
|
*/
|
|
58696
|
-
select?:
|
|
59849
|
+
select?: PendingBrandInvoicePaymentSelect<ExtArgs> | null
|
|
58697
59850
|
/**
|
|
58698
59851
|
* Choose, which related nodes to fetch as well
|
|
58699
59852
|
*/
|
|
58700
|
-
include?:
|
|
59853
|
+
include?: PendingBrandInvoicePaymentInclude<ExtArgs> | null
|
|
58701
59854
|
/**
|
|
58702
|
-
* Filter, which
|
|
59855
|
+
* Filter, which PendingBrandInvoicePayments to fetch.
|
|
58703
59856
|
*/
|
|
58704
|
-
where?:
|
|
59857
|
+
where?: PendingBrandInvoicePaymentWhereInput
|
|
58705
59858
|
/**
|
|
58706
59859
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
58707
59860
|
*
|
|
58708
|
-
* Determine the order of
|
|
59861
|
+
* Determine the order of PendingBrandInvoicePayments to fetch.
|
|
58709
59862
|
*/
|
|
58710
|
-
orderBy?:
|
|
59863
|
+
orderBy?: PendingBrandInvoicePaymentOrderByWithRelationAndSearchRelevanceInput | PendingBrandInvoicePaymentOrderByWithRelationAndSearchRelevanceInput[]
|
|
58711
59864
|
/**
|
|
58712
59865
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
58713
59866
|
*
|
|
58714
|
-
* Sets the position for listing
|
|
59867
|
+
* Sets the position for listing PendingBrandInvoicePayments.
|
|
58715
59868
|
*/
|
|
58716
|
-
cursor?:
|
|
59869
|
+
cursor?: PendingBrandInvoicePaymentWhereUniqueInput
|
|
58717
59870
|
/**
|
|
58718
59871
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
58719
59872
|
*
|
|
58720
|
-
* Take `±n`
|
|
59873
|
+
* Take `±n` PendingBrandInvoicePayments from the position of the cursor.
|
|
58721
59874
|
*/
|
|
58722
59875
|
take?: number
|
|
58723
59876
|
/**
|
|
58724
59877
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
58725
59878
|
*
|
|
58726
|
-
* Skip the first `n`
|
|
59879
|
+
* Skip the first `n` PendingBrandInvoicePayments.
|
|
58727
59880
|
*/
|
|
58728
59881
|
skip?: number
|
|
58729
|
-
distinct?:
|
|
59882
|
+
distinct?: PendingBrandInvoicePaymentScalarFieldEnum | PendingBrandInvoicePaymentScalarFieldEnum[]
|
|
58730
59883
|
}
|
|
58731
59884
|
|
|
58732
59885
|
/**
|
|
58733
|
-
*
|
|
59886
|
+
* PendingBrandInvoicePayment create
|
|
58734
59887
|
*/
|
|
58735
|
-
export type
|
|
59888
|
+
export type PendingBrandInvoicePaymentCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58736
59889
|
/**
|
|
58737
|
-
* Select specific fields to fetch from the
|
|
59890
|
+
* Select specific fields to fetch from the PendingBrandInvoicePayment
|
|
58738
59891
|
*/
|
|
58739
|
-
select?:
|
|
59892
|
+
select?: PendingBrandInvoicePaymentSelect<ExtArgs> | null
|
|
58740
59893
|
/**
|
|
58741
59894
|
* Choose, which related nodes to fetch as well
|
|
58742
59895
|
*/
|
|
58743
|
-
include?:
|
|
59896
|
+
include?: PendingBrandInvoicePaymentInclude<ExtArgs> | null
|
|
58744
59897
|
/**
|
|
58745
|
-
* The data needed to create a
|
|
59898
|
+
* The data needed to create a PendingBrandInvoicePayment.
|
|
58746
59899
|
*/
|
|
58747
|
-
data: XOR<
|
|
59900
|
+
data: XOR<PendingBrandInvoicePaymentCreateInput, PendingBrandInvoicePaymentUncheckedCreateInput>
|
|
58748
59901
|
}
|
|
58749
59902
|
|
|
58750
59903
|
/**
|
|
58751
|
-
*
|
|
59904
|
+
* PendingBrandInvoicePayment createMany
|
|
58752
59905
|
*/
|
|
58753
|
-
export type
|
|
59906
|
+
export type PendingBrandInvoicePaymentCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58754
59907
|
/**
|
|
58755
|
-
* The data used to create many
|
|
59908
|
+
* The data used to create many PendingBrandInvoicePayments.
|
|
58756
59909
|
*/
|
|
58757
|
-
data:
|
|
59910
|
+
data: PendingBrandInvoicePaymentCreateManyInput | PendingBrandInvoicePaymentCreateManyInput[]
|
|
58758
59911
|
skipDuplicates?: boolean
|
|
58759
59912
|
}
|
|
58760
59913
|
|
|
58761
59914
|
/**
|
|
58762
|
-
*
|
|
59915
|
+
* PendingBrandInvoicePayment createManyAndReturn
|
|
58763
59916
|
*/
|
|
58764
|
-
export type
|
|
59917
|
+
export type PendingBrandInvoicePaymentCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58765
59918
|
/**
|
|
58766
|
-
* Select specific fields to fetch from the
|
|
59919
|
+
* Select specific fields to fetch from the PendingBrandInvoicePayment
|
|
58767
59920
|
*/
|
|
58768
|
-
select?:
|
|
59921
|
+
select?: PendingBrandInvoicePaymentSelectCreateManyAndReturn<ExtArgs> | null
|
|
58769
59922
|
/**
|
|
58770
|
-
* The data used to create many
|
|
59923
|
+
* The data used to create many PendingBrandInvoicePayments.
|
|
58771
59924
|
*/
|
|
58772
|
-
data:
|
|
59925
|
+
data: PendingBrandInvoicePaymentCreateManyInput | PendingBrandInvoicePaymentCreateManyInput[]
|
|
58773
59926
|
skipDuplicates?: boolean
|
|
58774
59927
|
/**
|
|
58775
59928
|
* Choose, which related nodes to fetch as well
|
|
58776
59929
|
*/
|
|
58777
|
-
include?:
|
|
59930
|
+
include?: PendingBrandInvoicePaymentIncludeCreateManyAndReturn<ExtArgs> | null
|
|
58778
59931
|
}
|
|
58779
59932
|
|
|
58780
59933
|
/**
|
|
58781
|
-
*
|
|
59934
|
+
* PendingBrandInvoicePayment update
|
|
58782
59935
|
*/
|
|
58783
|
-
export type
|
|
59936
|
+
export type PendingBrandInvoicePaymentUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58784
59937
|
/**
|
|
58785
|
-
* Select specific fields to fetch from the
|
|
59938
|
+
* Select specific fields to fetch from the PendingBrandInvoicePayment
|
|
58786
59939
|
*/
|
|
58787
|
-
select?:
|
|
59940
|
+
select?: PendingBrandInvoicePaymentSelect<ExtArgs> | null
|
|
58788
59941
|
/**
|
|
58789
59942
|
* Choose, which related nodes to fetch as well
|
|
58790
59943
|
*/
|
|
58791
|
-
include?:
|
|
59944
|
+
include?: PendingBrandInvoicePaymentInclude<ExtArgs> | null
|
|
58792
59945
|
/**
|
|
58793
|
-
* The data needed to update a
|
|
59946
|
+
* The data needed to update a PendingBrandInvoicePayment.
|
|
58794
59947
|
*/
|
|
58795
|
-
data: XOR<
|
|
59948
|
+
data: XOR<PendingBrandInvoicePaymentUpdateInput, PendingBrandInvoicePaymentUncheckedUpdateInput>
|
|
58796
59949
|
/**
|
|
58797
|
-
* Choose, which
|
|
59950
|
+
* Choose, which PendingBrandInvoicePayment to update.
|
|
58798
59951
|
*/
|
|
58799
|
-
where:
|
|
59952
|
+
where: PendingBrandInvoicePaymentWhereUniqueInput
|
|
58800
59953
|
}
|
|
58801
59954
|
|
|
58802
59955
|
/**
|
|
58803
|
-
*
|
|
59956
|
+
* PendingBrandInvoicePayment updateMany
|
|
58804
59957
|
*/
|
|
58805
|
-
export type
|
|
59958
|
+
export type PendingBrandInvoicePaymentUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58806
59959
|
/**
|
|
58807
|
-
* The data used to update
|
|
59960
|
+
* The data used to update PendingBrandInvoicePayments.
|
|
58808
59961
|
*/
|
|
58809
|
-
data: XOR<
|
|
59962
|
+
data: XOR<PendingBrandInvoicePaymentUpdateManyMutationInput, PendingBrandInvoicePaymentUncheckedUpdateManyInput>
|
|
58810
59963
|
/**
|
|
58811
|
-
* Filter which
|
|
59964
|
+
* Filter which PendingBrandInvoicePayments to update
|
|
58812
59965
|
*/
|
|
58813
|
-
where?:
|
|
59966
|
+
where?: PendingBrandInvoicePaymentWhereInput
|
|
58814
59967
|
}
|
|
58815
59968
|
|
|
58816
59969
|
/**
|
|
58817
|
-
*
|
|
59970
|
+
* PendingBrandInvoicePayment upsert
|
|
58818
59971
|
*/
|
|
58819
|
-
export type
|
|
59972
|
+
export type PendingBrandInvoicePaymentUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58820
59973
|
/**
|
|
58821
|
-
* Select specific fields to fetch from the
|
|
59974
|
+
* Select specific fields to fetch from the PendingBrandInvoicePayment
|
|
58822
59975
|
*/
|
|
58823
|
-
select?:
|
|
59976
|
+
select?: PendingBrandInvoicePaymentSelect<ExtArgs> | null
|
|
58824
59977
|
/**
|
|
58825
59978
|
* Choose, which related nodes to fetch as well
|
|
58826
59979
|
*/
|
|
58827
|
-
include?:
|
|
59980
|
+
include?: PendingBrandInvoicePaymentInclude<ExtArgs> | null
|
|
58828
59981
|
/**
|
|
58829
|
-
* The filter to search for the
|
|
59982
|
+
* The filter to search for the PendingBrandInvoicePayment to update in case it exists.
|
|
58830
59983
|
*/
|
|
58831
|
-
where:
|
|
59984
|
+
where: PendingBrandInvoicePaymentWhereUniqueInput
|
|
58832
59985
|
/**
|
|
58833
|
-
* In case the
|
|
59986
|
+
* In case the PendingBrandInvoicePayment found by the `where` argument doesn't exist, create a new PendingBrandInvoicePayment with this data.
|
|
58834
59987
|
*/
|
|
58835
|
-
create: XOR<
|
|
59988
|
+
create: XOR<PendingBrandInvoicePaymentCreateInput, PendingBrandInvoicePaymentUncheckedCreateInput>
|
|
58836
59989
|
/**
|
|
58837
|
-
* In case the
|
|
59990
|
+
* In case the PendingBrandInvoicePayment was found with the provided `where` argument, update it with this data.
|
|
58838
59991
|
*/
|
|
58839
|
-
update: XOR<
|
|
59992
|
+
update: XOR<PendingBrandInvoicePaymentUpdateInput, PendingBrandInvoicePaymentUncheckedUpdateInput>
|
|
58840
59993
|
}
|
|
58841
59994
|
|
|
58842
59995
|
/**
|
|
58843
|
-
*
|
|
59996
|
+
* PendingBrandInvoicePayment delete
|
|
58844
59997
|
*/
|
|
58845
|
-
export type
|
|
59998
|
+
export type PendingBrandInvoicePaymentDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58846
59999
|
/**
|
|
58847
|
-
* Select specific fields to fetch from the
|
|
60000
|
+
* Select specific fields to fetch from the PendingBrandInvoicePayment
|
|
58848
60001
|
*/
|
|
58849
|
-
select?:
|
|
60002
|
+
select?: PendingBrandInvoicePaymentSelect<ExtArgs> | null
|
|
58850
60003
|
/**
|
|
58851
60004
|
* Choose, which related nodes to fetch as well
|
|
58852
60005
|
*/
|
|
58853
|
-
include?:
|
|
60006
|
+
include?: PendingBrandInvoicePaymentInclude<ExtArgs> | null
|
|
58854
60007
|
/**
|
|
58855
|
-
* Filter which
|
|
60008
|
+
* Filter which PendingBrandInvoicePayment to delete.
|
|
58856
60009
|
*/
|
|
58857
|
-
where:
|
|
60010
|
+
where: PendingBrandInvoicePaymentWhereUniqueInput
|
|
58858
60011
|
}
|
|
58859
60012
|
|
|
58860
60013
|
/**
|
|
58861
|
-
*
|
|
60014
|
+
* PendingBrandInvoicePayment deleteMany
|
|
58862
60015
|
*/
|
|
58863
|
-
export type
|
|
60016
|
+
export type PendingBrandInvoicePaymentDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58864
60017
|
/**
|
|
58865
|
-
* Filter which
|
|
60018
|
+
* Filter which PendingBrandInvoicePayments to delete
|
|
58866
60019
|
*/
|
|
58867
|
-
where?:
|
|
60020
|
+
where?: PendingBrandInvoicePaymentWhereInput
|
|
58868
60021
|
}
|
|
58869
60022
|
|
|
58870
60023
|
/**
|
|
58871
|
-
*
|
|
60024
|
+
* PendingBrandInvoicePayment.brand
|
|
58872
60025
|
*/
|
|
58873
|
-
export type
|
|
60026
|
+
export type PendingBrandInvoicePayment$brandArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
58874
60027
|
/**
|
|
58875
|
-
* Select specific fields to fetch from the
|
|
60028
|
+
* Select specific fields to fetch from the Brand
|
|
58876
60029
|
*/
|
|
58877
|
-
select?:
|
|
60030
|
+
select?: BrandSelect<ExtArgs> | null
|
|
58878
60031
|
/**
|
|
58879
60032
|
* Choose, which related nodes to fetch as well
|
|
58880
60033
|
*/
|
|
58881
|
-
include?:
|
|
60034
|
+
include?: BrandInclude<ExtArgs> | null
|
|
60035
|
+
where?: BrandWhereInput
|
|
60036
|
+
}
|
|
60037
|
+
|
|
60038
|
+
/**
|
|
60039
|
+
* PendingBrandInvoicePayment without action
|
|
60040
|
+
*/
|
|
60041
|
+
export type PendingBrandInvoicePaymentDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
60042
|
+
/**
|
|
60043
|
+
* Select specific fields to fetch from the PendingBrandInvoicePayment
|
|
60044
|
+
*/
|
|
60045
|
+
select?: PendingBrandInvoicePaymentSelect<ExtArgs> | null
|
|
60046
|
+
/**
|
|
60047
|
+
* Choose, which related nodes to fetch as well
|
|
60048
|
+
*/
|
|
60049
|
+
include?: PendingBrandInvoicePaymentInclude<ExtArgs> | null
|
|
58882
60050
|
}
|
|
58883
60051
|
|
|
58884
60052
|
|
|
@@ -72088,6 +73256,8 @@ export namespace Prisma {
|
|
|
72088
73256
|
label: string | null
|
|
72089
73257
|
template: string | null
|
|
72090
73258
|
brandId: number | null
|
|
73259
|
+
createdAt: Date | null
|
|
73260
|
+
updatedAt: Date | null
|
|
72091
73261
|
}
|
|
72092
73262
|
|
|
72093
73263
|
export type MessageTemplateMaxAggregateOutputType = {
|
|
@@ -72095,6 +73265,8 @@ export namespace Prisma {
|
|
|
72095
73265
|
label: string | null
|
|
72096
73266
|
template: string | null
|
|
72097
73267
|
brandId: number | null
|
|
73268
|
+
createdAt: Date | null
|
|
73269
|
+
updatedAt: Date | null
|
|
72098
73270
|
}
|
|
72099
73271
|
|
|
72100
73272
|
export type MessageTemplateCountAggregateOutputType = {
|
|
@@ -72103,6 +73275,8 @@ export namespace Prisma {
|
|
|
72103
73275
|
template: number
|
|
72104
73276
|
brandId: number
|
|
72105
73277
|
metaData: number
|
|
73278
|
+
createdAt: number
|
|
73279
|
+
updatedAt: number
|
|
72106
73280
|
_all: number
|
|
72107
73281
|
}
|
|
72108
73282
|
|
|
@@ -72122,6 +73296,8 @@ export namespace Prisma {
|
|
|
72122
73296
|
label?: true
|
|
72123
73297
|
template?: true
|
|
72124
73298
|
brandId?: true
|
|
73299
|
+
createdAt?: true
|
|
73300
|
+
updatedAt?: true
|
|
72125
73301
|
}
|
|
72126
73302
|
|
|
72127
73303
|
export type MessageTemplateMaxAggregateInputType = {
|
|
@@ -72129,6 +73305,8 @@ export namespace Prisma {
|
|
|
72129
73305
|
label?: true
|
|
72130
73306
|
template?: true
|
|
72131
73307
|
brandId?: true
|
|
73308
|
+
createdAt?: true
|
|
73309
|
+
updatedAt?: true
|
|
72132
73310
|
}
|
|
72133
73311
|
|
|
72134
73312
|
export type MessageTemplateCountAggregateInputType = {
|
|
@@ -72137,6 +73315,8 @@ export namespace Prisma {
|
|
|
72137
73315
|
template?: true
|
|
72138
73316
|
brandId?: true
|
|
72139
73317
|
metaData?: true
|
|
73318
|
+
createdAt?: true
|
|
73319
|
+
updatedAt?: true
|
|
72140
73320
|
_all?: true
|
|
72141
73321
|
}
|
|
72142
73322
|
|
|
@@ -72232,6 +73412,8 @@ export namespace Prisma {
|
|
|
72232
73412
|
template: string
|
|
72233
73413
|
brandId: number | null
|
|
72234
73414
|
metaData: JsonValue
|
|
73415
|
+
createdAt: Date | null
|
|
73416
|
+
updatedAt: Date | null
|
|
72235
73417
|
_count: MessageTemplateCountAggregateOutputType | null
|
|
72236
73418
|
_avg: MessageTemplateAvgAggregateOutputType | null
|
|
72237
73419
|
_sum: MessageTemplateSumAggregateOutputType | null
|
|
@@ -72259,6 +73441,8 @@ export namespace Prisma {
|
|
|
72259
73441
|
template?: boolean
|
|
72260
73442
|
brandId?: boolean
|
|
72261
73443
|
metaData?: boolean
|
|
73444
|
+
createdAt?: boolean
|
|
73445
|
+
updatedAt?: boolean
|
|
72262
73446
|
brand?: boolean | MessageTemplate$brandArgs<ExtArgs>
|
|
72263
73447
|
}, ExtArgs["result"]["messageTemplate"]>
|
|
72264
73448
|
|
|
@@ -72268,6 +73452,8 @@ export namespace Prisma {
|
|
|
72268
73452
|
template?: boolean
|
|
72269
73453
|
brandId?: boolean
|
|
72270
73454
|
metaData?: boolean
|
|
73455
|
+
createdAt?: boolean
|
|
73456
|
+
updatedAt?: boolean
|
|
72271
73457
|
brand?: boolean | MessageTemplate$brandArgs<ExtArgs>
|
|
72272
73458
|
}, ExtArgs["result"]["messageTemplate"]>
|
|
72273
73459
|
|
|
@@ -72277,6 +73463,8 @@ export namespace Prisma {
|
|
|
72277
73463
|
template?: boolean
|
|
72278
73464
|
brandId?: boolean
|
|
72279
73465
|
metaData?: boolean
|
|
73466
|
+
createdAt?: boolean
|
|
73467
|
+
updatedAt?: boolean
|
|
72280
73468
|
}
|
|
72281
73469
|
|
|
72282
73470
|
export type MessageTemplateInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -72297,6 +73485,8 @@ export namespace Prisma {
|
|
|
72297
73485
|
template: string
|
|
72298
73486
|
brandId: number | null
|
|
72299
73487
|
metaData: Prisma.JsonValue
|
|
73488
|
+
createdAt: Date | null
|
|
73489
|
+
updatedAt: Date | null
|
|
72300
73490
|
}, ExtArgs["result"]["messageTemplate"]>
|
|
72301
73491
|
composites: {}
|
|
72302
73492
|
}
|
|
@@ -72722,6 +73912,8 @@ export namespace Prisma {
|
|
|
72722
73912
|
readonly template: FieldRef<"MessageTemplate", 'String'>
|
|
72723
73913
|
readonly brandId: FieldRef<"MessageTemplate", 'Int'>
|
|
72724
73914
|
readonly metaData: FieldRef<"MessageTemplate", 'Json'>
|
|
73915
|
+
readonly createdAt: FieldRef<"MessageTemplate", 'DateTime'>
|
|
73916
|
+
readonly updatedAt: FieldRef<"MessageTemplate", 'DateTime'>
|
|
72725
73917
|
}
|
|
72726
73918
|
|
|
72727
73919
|
|
|
@@ -95691,6 +96883,20 @@ export namespace Prisma {
|
|
|
95691
96883
|
export type StateScalarFieldEnum = (typeof StateScalarFieldEnum)[keyof typeof StateScalarFieldEnum]
|
|
95692
96884
|
|
|
95693
96885
|
|
|
96886
|
+
export const PendingBrandInvoicePaymentScalarFieldEnum: {
|
|
96887
|
+
id: 'id',
|
|
96888
|
+
invoiceId: 'invoiceId',
|
|
96889
|
+
type: 'type',
|
|
96890
|
+
source: 'source',
|
|
96891
|
+
brandId: 'brandId',
|
|
96892
|
+
status: 'status',
|
|
96893
|
+
createdAt: 'createdAt',
|
|
96894
|
+
updatedAt: 'updatedAt'
|
|
96895
|
+
};
|
|
96896
|
+
|
|
96897
|
+
export type PendingBrandInvoicePaymentScalarFieldEnum = (typeof PendingBrandInvoicePaymentScalarFieldEnum)[keyof typeof PendingBrandInvoicePaymentScalarFieldEnum]
|
|
96898
|
+
|
|
96899
|
+
|
|
95694
96900
|
export const PaymentTransactionScalarFieldEnum: {
|
|
95695
96901
|
id: 'id',
|
|
95696
96902
|
amount: 'amount',
|
|
@@ -95878,7 +97084,9 @@ export namespace Prisma {
|
|
|
95878
97084
|
label: 'label',
|
|
95879
97085
|
template: 'template',
|
|
95880
97086
|
brandId: 'brandId',
|
|
95881
|
-
metaData: 'metaData'
|
|
97087
|
+
metaData: 'metaData',
|
|
97088
|
+
createdAt: 'createdAt',
|
|
97089
|
+
updatedAt: 'updatedAt'
|
|
95882
97090
|
};
|
|
95883
97091
|
|
|
95884
97092
|
export type MessageTemplateScalarFieldEnum = (typeof MessageTemplateScalarFieldEnum)[keyof typeof MessageTemplateScalarFieldEnum]
|
|
@@ -96520,6 +97728,16 @@ export namespace Prisma {
|
|
|
96520
97728
|
export type StateOrderByRelevanceFieldEnum = (typeof StateOrderByRelevanceFieldEnum)[keyof typeof StateOrderByRelevanceFieldEnum]
|
|
96521
97729
|
|
|
96522
97730
|
|
|
97731
|
+
export const PendingBrandInvoicePaymentOrderByRelevanceFieldEnum: {
|
|
97732
|
+
invoiceId: 'invoiceId',
|
|
97733
|
+
type: 'type',
|
|
97734
|
+
source: 'source',
|
|
97735
|
+
status: 'status'
|
|
97736
|
+
};
|
|
97737
|
+
|
|
97738
|
+
export type PendingBrandInvoicePaymentOrderByRelevanceFieldEnum = (typeof PendingBrandInvoicePaymentOrderByRelevanceFieldEnum)[keyof typeof PendingBrandInvoicePaymentOrderByRelevanceFieldEnum]
|
|
97739
|
+
|
|
97740
|
+
|
|
96523
97741
|
export const PaymentTransactionOrderByRelevanceFieldEnum: {
|
|
96524
97742
|
type: 'type',
|
|
96525
97743
|
notes: 'notes'
|
|
@@ -98134,6 +99352,7 @@ export namespace Prisma {
|
|
|
98134
99352
|
reportCredits?: ReportCreditsListRelationFilter
|
|
98135
99353
|
categories?: BrandToCategoryListRelationFilter
|
|
98136
99354
|
paymentTransactions?: PaymentTransactionListRelationFilter
|
|
99355
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentListRelationFilter
|
|
98137
99356
|
savedfiles?: SavedFileListRelationFilter
|
|
98138
99357
|
creatorLists?: CreatorListListRelationFilter
|
|
98139
99358
|
affiliateLinks?: BrandAffiliateLinkListRelationFilter
|
|
@@ -98177,6 +99396,7 @@ export namespace Prisma {
|
|
|
98177
99396
|
reportCredits?: ReportCreditsOrderByRelationAggregateInput
|
|
98178
99397
|
categories?: BrandToCategoryOrderByRelationAggregateInput
|
|
98179
99398
|
paymentTransactions?: PaymentTransactionOrderByRelationAggregateInput
|
|
99399
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentOrderByRelationAggregateInput
|
|
98180
99400
|
savedfiles?: SavedFileOrderByRelationAggregateInput
|
|
98181
99401
|
creatorLists?: CreatorListOrderByRelationAggregateInput
|
|
98182
99402
|
affiliateLinks?: BrandAffiliateLinkOrderByRelationAggregateInput
|
|
@@ -98224,6 +99444,7 @@ export namespace Prisma {
|
|
|
98224
99444
|
reportCredits?: ReportCreditsListRelationFilter
|
|
98225
99445
|
categories?: BrandToCategoryListRelationFilter
|
|
98226
99446
|
paymentTransactions?: PaymentTransactionListRelationFilter
|
|
99447
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentListRelationFilter
|
|
98227
99448
|
savedfiles?: SavedFileListRelationFilter
|
|
98228
99449
|
creatorLists?: CreatorListListRelationFilter
|
|
98229
99450
|
affiliateLinks?: BrandAffiliateLinkListRelationFilter
|
|
@@ -100921,6 +102142,79 @@ export namespace Prisma {
|
|
|
100921
102142
|
stateName?: StringWithAggregatesFilter<"State"> | string
|
|
100922
102143
|
}
|
|
100923
102144
|
|
|
102145
|
+
export type PendingBrandInvoicePaymentWhereInput = {
|
|
102146
|
+
AND?: PendingBrandInvoicePaymentWhereInput | PendingBrandInvoicePaymentWhereInput[]
|
|
102147
|
+
OR?: PendingBrandInvoicePaymentWhereInput[]
|
|
102148
|
+
NOT?: PendingBrandInvoicePaymentWhereInput | PendingBrandInvoicePaymentWhereInput[]
|
|
102149
|
+
id?: IntFilter<"PendingBrandInvoicePayment"> | number
|
|
102150
|
+
invoiceId?: StringFilter<"PendingBrandInvoicePayment"> | string
|
|
102151
|
+
type?: StringFilter<"PendingBrandInvoicePayment"> | string
|
|
102152
|
+
source?: StringFilter<"PendingBrandInvoicePayment"> | string
|
|
102153
|
+
brandId?: IntNullableFilter<"PendingBrandInvoicePayment"> | number | null
|
|
102154
|
+
status?: StringFilter<"PendingBrandInvoicePayment"> | string
|
|
102155
|
+
createdAt?: DateTimeFilter<"PendingBrandInvoicePayment"> | Date | string
|
|
102156
|
+
updatedAt?: DateTimeFilter<"PendingBrandInvoicePayment"> | Date | string
|
|
102157
|
+
brand?: XOR<BrandNullableRelationFilter, BrandWhereInput> | null
|
|
102158
|
+
}
|
|
102159
|
+
|
|
102160
|
+
export type PendingBrandInvoicePaymentOrderByWithRelationAndSearchRelevanceInput = {
|
|
102161
|
+
id?: SortOrder
|
|
102162
|
+
invoiceId?: SortOrder
|
|
102163
|
+
type?: SortOrder
|
|
102164
|
+
source?: SortOrder
|
|
102165
|
+
brandId?: SortOrderInput | SortOrder
|
|
102166
|
+
status?: SortOrder
|
|
102167
|
+
createdAt?: SortOrder
|
|
102168
|
+
updatedAt?: SortOrder
|
|
102169
|
+
brand?: BrandOrderByWithRelationAndSearchRelevanceInput
|
|
102170
|
+
_relevance?: PendingBrandInvoicePaymentOrderByRelevanceInput
|
|
102171
|
+
}
|
|
102172
|
+
|
|
102173
|
+
export type PendingBrandInvoicePaymentWhereUniqueInput = Prisma.AtLeast<{
|
|
102174
|
+
id?: number
|
|
102175
|
+
AND?: PendingBrandInvoicePaymentWhereInput | PendingBrandInvoicePaymentWhereInput[]
|
|
102176
|
+
OR?: PendingBrandInvoicePaymentWhereInput[]
|
|
102177
|
+
NOT?: PendingBrandInvoicePaymentWhereInput | PendingBrandInvoicePaymentWhereInput[]
|
|
102178
|
+
invoiceId?: StringFilter<"PendingBrandInvoicePayment"> | string
|
|
102179
|
+
type?: StringFilter<"PendingBrandInvoicePayment"> | string
|
|
102180
|
+
source?: StringFilter<"PendingBrandInvoicePayment"> | string
|
|
102181
|
+
brandId?: IntNullableFilter<"PendingBrandInvoicePayment"> | number | null
|
|
102182
|
+
status?: StringFilter<"PendingBrandInvoicePayment"> | string
|
|
102183
|
+
createdAt?: DateTimeFilter<"PendingBrandInvoicePayment"> | Date | string
|
|
102184
|
+
updatedAt?: DateTimeFilter<"PendingBrandInvoicePayment"> | Date | string
|
|
102185
|
+
brand?: XOR<BrandNullableRelationFilter, BrandWhereInput> | null
|
|
102186
|
+
}, "id">
|
|
102187
|
+
|
|
102188
|
+
export type PendingBrandInvoicePaymentOrderByWithAggregationInput = {
|
|
102189
|
+
id?: SortOrder
|
|
102190
|
+
invoiceId?: SortOrder
|
|
102191
|
+
type?: SortOrder
|
|
102192
|
+
source?: SortOrder
|
|
102193
|
+
brandId?: SortOrderInput | SortOrder
|
|
102194
|
+
status?: SortOrder
|
|
102195
|
+
createdAt?: SortOrder
|
|
102196
|
+
updatedAt?: SortOrder
|
|
102197
|
+
_count?: PendingBrandInvoicePaymentCountOrderByAggregateInput
|
|
102198
|
+
_avg?: PendingBrandInvoicePaymentAvgOrderByAggregateInput
|
|
102199
|
+
_max?: PendingBrandInvoicePaymentMaxOrderByAggregateInput
|
|
102200
|
+
_min?: PendingBrandInvoicePaymentMinOrderByAggregateInput
|
|
102201
|
+
_sum?: PendingBrandInvoicePaymentSumOrderByAggregateInput
|
|
102202
|
+
}
|
|
102203
|
+
|
|
102204
|
+
export type PendingBrandInvoicePaymentScalarWhereWithAggregatesInput = {
|
|
102205
|
+
AND?: PendingBrandInvoicePaymentScalarWhereWithAggregatesInput | PendingBrandInvoicePaymentScalarWhereWithAggregatesInput[]
|
|
102206
|
+
OR?: PendingBrandInvoicePaymentScalarWhereWithAggregatesInput[]
|
|
102207
|
+
NOT?: PendingBrandInvoicePaymentScalarWhereWithAggregatesInput | PendingBrandInvoicePaymentScalarWhereWithAggregatesInput[]
|
|
102208
|
+
id?: IntWithAggregatesFilter<"PendingBrandInvoicePayment"> | number
|
|
102209
|
+
invoiceId?: StringWithAggregatesFilter<"PendingBrandInvoicePayment"> | string
|
|
102210
|
+
type?: StringWithAggregatesFilter<"PendingBrandInvoicePayment"> | string
|
|
102211
|
+
source?: StringWithAggregatesFilter<"PendingBrandInvoicePayment"> | string
|
|
102212
|
+
brandId?: IntNullableWithAggregatesFilter<"PendingBrandInvoicePayment"> | number | null
|
|
102213
|
+
status?: StringWithAggregatesFilter<"PendingBrandInvoicePayment"> | string
|
|
102214
|
+
createdAt?: DateTimeWithAggregatesFilter<"PendingBrandInvoicePayment"> | Date | string
|
|
102215
|
+
updatedAt?: DateTimeWithAggregatesFilter<"PendingBrandInvoicePayment"> | Date | string
|
|
102216
|
+
}
|
|
102217
|
+
|
|
100924
102218
|
export type PaymentTransactionWhereInput = {
|
|
100925
102219
|
AND?: PaymentTransactionWhereInput | PaymentTransactionWhereInput[]
|
|
100926
102220
|
OR?: PaymentTransactionWhereInput[]
|
|
@@ -101948,6 +103242,8 @@ export namespace Prisma {
|
|
|
101948
103242
|
template?: StringFilter<"MessageTemplate"> | string
|
|
101949
103243
|
brandId?: IntNullableFilter<"MessageTemplate"> | number | null
|
|
101950
103244
|
metaData?: JsonFilter<"MessageTemplate">
|
|
103245
|
+
createdAt?: DateTimeNullableFilter<"MessageTemplate"> | Date | string | null
|
|
103246
|
+
updatedAt?: DateTimeNullableFilter<"MessageTemplate"> | Date | string | null
|
|
101951
103247
|
brand?: XOR<BrandNullableRelationFilter, BrandWhereInput> | null
|
|
101952
103248
|
}
|
|
101953
103249
|
|
|
@@ -101957,6 +103253,8 @@ export namespace Prisma {
|
|
|
101957
103253
|
template?: SortOrder
|
|
101958
103254
|
brandId?: SortOrderInput | SortOrder
|
|
101959
103255
|
metaData?: SortOrder
|
|
103256
|
+
createdAt?: SortOrderInput | SortOrder
|
|
103257
|
+
updatedAt?: SortOrderInput | SortOrder
|
|
101960
103258
|
brand?: BrandOrderByWithRelationAndSearchRelevanceInput
|
|
101961
103259
|
_relevance?: MessageTemplateOrderByRelevanceInput
|
|
101962
103260
|
}
|
|
@@ -101970,6 +103268,8 @@ export namespace Prisma {
|
|
|
101970
103268
|
template?: StringFilter<"MessageTemplate"> | string
|
|
101971
103269
|
brandId?: IntNullableFilter<"MessageTemplate"> | number | null
|
|
101972
103270
|
metaData?: JsonFilter<"MessageTemplate">
|
|
103271
|
+
createdAt?: DateTimeNullableFilter<"MessageTemplate"> | Date | string | null
|
|
103272
|
+
updatedAt?: DateTimeNullableFilter<"MessageTemplate"> | Date | string | null
|
|
101973
103273
|
brand?: XOR<BrandNullableRelationFilter, BrandWhereInput> | null
|
|
101974
103274
|
}, "id">
|
|
101975
103275
|
|
|
@@ -101979,6 +103279,8 @@ export namespace Prisma {
|
|
|
101979
103279
|
template?: SortOrder
|
|
101980
103280
|
brandId?: SortOrderInput | SortOrder
|
|
101981
103281
|
metaData?: SortOrder
|
|
103282
|
+
createdAt?: SortOrderInput | SortOrder
|
|
103283
|
+
updatedAt?: SortOrderInput | SortOrder
|
|
101982
103284
|
_count?: MessageTemplateCountOrderByAggregateInput
|
|
101983
103285
|
_avg?: MessageTemplateAvgOrderByAggregateInput
|
|
101984
103286
|
_max?: MessageTemplateMaxOrderByAggregateInput
|
|
@@ -101995,6 +103297,8 @@ export namespace Prisma {
|
|
|
101995
103297
|
template?: StringWithAggregatesFilter<"MessageTemplate"> | string
|
|
101996
103298
|
brandId?: IntNullableWithAggregatesFilter<"MessageTemplate"> | number | null
|
|
101997
103299
|
metaData?: JsonWithAggregatesFilter<"MessageTemplate">
|
|
103300
|
+
createdAt?: DateTimeNullableWithAggregatesFilter<"MessageTemplate"> | Date | string | null
|
|
103301
|
+
updatedAt?: DateTimeNullableWithAggregatesFilter<"MessageTemplate"> | Date | string | null
|
|
101998
103302
|
}
|
|
101999
103303
|
|
|
102000
103304
|
export type EmailTemplateWhereInput = {
|
|
@@ -104830,6 +106134,7 @@ export namespace Prisma {
|
|
|
104830
106134
|
reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
|
|
104831
106135
|
categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
|
|
104832
106136
|
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
|
|
106137
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
|
|
104833
106138
|
savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
|
|
104834
106139
|
creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
|
|
104835
106140
|
affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
|
|
@@ -104872,6 +106177,7 @@ export namespace Prisma {
|
|
|
104872
106177
|
reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
|
|
104873
106178
|
categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
104874
106179
|
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
|
|
106180
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
|
|
104875
106181
|
savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
|
|
104876
106182
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
|
|
104877
106183
|
affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -104911,6 +106217,7 @@ export namespace Prisma {
|
|
|
104911
106217
|
reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
|
|
104912
106218
|
categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
|
|
104913
106219
|
paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
|
|
106220
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
|
|
104914
106221
|
savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
|
|
104915
106222
|
creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
|
|
104916
106223
|
affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
|
|
@@ -104953,6 +106260,7 @@ export namespace Prisma {
|
|
|
104953
106260
|
reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
|
|
104954
106261
|
categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
104955
106262
|
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
|
|
106263
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
|
|
104956
106264
|
savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
|
|
104957
106265
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
|
|
104958
106266
|
affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -107693,6 +109001,79 @@ export namespace Prisma {
|
|
|
107693
109001
|
stateName?: StringFieldUpdateOperationsInput | string
|
|
107694
109002
|
}
|
|
107695
109003
|
|
|
109004
|
+
export type PendingBrandInvoicePaymentCreateInput = {
|
|
109005
|
+
invoiceId: string
|
|
109006
|
+
type: string
|
|
109007
|
+
source: string
|
|
109008
|
+
status: string
|
|
109009
|
+
createdAt?: Date | string
|
|
109010
|
+
updatedAt?: Date | string
|
|
109011
|
+
brand?: BrandCreateNestedOneWithoutPendingBrandInvoicePaymentsInput
|
|
109012
|
+
}
|
|
109013
|
+
|
|
109014
|
+
export type PendingBrandInvoicePaymentUncheckedCreateInput = {
|
|
109015
|
+
id?: number
|
|
109016
|
+
invoiceId: string
|
|
109017
|
+
type: string
|
|
109018
|
+
source: string
|
|
109019
|
+
brandId?: number | null
|
|
109020
|
+
status: string
|
|
109021
|
+
createdAt?: Date | string
|
|
109022
|
+
updatedAt?: Date | string
|
|
109023
|
+
}
|
|
109024
|
+
|
|
109025
|
+
export type PendingBrandInvoicePaymentUpdateInput = {
|
|
109026
|
+
invoiceId?: StringFieldUpdateOperationsInput | string
|
|
109027
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
109028
|
+
source?: StringFieldUpdateOperationsInput | string
|
|
109029
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
109030
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
109031
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
109032
|
+
brand?: BrandUpdateOneWithoutPendingBrandInvoicePaymentsNestedInput
|
|
109033
|
+
}
|
|
109034
|
+
|
|
109035
|
+
export type PendingBrandInvoicePaymentUncheckedUpdateInput = {
|
|
109036
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
109037
|
+
invoiceId?: StringFieldUpdateOperationsInput | string
|
|
109038
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
109039
|
+
source?: StringFieldUpdateOperationsInput | string
|
|
109040
|
+
brandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
109041
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
109042
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
109043
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
109044
|
+
}
|
|
109045
|
+
|
|
109046
|
+
export type PendingBrandInvoicePaymentCreateManyInput = {
|
|
109047
|
+
id?: number
|
|
109048
|
+
invoiceId: string
|
|
109049
|
+
type: string
|
|
109050
|
+
source: string
|
|
109051
|
+
brandId?: number | null
|
|
109052
|
+
status: string
|
|
109053
|
+
createdAt?: Date | string
|
|
109054
|
+
updatedAt?: Date | string
|
|
109055
|
+
}
|
|
109056
|
+
|
|
109057
|
+
export type PendingBrandInvoicePaymentUpdateManyMutationInput = {
|
|
109058
|
+
invoiceId?: StringFieldUpdateOperationsInput | string
|
|
109059
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
109060
|
+
source?: StringFieldUpdateOperationsInput | string
|
|
109061
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
109062
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
109063
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
109064
|
+
}
|
|
109065
|
+
|
|
109066
|
+
export type PendingBrandInvoicePaymentUncheckedUpdateManyInput = {
|
|
109067
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
109068
|
+
invoiceId?: StringFieldUpdateOperationsInput | string
|
|
109069
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
109070
|
+
source?: StringFieldUpdateOperationsInput | string
|
|
109071
|
+
brandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
109072
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
109073
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
109074
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
109075
|
+
}
|
|
109076
|
+
|
|
107696
109077
|
export type PaymentTransactionCreateInput = {
|
|
107697
109078
|
amount: number
|
|
107698
109079
|
balance: number
|
|
@@ -108712,6 +110093,8 @@ export namespace Prisma {
|
|
|
108712
110093
|
label?: string | null
|
|
108713
110094
|
template: string
|
|
108714
110095
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
110096
|
+
createdAt?: Date | string | null
|
|
110097
|
+
updatedAt?: Date | string | null
|
|
108715
110098
|
brand?: BrandCreateNestedOneWithoutMessageTemplateInput
|
|
108716
110099
|
}
|
|
108717
110100
|
|
|
@@ -108721,12 +110104,16 @@ export namespace Prisma {
|
|
|
108721
110104
|
template: string
|
|
108722
110105
|
brandId?: number | null
|
|
108723
110106
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
110107
|
+
createdAt?: Date | string | null
|
|
110108
|
+
updatedAt?: Date | string | null
|
|
108724
110109
|
}
|
|
108725
110110
|
|
|
108726
110111
|
export type MessageTemplateUpdateInput = {
|
|
108727
110112
|
label?: NullableStringFieldUpdateOperationsInput | string | null
|
|
108728
110113
|
template?: StringFieldUpdateOperationsInput | string
|
|
108729
110114
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
110115
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
110116
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
108730
110117
|
brand?: BrandUpdateOneWithoutMessageTemplateNestedInput
|
|
108731
110118
|
}
|
|
108732
110119
|
|
|
@@ -108736,6 +110123,8 @@ export namespace Prisma {
|
|
|
108736
110123
|
template?: StringFieldUpdateOperationsInput | string
|
|
108737
110124
|
brandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
108738
110125
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
110126
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
110127
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
108739
110128
|
}
|
|
108740
110129
|
|
|
108741
110130
|
export type MessageTemplateCreateManyInput = {
|
|
@@ -108744,12 +110133,16 @@ export namespace Prisma {
|
|
|
108744
110133
|
template: string
|
|
108745
110134
|
brandId?: number | null
|
|
108746
110135
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
110136
|
+
createdAt?: Date | string | null
|
|
110137
|
+
updatedAt?: Date | string | null
|
|
108747
110138
|
}
|
|
108748
110139
|
|
|
108749
110140
|
export type MessageTemplateUpdateManyMutationInput = {
|
|
108750
110141
|
label?: NullableStringFieldUpdateOperationsInput | string | null
|
|
108751
110142
|
template?: StringFieldUpdateOperationsInput | string
|
|
108752
110143
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
110144
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
110145
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
108753
110146
|
}
|
|
108754
110147
|
|
|
108755
110148
|
export type MessageTemplateUncheckedUpdateManyInput = {
|
|
@@ -108758,6 +110151,8 @@ export namespace Prisma {
|
|
|
108758
110151
|
template?: StringFieldUpdateOperationsInput | string
|
|
108759
110152
|
brandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
108760
110153
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
110154
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
110155
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
108761
110156
|
}
|
|
108762
110157
|
|
|
108763
110158
|
export type EmailTemplateCreateInput = {
|
|
@@ -111407,6 +112802,12 @@ export namespace Prisma {
|
|
|
111407
112802
|
none?: BrandToCategoryWhereInput
|
|
111408
112803
|
}
|
|
111409
112804
|
|
|
112805
|
+
export type PendingBrandInvoicePaymentListRelationFilter = {
|
|
112806
|
+
every?: PendingBrandInvoicePaymentWhereInput
|
|
112807
|
+
some?: PendingBrandInvoicePaymentWhereInput
|
|
112808
|
+
none?: PendingBrandInvoicePaymentWhereInput
|
|
112809
|
+
}
|
|
112810
|
+
|
|
111410
112811
|
export type SavedFileListRelationFilter = {
|
|
111411
112812
|
every?: SavedFileWhereInput
|
|
111412
112813
|
some?: SavedFileWhereInput
|
|
@@ -111495,6 +112896,10 @@ export namespace Prisma {
|
|
|
111495
112896
|
_count?: SortOrder
|
|
111496
112897
|
}
|
|
111497
112898
|
|
|
112899
|
+
export type PendingBrandInvoicePaymentOrderByRelationAggregateInput = {
|
|
112900
|
+
_count?: SortOrder
|
|
112901
|
+
}
|
|
112902
|
+
|
|
111498
112903
|
export type SavedFileOrderByRelationAggregateInput = {
|
|
111499
112904
|
_count?: SortOrder
|
|
111500
112905
|
}
|
|
@@ -113753,6 +115158,55 @@ export namespace Prisma {
|
|
|
113753
115158
|
countryId?: SortOrder
|
|
113754
115159
|
}
|
|
113755
115160
|
|
|
115161
|
+
export type PendingBrandInvoicePaymentOrderByRelevanceInput = {
|
|
115162
|
+
fields: PendingBrandInvoicePaymentOrderByRelevanceFieldEnum | PendingBrandInvoicePaymentOrderByRelevanceFieldEnum[]
|
|
115163
|
+
sort: SortOrder
|
|
115164
|
+
search: string
|
|
115165
|
+
}
|
|
115166
|
+
|
|
115167
|
+
export type PendingBrandInvoicePaymentCountOrderByAggregateInput = {
|
|
115168
|
+
id?: SortOrder
|
|
115169
|
+
invoiceId?: SortOrder
|
|
115170
|
+
type?: SortOrder
|
|
115171
|
+
source?: SortOrder
|
|
115172
|
+
brandId?: SortOrder
|
|
115173
|
+
status?: SortOrder
|
|
115174
|
+
createdAt?: SortOrder
|
|
115175
|
+
updatedAt?: SortOrder
|
|
115176
|
+
}
|
|
115177
|
+
|
|
115178
|
+
export type PendingBrandInvoicePaymentAvgOrderByAggregateInput = {
|
|
115179
|
+
id?: SortOrder
|
|
115180
|
+
brandId?: SortOrder
|
|
115181
|
+
}
|
|
115182
|
+
|
|
115183
|
+
export type PendingBrandInvoicePaymentMaxOrderByAggregateInput = {
|
|
115184
|
+
id?: SortOrder
|
|
115185
|
+
invoiceId?: SortOrder
|
|
115186
|
+
type?: SortOrder
|
|
115187
|
+
source?: SortOrder
|
|
115188
|
+
brandId?: SortOrder
|
|
115189
|
+
status?: SortOrder
|
|
115190
|
+
createdAt?: SortOrder
|
|
115191
|
+
updatedAt?: SortOrder
|
|
115192
|
+
}
|
|
115193
|
+
|
|
115194
|
+
export type PendingBrandInvoicePaymentMinOrderByAggregateInput = {
|
|
115195
|
+
id?: SortOrder
|
|
115196
|
+
invoiceId?: SortOrder
|
|
115197
|
+
type?: SortOrder
|
|
115198
|
+
source?: SortOrder
|
|
115199
|
+
brandId?: SortOrder
|
|
115200
|
+
status?: SortOrder
|
|
115201
|
+
createdAt?: SortOrder
|
|
115202
|
+
updatedAt?: SortOrder
|
|
115203
|
+
}
|
|
115204
|
+
|
|
115205
|
+
export type PendingBrandInvoicePaymentSumOrderByAggregateInput = {
|
|
115206
|
+
id?: SortOrder
|
|
115207
|
+
brandId?: SortOrder
|
|
115208
|
+
}
|
|
115209
|
+
|
|
113756
115210
|
export type PaymentTransactionNullableRelationFilter = {
|
|
113757
115211
|
is?: PaymentTransactionWhereInput | null
|
|
113758
115212
|
isNot?: PaymentTransactionWhereInput | null
|
|
@@ -114486,6 +115940,8 @@ export namespace Prisma {
|
|
|
114486
115940
|
template?: SortOrder
|
|
114487
115941
|
brandId?: SortOrder
|
|
114488
115942
|
metaData?: SortOrder
|
|
115943
|
+
createdAt?: SortOrder
|
|
115944
|
+
updatedAt?: SortOrder
|
|
114489
115945
|
}
|
|
114490
115946
|
|
|
114491
115947
|
export type MessageTemplateAvgOrderByAggregateInput = {
|
|
@@ -114498,6 +115954,8 @@ export namespace Prisma {
|
|
|
114498
115954
|
label?: SortOrder
|
|
114499
115955
|
template?: SortOrder
|
|
114500
115956
|
brandId?: SortOrder
|
|
115957
|
+
createdAt?: SortOrder
|
|
115958
|
+
updatedAt?: SortOrder
|
|
114501
115959
|
}
|
|
114502
115960
|
|
|
114503
115961
|
export type MessageTemplateMinOrderByAggregateInput = {
|
|
@@ -114505,6 +115963,8 @@ export namespace Prisma {
|
|
|
114505
115963
|
label?: SortOrder
|
|
114506
115964
|
template?: SortOrder
|
|
114507
115965
|
brandId?: SortOrder
|
|
115966
|
+
createdAt?: SortOrder
|
|
115967
|
+
updatedAt?: SortOrder
|
|
114508
115968
|
}
|
|
114509
115969
|
|
|
114510
115970
|
export type MessageTemplateSumOrderByAggregateInput = {
|
|
@@ -116959,6 +118419,13 @@ export namespace Prisma {
|
|
|
116959
118419
|
connect?: PaymentTransactionWhereUniqueInput | PaymentTransactionWhereUniqueInput[]
|
|
116960
118420
|
}
|
|
116961
118421
|
|
|
118422
|
+
export type PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput = {
|
|
118423
|
+
create?: XOR<PendingBrandInvoicePaymentCreateWithoutBrandInput, PendingBrandInvoicePaymentUncheckedCreateWithoutBrandInput> | PendingBrandInvoicePaymentCreateWithoutBrandInput[] | PendingBrandInvoicePaymentUncheckedCreateWithoutBrandInput[]
|
|
118424
|
+
connectOrCreate?: PendingBrandInvoicePaymentCreateOrConnectWithoutBrandInput | PendingBrandInvoicePaymentCreateOrConnectWithoutBrandInput[]
|
|
118425
|
+
createMany?: PendingBrandInvoicePaymentCreateManyBrandInputEnvelope
|
|
118426
|
+
connect?: PendingBrandInvoicePaymentWhereUniqueInput | PendingBrandInvoicePaymentWhereUniqueInput[]
|
|
118427
|
+
}
|
|
118428
|
+
|
|
116962
118429
|
export type SavedFileCreateNestedManyWithoutBrandInput = {
|
|
116963
118430
|
create?: XOR<SavedFileCreateWithoutBrandInput, SavedFileUncheckedCreateWithoutBrandInput> | SavedFileCreateWithoutBrandInput[] | SavedFileUncheckedCreateWithoutBrandInput[]
|
|
116964
118431
|
connectOrCreate?: SavedFileCreateOrConnectWithoutBrandInput | SavedFileCreateOrConnectWithoutBrandInput[]
|
|
@@ -117130,6 +118597,13 @@ export namespace Prisma {
|
|
|
117130
118597
|
connect?: PaymentTransactionWhereUniqueInput | PaymentTransactionWhereUniqueInput[]
|
|
117131
118598
|
}
|
|
117132
118599
|
|
|
118600
|
+
export type PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput = {
|
|
118601
|
+
create?: XOR<PendingBrandInvoicePaymentCreateWithoutBrandInput, PendingBrandInvoicePaymentUncheckedCreateWithoutBrandInput> | PendingBrandInvoicePaymentCreateWithoutBrandInput[] | PendingBrandInvoicePaymentUncheckedCreateWithoutBrandInput[]
|
|
118602
|
+
connectOrCreate?: PendingBrandInvoicePaymentCreateOrConnectWithoutBrandInput | PendingBrandInvoicePaymentCreateOrConnectWithoutBrandInput[]
|
|
118603
|
+
createMany?: PendingBrandInvoicePaymentCreateManyBrandInputEnvelope
|
|
118604
|
+
connect?: PendingBrandInvoicePaymentWhereUniqueInput | PendingBrandInvoicePaymentWhereUniqueInput[]
|
|
118605
|
+
}
|
|
118606
|
+
|
|
117133
118607
|
export type SavedFileUncheckedCreateNestedManyWithoutBrandInput = {
|
|
117134
118608
|
create?: XOR<SavedFileCreateWithoutBrandInput, SavedFileUncheckedCreateWithoutBrandInput> | SavedFileCreateWithoutBrandInput[] | SavedFileUncheckedCreateWithoutBrandInput[]
|
|
117135
118609
|
connectOrCreate?: SavedFileCreateOrConnectWithoutBrandInput | SavedFileCreateOrConnectWithoutBrandInput[]
|
|
@@ -117359,6 +118833,20 @@ export namespace Prisma {
|
|
|
117359
118833
|
deleteMany?: PaymentTransactionScalarWhereInput | PaymentTransactionScalarWhereInput[]
|
|
117360
118834
|
}
|
|
117361
118835
|
|
|
118836
|
+
export type PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput = {
|
|
118837
|
+
create?: XOR<PendingBrandInvoicePaymentCreateWithoutBrandInput, PendingBrandInvoicePaymentUncheckedCreateWithoutBrandInput> | PendingBrandInvoicePaymentCreateWithoutBrandInput[] | PendingBrandInvoicePaymentUncheckedCreateWithoutBrandInput[]
|
|
118838
|
+
connectOrCreate?: PendingBrandInvoicePaymentCreateOrConnectWithoutBrandInput | PendingBrandInvoicePaymentCreateOrConnectWithoutBrandInput[]
|
|
118839
|
+
upsert?: PendingBrandInvoicePaymentUpsertWithWhereUniqueWithoutBrandInput | PendingBrandInvoicePaymentUpsertWithWhereUniqueWithoutBrandInput[]
|
|
118840
|
+
createMany?: PendingBrandInvoicePaymentCreateManyBrandInputEnvelope
|
|
118841
|
+
set?: PendingBrandInvoicePaymentWhereUniqueInput | PendingBrandInvoicePaymentWhereUniqueInput[]
|
|
118842
|
+
disconnect?: PendingBrandInvoicePaymentWhereUniqueInput | PendingBrandInvoicePaymentWhereUniqueInput[]
|
|
118843
|
+
delete?: PendingBrandInvoicePaymentWhereUniqueInput | PendingBrandInvoicePaymentWhereUniqueInput[]
|
|
118844
|
+
connect?: PendingBrandInvoicePaymentWhereUniqueInput | PendingBrandInvoicePaymentWhereUniqueInput[]
|
|
118845
|
+
update?: PendingBrandInvoicePaymentUpdateWithWhereUniqueWithoutBrandInput | PendingBrandInvoicePaymentUpdateWithWhereUniqueWithoutBrandInput[]
|
|
118846
|
+
updateMany?: PendingBrandInvoicePaymentUpdateManyWithWhereWithoutBrandInput | PendingBrandInvoicePaymentUpdateManyWithWhereWithoutBrandInput[]
|
|
118847
|
+
deleteMany?: PendingBrandInvoicePaymentScalarWhereInput | PendingBrandInvoicePaymentScalarWhereInput[]
|
|
118848
|
+
}
|
|
118849
|
+
|
|
117362
118850
|
export type SavedFileUpdateManyWithoutBrandNestedInput = {
|
|
117363
118851
|
create?: XOR<SavedFileCreateWithoutBrandInput, SavedFileUncheckedCreateWithoutBrandInput> | SavedFileCreateWithoutBrandInput[] | SavedFileUncheckedCreateWithoutBrandInput[]
|
|
117364
118852
|
connectOrCreate?: SavedFileCreateOrConnectWithoutBrandInput | SavedFileCreateOrConnectWithoutBrandInput[]
|
|
@@ -117693,6 +119181,20 @@ export namespace Prisma {
|
|
|
117693
119181
|
deleteMany?: PaymentTransactionScalarWhereInput | PaymentTransactionScalarWhereInput[]
|
|
117694
119182
|
}
|
|
117695
119183
|
|
|
119184
|
+
export type PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput = {
|
|
119185
|
+
create?: XOR<PendingBrandInvoicePaymentCreateWithoutBrandInput, PendingBrandInvoicePaymentUncheckedCreateWithoutBrandInput> | PendingBrandInvoicePaymentCreateWithoutBrandInput[] | PendingBrandInvoicePaymentUncheckedCreateWithoutBrandInput[]
|
|
119186
|
+
connectOrCreate?: PendingBrandInvoicePaymentCreateOrConnectWithoutBrandInput | PendingBrandInvoicePaymentCreateOrConnectWithoutBrandInput[]
|
|
119187
|
+
upsert?: PendingBrandInvoicePaymentUpsertWithWhereUniqueWithoutBrandInput | PendingBrandInvoicePaymentUpsertWithWhereUniqueWithoutBrandInput[]
|
|
119188
|
+
createMany?: PendingBrandInvoicePaymentCreateManyBrandInputEnvelope
|
|
119189
|
+
set?: PendingBrandInvoicePaymentWhereUniqueInput | PendingBrandInvoicePaymentWhereUniqueInput[]
|
|
119190
|
+
disconnect?: PendingBrandInvoicePaymentWhereUniqueInput | PendingBrandInvoicePaymentWhereUniqueInput[]
|
|
119191
|
+
delete?: PendingBrandInvoicePaymentWhereUniqueInput | PendingBrandInvoicePaymentWhereUniqueInput[]
|
|
119192
|
+
connect?: PendingBrandInvoicePaymentWhereUniqueInput | PendingBrandInvoicePaymentWhereUniqueInput[]
|
|
119193
|
+
update?: PendingBrandInvoicePaymentUpdateWithWhereUniqueWithoutBrandInput | PendingBrandInvoicePaymentUpdateWithWhereUniqueWithoutBrandInput[]
|
|
119194
|
+
updateMany?: PendingBrandInvoicePaymentUpdateManyWithWhereWithoutBrandInput | PendingBrandInvoicePaymentUpdateManyWithWhereWithoutBrandInput[]
|
|
119195
|
+
deleteMany?: PendingBrandInvoicePaymentScalarWhereInput | PendingBrandInvoicePaymentScalarWhereInput[]
|
|
119196
|
+
}
|
|
119197
|
+
|
|
117696
119198
|
export type SavedFileUncheckedUpdateManyWithoutBrandNestedInput = {
|
|
117697
119199
|
create?: XOR<SavedFileCreateWithoutBrandInput, SavedFileUncheckedCreateWithoutBrandInput> | SavedFileCreateWithoutBrandInput[] | SavedFileUncheckedCreateWithoutBrandInput[]
|
|
117698
119200
|
connectOrCreate?: SavedFileCreateOrConnectWithoutBrandInput | SavedFileCreateOrConnectWithoutBrandInput[]
|
|
@@ -120683,6 +122185,22 @@ export namespace Prisma {
|
|
|
120683
122185
|
update?: XOR<XOR<CountryUpdateToOneWithWhereWithoutStatesInput, CountryUpdateWithoutStatesInput>, CountryUncheckedUpdateWithoutStatesInput>
|
|
120684
122186
|
}
|
|
120685
122187
|
|
|
122188
|
+
export type BrandCreateNestedOneWithoutPendingBrandInvoicePaymentsInput = {
|
|
122189
|
+
create?: XOR<BrandCreateWithoutPendingBrandInvoicePaymentsInput, BrandUncheckedCreateWithoutPendingBrandInvoicePaymentsInput>
|
|
122190
|
+
connectOrCreate?: BrandCreateOrConnectWithoutPendingBrandInvoicePaymentsInput
|
|
122191
|
+
connect?: BrandWhereUniqueInput
|
|
122192
|
+
}
|
|
122193
|
+
|
|
122194
|
+
export type BrandUpdateOneWithoutPendingBrandInvoicePaymentsNestedInput = {
|
|
122195
|
+
create?: XOR<BrandCreateWithoutPendingBrandInvoicePaymentsInput, BrandUncheckedCreateWithoutPendingBrandInvoicePaymentsInput>
|
|
122196
|
+
connectOrCreate?: BrandCreateOrConnectWithoutPendingBrandInvoicePaymentsInput
|
|
122197
|
+
upsert?: BrandUpsertWithoutPendingBrandInvoicePaymentsInput
|
|
122198
|
+
disconnect?: BrandWhereInput | boolean
|
|
122199
|
+
delete?: BrandWhereInput | boolean
|
|
122200
|
+
connect?: BrandWhereUniqueInput
|
|
122201
|
+
update?: XOR<XOR<BrandUpdateToOneWithWhereWithoutPendingBrandInvoicePaymentsInput, BrandUpdateWithoutPendingBrandInvoicePaymentsInput>, BrandUncheckedUpdateWithoutPendingBrandInvoicePaymentsInput>
|
|
122202
|
+
}
|
|
122203
|
+
|
|
120686
122204
|
export type BrandCreateNestedOneWithoutPaymentTransactionsInput = {
|
|
120687
122205
|
create?: XOR<BrandCreateWithoutPaymentTransactionsInput, BrandUncheckedCreateWithoutPaymentTransactionsInput>
|
|
120688
122206
|
connectOrCreate?: BrandCreateOrConnectWithoutPaymentTransactionsInput
|
|
@@ -123662,6 +125180,7 @@ export namespace Prisma {
|
|
|
123662
125180
|
reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
|
|
123663
125181
|
categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
|
|
123664
125182
|
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
|
|
125183
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
|
|
123665
125184
|
savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
|
|
123666
125185
|
creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
|
|
123667
125186
|
affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
|
|
@@ -123703,6 +125222,7 @@ export namespace Prisma {
|
|
|
123703
125222
|
reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
|
|
123704
125223
|
categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
123705
125224
|
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
|
|
125225
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
|
|
123706
125226
|
savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
|
|
123707
125227
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
|
|
123708
125228
|
affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -125817,6 +127337,7 @@ export namespace Prisma {
|
|
|
125817
127337
|
reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
|
|
125818
127338
|
categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
|
|
125819
127339
|
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
|
|
127340
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
|
|
125820
127341
|
savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
|
|
125821
127342
|
creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
|
|
125822
127343
|
affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
|
|
@@ -125858,6 +127379,7 @@ export namespace Prisma {
|
|
|
125858
127379
|
reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
|
|
125859
127380
|
categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
125860
127381
|
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
|
|
127382
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
|
|
125861
127383
|
savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
|
|
125862
127384
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
|
|
125863
127385
|
affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -126020,6 +127542,7 @@ export namespace Prisma {
|
|
|
126020
127542
|
reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
|
|
126021
127543
|
categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
|
|
126022
127544
|
paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
|
|
127545
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
|
|
126023
127546
|
savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
|
|
126024
127547
|
creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
|
|
126025
127548
|
affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
|
|
@@ -126061,6 +127584,7 @@ export namespace Prisma {
|
|
|
126061
127584
|
reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
|
|
126062
127585
|
categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
126063
127586
|
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
|
|
127587
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
|
|
126064
127588
|
savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
|
|
126065
127589
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
|
|
126066
127590
|
affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -126201,6 +127725,7 @@ export namespace Prisma {
|
|
|
126201
127725
|
reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
|
|
126202
127726
|
categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
|
|
126203
127727
|
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
|
|
127728
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
|
|
126204
127729
|
savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
|
|
126205
127730
|
creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
|
|
126206
127731
|
affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
|
|
@@ -126242,6 +127767,7 @@ export namespace Prisma {
|
|
|
126242
127767
|
reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
|
|
126243
127768
|
categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
126244
127769
|
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
|
|
127770
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
|
|
126245
127771
|
savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
|
|
126246
127772
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
|
|
126247
127773
|
affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -126404,6 +127930,7 @@ export namespace Prisma {
|
|
|
126404
127930
|
reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
|
|
126405
127931
|
categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
|
|
126406
127932
|
paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
|
|
127933
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
|
|
126407
127934
|
savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
|
|
126408
127935
|
creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
|
|
126409
127936
|
affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
|
|
@@ -126445,6 +127972,7 @@ export namespace Prisma {
|
|
|
126445
127972
|
reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
|
|
126446
127973
|
categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
126447
127974
|
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
|
|
127975
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
|
|
126448
127976
|
savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
|
|
126449
127977
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
|
|
126450
127978
|
affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -126585,6 +128113,7 @@ export namespace Prisma {
|
|
|
126585
128113
|
reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
|
|
126586
128114
|
categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
|
|
126587
128115
|
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
|
|
128116
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
|
|
126588
128117
|
savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
|
|
126589
128118
|
creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
|
|
126590
128119
|
affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
|
|
@@ -126626,6 +128155,7 @@ export namespace Prisma {
|
|
|
126626
128155
|
reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
|
|
126627
128156
|
categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
126628
128157
|
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
|
|
128158
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
|
|
126629
128159
|
savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
|
|
126630
128160
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
|
|
126631
128161
|
affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -126788,6 +128318,7 @@ export namespace Prisma {
|
|
|
126788
128318
|
reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
|
|
126789
128319
|
categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
|
|
126790
128320
|
paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
|
|
128321
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
|
|
126791
128322
|
savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
|
|
126792
128323
|
creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
|
|
126793
128324
|
affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
|
|
@@ -126829,6 +128360,7 @@ export namespace Prisma {
|
|
|
126829
128360
|
reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
|
|
126830
128361
|
categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
126831
128362
|
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
|
|
128363
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
|
|
126832
128364
|
savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
|
|
126833
128365
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
|
|
126834
128366
|
affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -127599,6 +129131,7 @@ export namespace Prisma {
|
|
|
127599
129131
|
reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
|
|
127600
129132
|
categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
|
|
127601
129133
|
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
|
|
129134
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
|
|
127602
129135
|
savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
|
|
127603
129136
|
creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
|
|
127604
129137
|
affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
|
|
@@ -127640,6 +129173,7 @@ export namespace Prisma {
|
|
|
127640
129173
|
reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
|
|
127641
129174
|
categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
127642
129175
|
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
|
|
129176
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
|
|
127643
129177
|
savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
|
|
127644
129178
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
|
|
127645
129179
|
affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -127802,6 +129336,7 @@ export namespace Prisma {
|
|
|
127802
129336
|
reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
|
|
127803
129337
|
categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
|
|
127804
129338
|
paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
|
|
129339
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
|
|
127805
129340
|
savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
|
|
127806
129341
|
creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
|
|
127807
129342
|
affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
|
|
@@ -127843,6 +129378,7 @@ export namespace Prisma {
|
|
|
127843
129378
|
reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
|
|
127844
129379
|
categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
127845
129380
|
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
|
|
129381
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
|
|
127846
129382
|
savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
|
|
127847
129383
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
|
|
127848
129384
|
affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -128427,6 +129963,35 @@ export namespace Prisma {
|
|
|
128427
129963
|
skipDuplicates?: boolean
|
|
128428
129964
|
}
|
|
128429
129965
|
|
|
129966
|
+
export type PendingBrandInvoicePaymentCreateWithoutBrandInput = {
|
|
129967
|
+
invoiceId: string
|
|
129968
|
+
type: string
|
|
129969
|
+
source: string
|
|
129970
|
+
status: string
|
|
129971
|
+
createdAt?: Date | string
|
|
129972
|
+
updatedAt?: Date | string
|
|
129973
|
+
}
|
|
129974
|
+
|
|
129975
|
+
export type PendingBrandInvoicePaymentUncheckedCreateWithoutBrandInput = {
|
|
129976
|
+
id?: number
|
|
129977
|
+
invoiceId: string
|
|
129978
|
+
type: string
|
|
129979
|
+
source: string
|
|
129980
|
+
status: string
|
|
129981
|
+
createdAt?: Date | string
|
|
129982
|
+
updatedAt?: Date | string
|
|
129983
|
+
}
|
|
129984
|
+
|
|
129985
|
+
export type PendingBrandInvoicePaymentCreateOrConnectWithoutBrandInput = {
|
|
129986
|
+
where: PendingBrandInvoicePaymentWhereUniqueInput
|
|
129987
|
+
create: XOR<PendingBrandInvoicePaymentCreateWithoutBrandInput, PendingBrandInvoicePaymentUncheckedCreateWithoutBrandInput>
|
|
129988
|
+
}
|
|
129989
|
+
|
|
129990
|
+
export type PendingBrandInvoicePaymentCreateManyBrandInputEnvelope = {
|
|
129991
|
+
data: PendingBrandInvoicePaymentCreateManyBrandInput | PendingBrandInvoicePaymentCreateManyBrandInput[]
|
|
129992
|
+
skipDuplicates?: boolean
|
|
129993
|
+
}
|
|
129994
|
+
|
|
128430
129995
|
export type SavedFileCreateWithoutBrandInput = {
|
|
128431
129996
|
title?: string | null
|
|
128432
129997
|
type?: string | null
|
|
@@ -128520,6 +130085,8 @@ export namespace Prisma {
|
|
|
128520
130085
|
label?: string | null
|
|
128521
130086
|
template: string
|
|
128522
130087
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
130088
|
+
createdAt?: Date | string | null
|
|
130089
|
+
updatedAt?: Date | string | null
|
|
128523
130090
|
}
|
|
128524
130091
|
|
|
128525
130092
|
export type MessageTemplateUncheckedCreateWithoutBrandInput = {
|
|
@@ -128527,6 +130094,8 @@ export namespace Prisma {
|
|
|
128527
130094
|
label?: string | null
|
|
128528
130095
|
template: string
|
|
128529
130096
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
130097
|
+
createdAt?: Date | string | null
|
|
130098
|
+
updatedAt?: Date | string | null
|
|
128530
130099
|
}
|
|
128531
130100
|
|
|
128532
130101
|
export type MessageTemplateCreateOrConnectWithoutBrandInput = {
|
|
@@ -128859,6 +130428,7 @@ export namespace Prisma {
|
|
|
128859
130428
|
reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
|
|
128860
130429
|
categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
|
|
128861
130430
|
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
|
|
130431
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
|
|
128862
130432
|
savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
|
|
128863
130433
|
creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
|
|
128864
130434
|
affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
|
|
@@ -128900,6 +130470,7 @@ export namespace Prisma {
|
|
|
128900
130470
|
reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
|
|
128901
130471
|
categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
128902
130472
|
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
|
|
130473
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
|
|
128903
130474
|
savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
|
|
128904
130475
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
|
|
128905
130476
|
affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -128943,6 +130514,7 @@ export namespace Prisma {
|
|
|
128943
130514
|
reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
|
|
128944
130515
|
categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
|
|
128945
130516
|
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
|
|
130517
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
|
|
128946
130518
|
savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
|
|
128947
130519
|
creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
|
|
128948
130520
|
affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
|
|
@@ -128983,6 +130555,7 @@ export namespace Prisma {
|
|
|
128983
130555
|
reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
|
|
128984
130556
|
categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
128985
130557
|
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
|
|
130558
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
|
|
128986
130559
|
savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
|
|
128987
130560
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
|
|
128988
130561
|
affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -129501,6 +131074,36 @@ export namespace Prisma {
|
|
|
129501
131074
|
data: XOR<PaymentTransactionUpdateManyMutationInput, PaymentTransactionUncheckedUpdateManyWithoutBrandInput>
|
|
129502
131075
|
}
|
|
129503
131076
|
|
|
131077
|
+
export type PendingBrandInvoicePaymentUpsertWithWhereUniqueWithoutBrandInput = {
|
|
131078
|
+
where: PendingBrandInvoicePaymentWhereUniqueInput
|
|
131079
|
+
update: XOR<PendingBrandInvoicePaymentUpdateWithoutBrandInput, PendingBrandInvoicePaymentUncheckedUpdateWithoutBrandInput>
|
|
131080
|
+
create: XOR<PendingBrandInvoicePaymentCreateWithoutBrandInput, PendingBrandInvoicePaymentUncheckedCreateWithoutBrandInput>
|
|
131081
|
+
}
|
|
131082
|
+
|
|
131083
|
+
export type PendingBrandInvoicePaymentUpdateWithWhereUniqueWithoutBrandInput = {
|
|
131084
|
+
where: PendingBrandInvoicePaymentWhereUniqueInput
|
|
131085
|
+
data: XOR<PendingBrandInvoicePaymentUpdateWithoutBrandInput, PendingBrandInvoicePaymentUncheckedUpdateWithoutBrandInput>
|
|
131086
|
+
}
|
|
131087
|
+
|
|
131088
|
+
export type PendingBrandInvoicePaymentUpdateManyWithWhereWithoutBrandInput = {
|
|
131089
|
+
where: PendingBrandInvoicePaymentScalarWhereInput
|
|
131090
|
+
data: XOR<PendingBrandInvoicePaymentUpdateManyMutationInput, PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandInput>
|
|
131091
|
+
}
|
|
131092
|
+
|
|
131093
|
+
export type PendingBrandInvoicePaymentScalarWhereInput = {
|
|
131094
|
+
AND?: PendingBrandInvoicePaymentScalarWhereInput | PendingBrandInvoicePaymentScalarWhereInput[]
|
|
131095
|
+
OR?: PendingBrandInvoicePaymentScalarWhereInput[]
|
|
131096
|
+
NOT?: PendingBrandInvoicePaymentScalarWhereInput | PendingBrandInvoicePaymentScalarWhereInput[]
|
|
131097
|
+
id?: IntFilter<"PendingBrandInvoicePayment"> | number
|
|
131098
|
+
invoiceId?: StringFilter<"PendingBrandInvoicePayment"> | string
|
|
131099
|
+
type?: StringFilter<"PendingBrandInvoicePayment"> | string
|
|
131100
|
+
source?: StringFilter<"PendingBrandInvoicePayment"> | string
|
|
131101
|
+
brandId?: IntNullableFilter<"PendingBrandInvoicePayment"> | number | null
|
|
131102
|
+
status?: StringFilter<"PendingBrandInvoicePayment"> | string
|
|
131103
|
+
createdAt?: DateTimeFilter<"PendingBrandInvoicePayment"> | Date | string
|
|
131104
|
+
updatedAt?: DateTimeFilter<"PendingBrandInvoicePayment"> | Date | string
|
|
131105
|
+
}
|
|
131106
|
+
|
|
129504
131107
|
export type SavedFileUpsertWithWhereUniqueWithoutBrandInput = {
|
|
129505
131108
|
where: SavedFileWhereUniqueInput
|
|
129506
131109
|
update: XOR<SavedFileUpdateWithoutBrandInput, SavedFileUncheckedUpdateWithoutBrandInput>
|
|
@@ -129613,6 +131216,8 @@ export namespace Prisma {
|
|
|
129613
131216
|
template?: StringFilter<"MessageTemplate"> | string
|
|
129614
131217
|
brandId?: IntNullableFilter<"MessageTemplate"> | number | null
|
|
129615
131218
|
metaData?: JsonFilter<"MessageTemplate">
|
|
131219
|
+
createdAt?: DateTimeNullableFilter<"MessageTemplate"> | Date | string | null
|
|
131220
|
+
updatedAt?: DateTimeNullableFilter<"MessageTemplate"> | Date | string | null
|
|
129616
131221
|
}
|
|
129617
131222
|
|
|
129618
131223
|
export type EmailTemplateUpsertWithWhereUniqueWithoutBrandInput = {
|
|
@@ -129912,6 +131517,7 @@ export namespace Prisma {
|
|
|
129912
131517
|
reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
|
|
129913
131518
|
categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
|
|
129914
131519
|
paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
|
|
131520
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
|
|
129915
131521
|
savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
|
|
129916
131522
|
creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
|
|
129917
131523
|
affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
|
|
@@ -129953,6 +131559,7 @@ export namespace Prisma {
|
|
|
129953
131559
|
reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
|
|
129954
131560
|
categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
129955
131561
|
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
|
|
131562
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
|
|
129956
131563
|
savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
|
|
129957
131564
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
|
|
129958
131565
|
affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -130058,6 +131665,7 @@ export namespace Prisma {
|
|
|
130058
131665
|
reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
|
|
130059
131666
|
categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
|
|
130060
131667
|
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
|
|
131668
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
|
|
130061
131669
|
savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
|
|
130062
131670
|
creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
|
|
130063
131671
|
affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
|
|
@@ -130099,6 +131707,7 @@ export namespace Prisma {
|
|
|
130099
131707
|
reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
|
|
130100
131708
|
categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
130101
131709
|
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
|
|
131710
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
|
|
130102
131711
|
savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
|
|
130103
131712
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
|
|
130104
131713
|
affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -130217,6 +131826,7 @@ export namespace Prisma {
|
|
|
130217
131826
|
reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
|
|
130218
131827
|
categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
|
|
130219
131828
|
paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
|
|
131829
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
|
|
130220
131830
|
savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
|
|
130221
131831
|
creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
|
|
130222
131832
|
affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
|
|
@@ -130258,6 +131868,7 @@ export namespace Prisma {
|
|
|
130258
131868
|
reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
|
|
130259
131869
|
categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
130260
131870
|
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
|
|
131871
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
|
|
130261
131872
|
savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
|
|
130262
131873
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
|
|
130263
131874
|
affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -130348,6 +131959,7 @@ export namespace Prisma {
|
|
|
130348
131959
|
searchContacts?: SearchContactsCreateNestedManyWithoutBrandInput
|
|
130349
131960
|
categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
|
|
130350
131961
|
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
|
|
131962
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
|
|
130351
131963
|
savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
|
|
130352
131964
|
creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
|
|
130353
131965
|
affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
|
|
@@ -130389,6 +132001,7 @@ export namespace Prisma {
|
|
|
130389
132001
|
searchContacts?: SearchContactsUncheckedCreateNestedManyWithoutBrandInput
|
|
130390
132002
|
categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
130391
132003
|
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
|
|
132004
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
|
|
130392
132005
|
savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
|
|
130393
132006
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
|
|
130394
132007
|
affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -130507,6 +132120,7 @@ export namespace Prisma {
|
|
|
130507
132120
|
searchContacts?: SearchContactsUpdateManyWithoutBrandNestedInput
|
|
130508
132121
|
categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
|
|
130509
132122
|
paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
|
|
132123
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
|
|
130510
132124
|
savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
|
|
130511
132125
|
creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
|
|
130512
132126
|
affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
|
|
@@ -130548,6 +132162,7 @@ export namespace Prisma {
|
|
|
130548
132162
|
searchContacts?: SearchContactsUncheckedUpdateManyWithoutBrandNestedInput
|
|
130549
132163
|
categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
130550
132164
|
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
|
|
132165
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
|
|
130551
132166
|
savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
|
|
130552
132167
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
|
|
130553
132168
|
affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -130587,6 +132202,7 @@ export namespace Prisma {
|
|
|
130587
132202
|
reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
|
|
130588
132203
|
categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
|
|
130589
132204
|
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
|
|
132205
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
|
|
130590
132206
|
savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
|
|
130591
132207
|
creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
|
|
130592
132208
|
affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
|
|
@@ -130628,6 +132244,7 @@ export namespace Prisma {
|
|
|
130628
132244
|
reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
|
|
130629
132245
|
categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
130630
132246
|
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
|
|
132247
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
|
|
130631
132248
|
savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
|
|
130632
132249
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
|
|
130633
132250
|
affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -130703,6 +132320,7 @@ export namespace Prisma {
|
|
|
130703
132320
|
reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
|
|
130704
132321
|
categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
|
|
130705
132322
|
paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
|
|
132323
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
|
|
130706
132324
|
savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
|
|
130707
132325
|
creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
|
|
130708
132326
|
affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
|
|
@@ -130744,6 +132362,7 @@ export namespace Prisma {
|
|
|
130744
132362
|
reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
|
|
130745
132363
|
categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
130746
132364
|
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
|
|
132365
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
|
|
130747
132366
|
savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
|
|
130748
132367
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
|
|
130749
132368
|
affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -130807,6 +132426,7 @@ export namespace Prisma {
|
|
|
130807
132426
|
searchContacts?: SearchContactsCreateNestedManyWithoutBrandInput
|
|
130808
132427
|
reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
|
|
130809
132428
|
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
|
|
132429
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
|
|
130810
132430
|
savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
|
|
130811
132431
|
creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
|
|
130812
132432
|
affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
|
|
@@ -130848,6 +132468,7 @@ export namespace Prisma {
|
|
|
130848
132468
|
searchContacts?: SearchContactsUncheckedCreateNestedManyWithoutBrandInput
|
|
130849
132469
|
reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
|
|
130850
132470
|
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
|
|
132471
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
|
|
130851
132472
|
savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
|
|
130852
132473
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
|
|
130853
132474
|
affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -130922,6 +132543,7 @@ export namespace Prisma {
|
|
|
130922
132543
|
searchContacts?: SearchContactsUpdateManyWithoutBrandNestedInput
|
|
130923
132544
|
reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
|
|
130924
132545
|
paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
|
|
132546
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
|
|
130925
132547
|
savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
|
|
130926
132548
|
creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
|
|
130927
132549
|
affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
|
|
@@ -130963,6 +132585,7 @@ export namespace Prisma {
|
|
|
130963
132585
|
searchContacts?: SearchContactsUncheckedUpdateManyWithoutBrandNestedInput
|
|
130964
132586
|
reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
|
|
130965
132587
|
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
|
|
132588
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
|
|
130966
132589
|
savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
|
|
130967
132590
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
|
|
130968
132591
|
affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -132035,6 +133658,7 @@ export namespace Prisma {
|
|
|
132035
133658
|
reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
|
|
132036
133659
|
categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
|
|
132037
133660
|
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
|
|
133661
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
|
|
132038
133662
|
savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
|
|
132039
133663
|
creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
|
|
132040
133664
|
affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
|
|
@@ -132076,6 +133700,7 @@ export namespace Prisma {
|
|
|
132076
133700
|
reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
|
|
132077
133701
|
categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
132078
133702
|
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
|
|
133703
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
|
|
132079
133704
|
savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
|
|
132080
133705
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
|
|
132081
133706
|
affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -132545,6 +134170,7 @@ export namespace Prisma {
|
|
|
132545
134170
|
reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
|
|
132546
134171
|
categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
|
|
132547
134172
|
paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
|
|
134173
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
|
|
132548
134174
|
savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
|
|
132549
134175
|
creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
|
|
132550
134176
|
affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
|
|
@@ -132586,6 +134212,7 @@ export namespace Prisma {
|
|
|
132586
134212
|
reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
|
|
132587
134213
|
categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
132588
134214
|
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
|
|
134215
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
|
|
132589
134216
|
savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
|
|
132590
134217
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
|
|
132591
134218
|
affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -134631,6 +136258,7 @@ export namespace Prisma {
|
|
|
134631
136258
|
reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
|
|
134632
136259
|
categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
|
|
134633
136260
|
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
|
|
136261
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
|
|
134634
136262
|
savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
|
|
134635
136263
|
creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
|
|
134636
136264
|
affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
|
|
@@ -134672,6 +136300,7 @@ export namespace Prisma {
|
|
|
134672
136300
|
reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
|
|
134673
136301
|
categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
134674
136302
|
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
|
|
136303
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
|
|
134675
136304
|
savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
|
|
134676
136305
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
|
|
134677
136306
|
affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -134771,6 +136400,7 @@ export namespace Prisma {
|
|
|
134771
136400
|
reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
|
|
134772
136401
|
categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
|
|
134773
136402
|
paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
|
|
136403
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
|
|
134774
136404
|
savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
|
|
134775
136405
|
creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
|
|
134776
136406
|
affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
|
|
@@ -134812,6 +136442,7 @@ export namespace Prisma {
|
|
|
134812
136442
|
reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
|
|
134813
136443
|
categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
134814
136444
|
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
|
|
136445
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
|
|
134815
136446
|
savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
|
|
134816
136447
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
|
|
134817
136448
|
affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -139692,6 +141323,184 @@ export namespace Prisma {
|
|
|
139692
141323
|
campaigns?: CampaignToCountryUncheckedUpdateManyWithoutCountryNestedInput
|
|
139693
141324
|
}
|
|
139694
141325
|
|
|
141326
|
+
export type BrandCreateWithoutPendingBrandInvoicePaymentsInput = {
|
|
141327
|
+
name: string
|
|
141328
|
+
description?: string | null
|
|
141329
|
+
website: string
|
|
141330
|
+
monthlyContacts?: number | null
|
|
141331
|
+
monthlyReports?: number | null
|
|
141332
|
+
lastContactDistribution?: Date | string | null
|
|
141333
|
+
logoUrl?: string | null
|
|
141334
|
+
affiliateBaseUrl?: string | null
|
|
141335
|
+
affiliateCommission?: number | null
|
|
141336
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
141337
|
+
searchName?: string | null
|
|
141338
|
+
dedicatedSpecialist?: UserCreateNestedOneWithoutAssignedBrandsInput
|
|
141339
|
+
instagramProfile?: InstagramProfileCreateNestedOneWithoutBrandInput
|
|
141340
|
+
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutBrandInput
|
|
141341
|
+
tiktokProfile?: TiktokProfileCreateNestedOneWithoutBrandInput
|
|
141342
|
+
campaigns?: CampaignCreateNestedManyWithoutBrandInput
|
|
141343
|
+
brandUsers?: BrandUserProfileCreateNestedManyWithoutBrandInput
|
|
141344
|
+
searchContacts?: SearchContactsCreateNestedManyWithoutBrandInput
|
|
141345
|
+
reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
|
|
141346
|
+
categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
|
|
141347
|
+
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
|
|
141348
|
+
savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
|
|
141349
|
+
creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
|
|
141350
|
+
affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
|
|
141351
|
+
messageTemplate?: MessageTemplateCreateNestedManyWithoutBrandInput
|
|
141352
|
+
emailTemplates?: EmailTemplateCreateNestedManyWithoutBrandInput
|
|
141353
|
+
socialListeningLists?: SocialListeningListCreateNestedManyWithoutBrandInput
|
|
141354
|
+
campaignInvites?: CampaignInviteCreateNestedManyWithoutBrandInput
|
|
141355
|
+
images?: BrandToImageCreateNestedManyWithoutBrandInput
|
|
141356
|
+
creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
|
|
141357
|
+
sequences?: SequenceCreateNestedManyWithoutBrandInput
|
|
141358
|
+
impactRadiusEvents?: ImpactRadiusEventCreateNestedManyWithoutBrandInput
|
|
141359
|
+
cjEvents?: CjEventCreateNestedManyWithoutBrandInput
|
|
141360
|
+
shopifyStores?: ShopifyStoreCreateNestedManyWithoutBrandInput
|
|
141361
|
+
productLists?: ProductListCreateNestedManyWithoutBrandInput
|
|
141362
|
+
parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
|
|
141363
|
+
childBrands?: BrandCreateNestedManyWithoutParentBrandInput
|
|
141364
|
+
}
|
|
141365
|
+
|
|
141366
|
+
export type BrandUncheckedCreateWithoutPendingBrandInvoicePaymentsInput = {
|
|
141367
|
+
id?: number
|
|
141368
|
+
name: string
|
|
141369
|
+
description?: string | null
|
|
141370
|
+
website: string
|
|
141371
|
+
monthlyContacts?: number | null
|
|
141372
|
+
monthlyReports?: number | null
|
|
141373
|
+
lastContactDistribution?: Date | string | null
|
|
141374
|
+
logoUrl?: string | null
|
|
141375
|
+
affiliateBaseUrl?: string | null
|
|
141376
|
+
affiliateCommission?: number | null
|
|
141377
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
141378
|
+
specialistId?: number | null
|
|
141379
|
+
parentBrandId?: number | null
|
|
141380
|
+
searchName?: string | null
|
|
141381
|
+
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
141382
|
+
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
141383
|
+
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
141384
|
+
campaigns?: CampaignUncheckedCreateNestedManyWithoutBrandInput
|
|
141385
|
+
brandUsers?: BrandUserProfileUncheckedCreateNestedManyWithoutBrandInput
|
|
141386
|
+
searchContacts?: SearchContactsUncheckedCreateNestedManyWithoutBrandInput
|
|
141387
|
+
reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
|
|
141388
|
+
categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
141389
|
+
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
|
|
141390
|
+
savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
|
|
141391
|
+
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
|
|
141392
|
+
affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
|
|
141393
|
+
messageTemplate?: MessageTemplateUncheckedCreateNestedManyWithoutBrandInput
|
|
141394
|
+
emailTemplates?: EmailTemplateUncheckedCreateNestedManyWithoutBrandInput
|
|
141395
|
+
socialListeningLists?: SocialListeningListUncheckedCreateNestedManyWithoutBrandInput
|
|
141396
|
+
campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutBrandInput
|
|
141397
|
+
images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
|
|
141398
|
+
creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
|
|
141399
|
+
sequences?: SequenceUncheckedCreateNestedManyWithoutBrandInput
|
|
141400
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedCreateNestedManyWithoutBrandInput
|
|
141401
|
+
cjEvents?: CjEventUncheckedCreateNestedManyWithoutBrandInput
|
|
141402
|
+
shopifyStores?: ShopifyStoreUncheckedCreateNestedManyWithoutBrandInput
|
|
141403
|
+
productLists?: ProductListUncheckedCreateNestedManyWithoutBrandInput
|
|
141404
|
+
childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
|
|
141405
|
+
}
|
|
141406
|
+
|
|
141407
|
+
export type BrandCreateOrConnectWithoutPendingBrandInvoicePaymentsInput = {
|
|
141408
|
+
where: BrandWhereUniqueInput
|
|
141409
|
+
create: XOR<BrandCreateWithoutPendingBrandInvoicePaymentsInput, BrandUncheckedCreateWithoutPendingBrandInvoicePaymentsInput>
|
|
141410
|
+
}
|
|
141411
|
+
|
|
141412
|
+
export type BrandUpsertWithoutPendingBrandInvoicePaymentsInput = {
|
|
141413
|
+
update: XOR<BrandUpdateWithoutPendingBrandInvoicePaymentsInput, BrandUncheckedUpdateWithoutPendingBrandInvoicePaymentsInput>
|
|
141414
|
+
create: XOR<BrandCreateWithoutPendingBrandInvoicePaymentsInput, BrandUncheckedCreateWithoutPendingBrandInvoicePaymentsInput>
|
|
141415
|
+
where?: BrandWhereInput
|
|
141416
|
+
}
|
|
141417
|
+
|
|
141418
|
+
export type BrandUpdateToOneWithWhereWithoutPendingBrandInvoicePaymentsInput = {
|
|
141419
|
+
where?: BrandWhereInput
|
|
141420
|
+
data: XOR<BrandUpdateWithoutPendingBrandInvoicePaymentsInput, BrandUncheckedUpdateWithoutPendingBrandInvoicePaymentsInput>
|
|
141421
|
+
}
|
|
141422
|
+
|
|
141423
|
+
export type BrandUpdateWithoutPendingBrandInvoicePaymentsInput = {
|
|
141424
|
+
name?: StringFieldUpdateOperationsInput | string
|
|
141425
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
141426
|
+
website?: StringFieldUpdateOperationsInput | string
|
|
141427
|
+
monthlyContacts?: NullableIntFieldUpdateOperationsInput | number | null
|
|
141428
|
+
monthlyReports?: NullableIntFieldUpdateOperationsInput | number | null
|
|
141429
|
+
lastContactDistribution?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
141430
|
+
logoUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
141431
|
+
affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
141432
|
+
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
141433
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
141434
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
141435
|
+
dedicatedSpecialist?: UserUpdateOneWithoutAssignedBrandsNestedInput
|
|
141436
|
+
instagramProfile?: InstagramProfileUpdateOneWithoutBrandNestedInput
|
|
141437
|
+
youtubeProfile?: YoutubeProfileUpdateOneWithoutBrandNestedInput
|
|
141438
|
+
tiktokProfile?: TiktokProfileUpdateOneWithoutBrandNestedInput
|
|
141439
|
+
campaigns?: CampaignUpdateManyWithoutBrandNestedInput
|
|
141440
|
+
brandUsers?: BrandUserProfileUpdateManyWithoutBrandNestedInput
|
|
141441
|
+
searchContacts?: SearchContactsUpdateManyWithoutBrandNestedInput
|
|
141442
|
+
reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
|
|
141443
|
+
categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
|
|
141444
|
+
paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
|
|
141445
|
+
savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
|
|
141446
|
+
creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
|
|
141447
|
+
affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
|
|
141448
|
+
messageTemplate?: MessageTemplateUpdateManyWithoutBrandNestedInput
|
|
141449
|
+
emailTemplates?: EmailTemplateUpdateManyWithoutBrandNestedInput
|
|
141450
|
+
socialListeningLists?: SocialListeningListUpdateManyWithoutBrandNestedInput
|
|
141451
|
+
campaignInvites?: CampaignInviteUpdateManyWithoutBrandNestedInput
|
|
141452
|
+
images?: BrandToImageUpdateManyWithoutBrandNestedInput
|
|
141453
|
+
creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
|
|
141454
|
+
sequences?: SequenceUpdateManyWithoutBrandNestedInput
|
|
141455
|
+
impactRadiusEvents?: ImpactRadiusEventUpdateManyWithoutBrandNestedInput
|
|
141456
|
+
cjEvents?: CjEventUpdateManyWithoutBrandNestedInput
|
|
141457
|
+
shopifyStores?: ShopifyStoreUpdateManyWithoutBrandNestedInput
|
|
141458
|
+
productLists?: ProductListUpdateManyWithoutBrandNestedInput
|
|
141459
|
+
parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
|
|
141460
|
+
childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
|
|
141461
|
+
}
|
|
141462
|
+
|
|
141463
|
+
export type BrandUncheckedUpdateWithoutPendingBrandInvoicePaymentsInput = {
|
|
141464
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
141465
|
+
name?: StringFieldUpdateOperationsInput | string
|
|
141466
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
141467
|
+
website?: StringFieldUpdateOperationsInput | string
|
|
141468
|
+
monthlyContacts?: NullableIntFieldUpdateOperationsInput | number | null
|
|
141469
|
+
monthlyReports?: NullableIntFieldUpdateOperationsInput | number | null
|
|
141470
|
+
lastContactDistribution?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
141471
|
+
logoUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
141472
|
+
affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
141473
|
+
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
141474
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
141475
|
+
specialistId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
141476
|
+
parentBrandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
141477
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
141478
|
+
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
141479
|
+
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
141480
|
+
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
141481
|
+
campaigns?: CampaignUncheckedUpdateManyWithoutBrandNestedInput
|
|
141482
|
+
brandUsers?: BrandUserProfileUncheckedUpdateManyWithoutBrandNestedInput
|
|
141483
|
+
searchContacts?: SearchContactsUncheckedUpdateManyWithoutBrandNestedInput
|
|
141484
|
+
reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
|
|
141485
|
+
categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
141486
|
+
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
|
|
141487
|
+
savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
|
|
141488
|
+
creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
|
|
141489
|
+
affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
|
|
141490
|
+
messageTemplate?: MessageTemplateUncheckedUpdateManyWithoutBrandNestedInput
|
|
141491
|
+
emailTemplates?: EmailTemplateUncheckedUpdateManyWithoutBrandNestedInput
|
|
141492
|
+
socialListeningLists?: SocialListeningListUncheckedUpdateManyWithoutBrandNestedInput
|
|
141493
|
+
campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutBrandNestedInput
|
|
141494
|
+
images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
|
|
141495
|
+
creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
|
|
141496
|
+
sequences?: SequenceUncheckedUpdateManyWithoutBrandNestedInput
|
|
141497
|
+
impactRadiusEvents?: ImpactRadiusEventUncheckedUpdateManyWithoutBrandNestedInput
|
|
141498
|
+
cjEvents?: CjEventUncheckedUpdateManyWithoutBrandNestedInput
|
|
141499
|
+
shopifyStores?: ShopifyStoreUncheckedUpdateManyWithoutBrandNestedInput
|
|
141500
|
+
productLists?: ProductListUncheckedUpdateManyWithoutBrandNestedInput
|
|
141501
|
+
childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
|
|
141502
|
+
}
|
|
141503
|
+
|
|
139695
141504
|
export type BrandCreateWithoutPaymentTransactionsInput = {
|
|
139696
141505
|
name: string
|
|
139697
141506
|
description?: string | null
|
|
@@ -139713,6 +141522,7 @@ export namespace Prisma {
|
|
|
139713
141522
|
searchContacts?: SearchContactsCreateNestedManyWithoutBrandInput
|
|
139714
141523
|
reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
|
|
139715
141524
|
categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
|
|
141525
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
|
|
139716
141526
|
savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
|
|
139717
141527
|
creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
|
|
139718
141528
|
affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
|
|
@@ -139754,6 +141564,7 @@ export namespace Prisma {
|
|
|
139754
141564
|
searchContacts?: SearchContactsUncheckedCreateNestedManyWithoutBrandInput
|
|
139755
141565
|
reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
|
|
139756
141566
|
categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
141567
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
|
|
139757
141568
|
savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
|
|
139758
141569
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
|
|
139759
141570
|
affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -139974,6 +141785,7 @@ export namespace Prisma {
|
|
|
139974
141785
|
searchContacts?: SearchContactsUpdateManyWithoutBrandNestedInput
|
|
139975
141786
|
reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
|
|
139976
141787
|
categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
|
|
141788
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
|
|
139977
141789
|
savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
|
|
139978
141790
|
creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
|
|
139979
141791
|
affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
|
|
@@ -140015,6 +141827,7 @@ export namespace Prisma {
|
|
|
140015
141827
|
searchContacts?: SearchContactsUncheckedUpdateManyWithoutBrandNestedInput
|
|
140016
141828
|
reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
|
|
140017
141829
|
categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
141830
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
|
|
140018
141831
|
savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
|
|
140019
141832
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
|
|
140020
141833
|
affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -140733,6 +142546,7 @@ export namespace Prisma {
|
|
|
140733
142546
|
reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
|
|
140734
142547
|
categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
|
|
140735
142548
|
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
|
|
142549
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
|
|
140736
142550
|
savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
|
|
140737
142551
|
creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
|
|
140738
142552
|
messageTemplate?: MessageTemplateCreateNestedManyWithoutBrandInput
|
|
@@ -140774,6 +142588,7 @@ export namespace Prisma {
|
|
|
140774
142588
|
reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
|
|
140775
142589
|
categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
140776
142590
|
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
|
|
142591
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
|
|
140777
142592
|
savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
|
|
140778
142593
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
|
|
140779
142594
|
messageTemplate?: MessageTemplateUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -140860,6 +142675,7 @@ export namespace Prisma {
|
|
|
140860
142675
|
reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
|
|
140861
142676
|
categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
|
|
140862
142677
|
paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
|
|
142678
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
|
|
140863
142679
|
savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
|
|
140864
142680
|
creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
|
|
140865
142681
|
messageTemplate?: MessageTemplateUpdateManyWithoutBrandNestedInput
|
|
@@ -140901,6 +142717,7 @@ export namespace Prisma {
|
|
|
140901
142717
|
reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
|
|
140902
142718
|
categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
140903
142719
|
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
|
|
142720
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
|
|
140904
142721
|
savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
|
|
140905
142722
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
|
|
140906
142723
|
messageTemplate?: MessageTemplateUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -141896,6 +143713,7 @@ export namespace Prisma {
|
|
|
141896
143713
|
reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
|
|
141897
143714
|
categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
|
|
141898
143715
|
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
|
|
143716
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
|
|
141899
143717
|
creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
|
|
141900
143718
|
affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
|
|
141901
143719
|
messageTemplate?: MessageTemplateCreateNestedManyWithoutBrandInput
|
|
@@ -141937,6 +143755,7 @@ export namespace Prisma {
|
|
|
141937
143755
|
reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
|
|
141938
143756
|
categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
141939
143757
|
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
|
|
143758
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
|
|
141940
143759
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
|
|
141941
143760
|
affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
|
|
141942
143761
|
messageTemplate?: MessageTemplateUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -141991,6 +143810,7 @@ export namespace Prisma {
|
|
|
141991
143810
|
reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
|
|
141992
143811
|
categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
|
|
141993
143812
|
paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
|
|
143813
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
|
|
141994
143814
|
creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
|
|
141995
143815
|
affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
|
|
141996
143816
|
messageTemplate?: MessageTemplateUpdateManyWithoutBrandNestedInput
|
|
@@ -142032,6 +143852,7 @@ export namespace Prisma {
|
|
|
142032
143852
|
reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
|
|
142033
143853
|
categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
142034
143854
|
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
|
|
143855
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
|
|
142035
143856
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
|
|
142036
143857
|
affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
|
|
142037
143858
|
messageTemplate?: MessageTemplateUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -142070,6 +143891,7 @@ export namespace Prisma {
|
|
|
142070
143891
|
reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
|
|
142071
143892
|
categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
|
|
142072
143893
|
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
|
|
143894
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
|
|
142073
143895
|
savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
|
|
142074
143896
|
creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
|
|
142075
143897
|
affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
|
|
@@ -142111,6 +143933,7 @@ export namespace Prisma {
|
|
|
142111
143933
|
reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
|
|
142112
143934
|
categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
142113
143935
|
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
|
|
143936
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
|
|
142114
143937
|
savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
|
|
142115
143938
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
|
|
142116
143939
|
affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -142433,6 +144256,7 @@ export namespace Prisma {
|
|
|
142433
144256
|
reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
|
|
142434
144257
|
categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
|
|
142435
144258
|
paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
|
|
144259
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
|
|
142436
144260
|
savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
|
|
142437
144261
|
creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
|
|
142438
144262
|
affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
|
|
@@ -142474,6 +144298,7 @@ export namespace Prisma {
|
|
|
142474
144298
|
reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
|
|
142475
144299
|
categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
142476
144300
|
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
|
|
144301
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
|
|
142477
144302
|
savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
|
|
142478
144303
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
|
|
142479
144304
|
affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -142835,6 +144660,7 @@ export namespace Prisma {
|
|
|
142835
144660
|
reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
|
|
142836
144661
|
categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
|
|
142837
144662
|
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
|
|
144663
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
|
|
142838
144664
|
savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
|
|
142839
144665
|
affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
|
|
142840
144666
|
messageTemplate?: MessageTemplateCreateNestedManyWithoutBrandInput
|
|
@@ -142876,6 +144702,7 @@ export namespace Prisma {
|
|
|
142876
144702
|
reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
|
|
142877
144703
|
categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
142878
144704
|
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
|
|
144705
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
|
|
142879
144706
|
savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
|
|
142880
144707
|
affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
|
|
142881
144708
|
messageTemplate?: MessageTemplateUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -143146,6 +144973,7 @@ export namespace Prisma {
|
|
|
143146
144973
|
reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
|
|
143147
144974
|
categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
|
|
143148
144975
|
paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
|
|
144976
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
|
|
143149
144977
|
savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
|
|
143150
144978
|
affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
|
|
143151
144979
|
messageTemplate?: MessageTemplateUpdateManyWithoutBrandNestedInput
|
|
@@ -143187,6 +145015,7 @@ export namespace Prisma {
|
|
|
143187
145015
|
reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
|
|
143188
145016
|
categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
143189
145017
|
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
|
|
145018
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
|
|
143190
145019
|
savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
|
|
143191
145020
|
affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
|
|
143192
145021
|
messageTemplate?: MessageTemplateUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -144018,6 +145847,7 @@ export namespace Prisma {
|
|
|
144018
145847
|
reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
|
|
144019
145848
|
categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
|
|
144020
145849
|
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
|
|
145850
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
|
|
144021
145851
|
savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
|
|
144022
145852
|
creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
|
|
144023
145853
|
affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
|
|
@@ -144059,6 +145889,7 @@ export namespace Prisma {
|
|
|
144059
145889
|
reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
|
|
144060
145890
|
categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
144061
145891
|
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
|
|
145892
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
|
|
144062
145893
|
savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
|
|
144063
145894
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
|
|
144064
145895
|
affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -144113,6 +145944,7 @@ export namespace Prisma {
|
|
|
144113
145944
|
reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
|
|
144114
145945
|
categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
|
|
144115
145946
|
paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
|
|
145947
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
|
|
144116
145948
|
savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
|
|
144117
145949
|
creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
|
|
144118
145950
|
affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
|
|
@@ -144154,6 +145986,7 @@ export namespace Prisma {
|
|
|
144154
145986
|
reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
|
|
144155
145987
|
categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
144156
145988
|
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
|
|
145989
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
|
|
144157
145990
|
savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
|
|
144158
145991
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
|
|
144159
145992
|
affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -144192,6 +146025,7 @@ export namespace Prisma {
|
|
|
144192
146025
|
reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
|
|
144193
146026
|
categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
|
|
144194
146027
|
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
|
|
146028
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
|
|
144195
146029
|
savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
|
|
144196
146030
|
creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
|
|
144197
146031
|
affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
|
|
@@ -144233,6 +146067,7 @@ export namespace Prisma {
|
|
|
144233
146067
|
reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
|
|
144234
146068
|
categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
144235
146069
|
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
|
|
146070
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
|
|
144236
146071
|
savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
|
|
144237
146072
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
|
|
144238
146073
|
affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -144316,6 +146151,7 @@ export namespace Prisma {
|
|
|
144316
146151
|
reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
|
|
144317
146152
|
categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
|
|
144318
146153
|
paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
|
|
146154
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
|
|
144319
146155
|
savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
|
|
144320
146156
|
creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
|
|
144321
146157
|
affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
|
|
@@ -144357,6 +146193,7 @@ export namespace Prisma {
|
|
|
144357
146193
|
reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
|
|
144358
146194
|
categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
144359
146195
|
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
|
|
146196
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
|
|
144360
146197
|
savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
|
|
144361
146198
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
|
|
144362
146199
|
affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -144424,6 +146261,7 @@ export namespace Prisma {
|
|
|
144424
146261
|
reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
|
|
144425
146262
|
categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
|
|
144426
146263
|
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
|
|
146264
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
|
|
144427
146265
|
savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
|
|
144428
146266
|
creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
|
|
144429
146267
|
affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
|
|
@@ -144465,6 +146303,7 @@ export namespace Prisma {
|
|
|
144465
146303
|
reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
|
|
144466
146304
|
categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
144467
146305
|
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
|
|
146306
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
|
|
144468
146307
|
savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
|
|
144469
146308
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
|
|
144470
146309
|
affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -144538,6 +146377,7 @@ export namespace Prisma {
|
|
|
144538
146377
|
reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
|
|
144539
146378
|
categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
|
|
144540
146379
|
paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
|
|
146380
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
|
|
144541
146381
|
savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
|
|
144542
146382
|
creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
|
|
144543
146383
|
affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
|
|
@@ -144579,6 +146419,7 @@ export namespace Prisma {
|
|
|
144579
146419
|
reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
|
|
144580
146420
|
categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
144581
146421
|
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
|
|
146422
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
|
|
144582
146423
|
savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
|
|
144583
146424
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
|
|
144584
146425
|
affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -145471,6 +147312,7 @@ export namespace Prisma {
|
|
|
145471
147312
|
reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
|
|
145472
147313
|
categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
|
|
145473
147314
|
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
|
|
147315
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
|
|
145474
147316
|
savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
|
|
145475
147317
|
creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
|
|
145476
147318
|
affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
|
|
@@ -145512,6 +147354,7 @@ export namespace Prisma {
|
|
|
145512
147354
|
reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
|
|
145513
147355
|
categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
145514
147356
|
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
|
|
147357
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
|
|
145515
147358
|
savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
|
|
145516
147359
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
|
|
145517
147360
|
affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -145746,6 +147589,7 @@ export namespace Prisma {
|
|
|
145746
147589
|
reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
|
|
145747
147590
|
categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
|
|
145748
147591
|
paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
|
|
147592
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
|
|
145749
147593
|
savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
|
|
145750
147594
|
creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
|
|
145751
147595
|
affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
|
|
@@ -145787,6 +147631,7 @@ export namespace Prisma {
|
|
|
145787
147631
|
reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
|
|
145788
147632
|
categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
145789
147633
|
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
|
|
147634
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
|
|
145790
147635
|
savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
|
|
145791
147636
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
|
|
145792
147637
|
affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -146005,6 +147850,7 @@ export namespace Prisma {
|
|
|
146005
147850
|
reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
|
|
146006
147851
|
categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
|
|
146007
147852
|
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
|
|
147853
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
|
|
146008
147854
|
savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
|
|
146009
147855
|
creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
|
|
146010
147856
|
affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
|
|
@@ -146046,6 +147892,7 @@ export namespace Prisma {
|
|
|
146046
147892
|
reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
|
|
146047
147893
|
categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
146048
147894
|
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
|
|
147895
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
|
|
146049
147896
|
savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
|
|
146050
147897
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
|
|
146051
147898
|
affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -146280,6 +148127,7 @@ export namespace Prisma {
|
|
|
146280
148127
|
reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
|
|
146281
148128
|
categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
|
|
146282
148129
|
paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
|
|
148130
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
|
|
146283
148131
|
savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
|
|
146284
148132
|
creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
|
|
146285
148133
|
affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
|
|
@@ -146321,6 +148169,7 @@ export namespace Prisma {
|
|
|
146321
148169
|
reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
|
|
146322
148170
|
categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
146323
148171
|
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
|
|
148172
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
|
|
146324
148173
|
savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
|
|
146325
148174
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
|
|
146326
148175
|
affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -146587,6 +148436,7 @@ export namespace Prisma {
|
|
|
146587
148436
|
reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
|
|
146588
148437
|
categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
|
|
146589
148438
|
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
|
|
148439
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
|
|
146590
148440
|
savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
|
|
146591
148441
|
creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
|
|
146592
148442
|
affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
|
|
@@ -146628,6 +148478,7 @@ export namespace Prisma {
|
|
|
146628
148478
|
reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
|
|
146629
148479
|
categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
146630
148480
|
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
|
|
148481
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
|
|
146631
148482
|
savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
|
|
146632
148483
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
|
|
146633
148484
|
affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -146682,6 +148533,7 @@ export namespace Prisma {
|
|
|
146682
148533
|
reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
|
|
146683
148534
|
categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
|
|
146684
148535
|
paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
|
|
148536
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
|
|
146685
148537
|
savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
|
|
146686
148538
|
creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
|
|
146687
148539
|
affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
|
|
@@ -146723,6 +148575,7 @@ export namespace Prisma {
|
|
|
146723
148575
|
reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
|
|
146724
148576
|
categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
146725
148577
|
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
|
|
148578
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
|
|
146726
148579
|
savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
|
|
146727
148580
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
|
|
146728
148581
|
affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -146935,6 +148788,7 @@ export namespace Prisma {
|
|
|
146935
148788
|
reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
|
|
146936
148789
|
categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
|
|
146937
148790
|
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
|
|
148791
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
|
|
146938
148792
|
savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
|
|
146939
148793
|
creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
|
|
146940
148794
|
affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
|
|
@@ -146976,6 +148830,7 @@ export namespace Prisma {
|
|
|
146976
148830
|
reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
|
|
146977
148831
|
categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
146978
148832
|
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
|
|
148833
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
|
|
146979
148834
|
savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
|
|
146980
148835
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
|
|
146981
148836
|
affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -147315,6 +149170,7 @@ export namespace Prisma {
|
|
|
147315
149170
|
reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
|
|
147316
149171
|
categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
|
|
147317
149172
|
paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
|
|
149173
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
|
|
147318
149174
|
savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
|
|
147319
149175
|
creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
|
|
147320
149176
|
affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
|
|
@@ -147356,6 +149212,7 @@ export namespace Prisma {
|
|
|
147356
149212
|
reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
|
|
147357
149213
|
categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
147358
149214
|
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
|
|
149215
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
|
|
147359
149216
|
savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
|
|
147360
149217
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
|
|
147361
149218
|
affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -148122,6 +149979,7 @@ export namespace Prisma {
|
|
|
148122
149979
|
reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
|
|
148123
149980
|
categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
|
|
148124
149981
|
paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
|
|
149982
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
|
|
148125
149983
|
savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
|
|
148126
149984
|
creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
|
|
148127
149985
|
affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
|
|
@@ -148163,6 +150021,7 @@ export namespace Prisma {
|
|
|
148163
150021
|
reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
|
|
148164
150022
|
categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
|
|
148165
150023
|
paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
|
|
150024
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
|
|
148166
150025
|
savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
|
|
148167
150026
|
creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
|
|
148168
150027
|
affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -148246,6 +150105,7 @@ export namespace Prisma {
|
|
|
148246
150105
|
reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
|
|
148247
150106
|
categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
|
|
148248
150107
|
paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
|
|
150108
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
|
|
148249
150109
|
savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
|
|
148250
150110
|
creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
|
|
148251
150111
|
affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
|
|
@@ -148287,6 +150147,7 @@ export namespace Prisma {
|
|
|
148287
150147
|
reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
|
|
148288
150148
|
categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
148289
150149
|
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
|
|
150150
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
|
|
148290
150151
|
savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
|
|
148291
150152
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
|
|
148292
150153
|
affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -150245,6 +152106,7 @@ export namespace Prisma {
|
|
|
150245
152106
|
reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
|
|
150246
152107
|
categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
|
|
150247
152108
|
paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
|
|
152109
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
|
|
150248
152110
|
savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
|
|
150249
152111
|
creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
|
|
150250
152112
|
affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
|
|
@@ -150286,6 +152148,7 @@ export namespace Prisma {
|
|
|
150286
152148
|
reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
|
|
150287
152149
|
categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
150288
152150
|
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
|
|
152151
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
|
|
150289
152152
|
savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
|
|
150290
152153
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
|
|
150291
152154
|
affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -150938,6 +152801,16 @@ export namespace Prisma {
|
|
|
150938
152801
|
prevTransactionId?: number | null
|
|
150939
152802
|
}
|
|
150940
152803
|
|
|
152804
|
+
export type PendingBrandInvoicePaymentCreateManyBrandInput = {
|
|
152805
|
+
id?: number
|
|
152806
|
+
invoiceId: string
|
|
152807
|
+
type: string
|
|
152808
|
+
source: string
|
|
152809
|
+
status: string
|
|
152810
|
+
createdAt?: Date | string
|
|
152811
|
+
updatedAt?: Date | string
|
|
152812
|
+
}
|
|
152813
|
+
|
|
150941
152814
|
export type SavedFileCreateManyBrandInput = {
|
|
150942
152815
|
id?: number
|
|
150943
152816
|
title?: string | null
|
|
@@ -150970,6 +152843,8 @@ export namespace Prisma {
|
|
|
150970
152843
|
label?: string | null
|
|
150971
152844
|
template: string
|
|
150972
152845
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
152846
|
+
createdAt?: Date | string | null
|
|
152847
|
+
updatedAt?: Date | string | null
|
|
150973
152848
|
}
|
|
150974
152849
|
|
|
150975
152850
|
export type EmailTemplateCreateManyBrandInput = {
|
|
@@ -151411,6 +153286,35 @@ export namespace Prisma {
|
|
|
151411
153286
|
prevTransactionId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
151412
153287
|
}
|
|
151413
153288
|
|
|
153289
|
+
export type PendingBrandInvoicePaymentUpdateWithoutBrandInput = {
|
|
153290
|
+
invoiceId?: StringFieldUpdateOperationsInput | string
|
|
153291
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
153292
|
+
source?: StringFieldUpdateOperationsInput | string
|
|
153293
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
153294
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
153295
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
153296
|
+
}
|
|
153297
|
+
|
|
153298
|
+
export type PendingBrandInvoicePaymentUncheckedUpdateWithoutBrandInput = {
|
|
153299
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
153300
|
+
invoiceId?: StringFieldUpdateOperationsInput | string
|
|
153301
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
153302
|
+
source?: StringFieldUpdateOperationsInput | string
|
|
153303
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
153304
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
153305
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
153306
|
+
}
|
|
153307
|
+
|
|
153308
|
+
export type PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandInput = {
|
|
153309
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
153310
|
+
invoiceId?: StringFieldUpdateOperationsInput | string
|
|
153311
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
153312
|
+
source?: StringFieldUpdateOperationsInput | string
|
|
153313
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
153314
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
153315
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
153316
|
+
}
|
|
153317
|
+
|
|
151414
153318
|
export type SavedFileUpdateWithoutBrandInput = {
|
|
151415
153319
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
151416
153320
|
type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -151501,6 +153405,8 @@ export namespace Prisma {
|
|
|
151501
153405
|
label?: NullableStringFieldUpdateOperationsInput | string | null
|
|
151502
153406
|
template?: StringFieldUpdateOperationsInput | string
|
|
151503
153407
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
153408
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
153409
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
151504
153410
|
}
|
|
151505
153411
|
|
|
151506
153412
|
export type MessageTemplateUncheckedUpdateWithoutBrandInput = {
|
|
@@ -151508,6 +153414,8 @@ export namespace Prisma {
|
|
|
151508
153414
|
label?: NullableStringFieldUpdateOperationsInput | string | null
|
|
151509
153415
|
template?: StringFieldUpdateOperationsInput | string
|
|
151510
153416
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
153417
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
153418
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
151511
153419
|
}
|
|
151512
153420
|
|
|
151513
153421
|
export type MessageTemplateUncheckedUpdateManyWithoutBrandInput = {
|
|
@@ -151515,6 +153423,8 @@ export namespace Prisma {
|
|
|
151515
153423
|
label?: NullableStringFieldUpdateOperationsInput | string | null
|
|
151516
153424
|
template?: StringFieldUpdateOperationsInput | string
|
|
151517
153425
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
153426
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
153427
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
151518
153428
|
}
|
|
151519
153429
|
|
|
151520
153430
|
export type EmailTemplateUpdateWithoutBrandInput = {
|
|
@@ -151831,6 +153741,7 @@ export namespace Prisma {
|
|
|
151831
153741
|
reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
|
|
151832
153742
|
categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
|
|
151833
153743
|
paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
|
|
153744
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
|
|
151834
153745
|
savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
|
|
151835
153746
|
creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
|
|
151836
153747
|
affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
|
|
@@ -151871,6 +153782,7 @@ export namespace Prisma {
|
|
|
151871
153782
|
reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
|
|
151872
153783
|
categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
|
|
151873
153784
|
paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
|
|
153785
|
+
PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
|
|
151874
153786
|
savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
|
|
151875
153787
|
creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
|
|
151876
153788
|
affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -154635,6 +156547,10 @@ export namespace Prisma {
|
|
|
154635
156547
|
* @deprecated Use StateDefaultArgs instead
|
|
154636
156548
|
*/
|
|
154637
156549
|
export type StateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = StateDefaultArgs<ExtArgs>
|
|
156550
|
+
/**
|
|
156551
|
+
* @deprecated Use PendingBrandInvoicePaymentDefaultArgs instead
|
|
156552
|
+
*/
|
|
156553
|
+
export type PendingBrandInvoicePaymentArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = PendingBrandInvoicePaymentDefaultArgs<ExtArgs>
|
|
154638
156554
|
/**
|
|
154639
156555
|
* @deprecated Use PaymentTransactionDefaultArgs instead
|
|
154640
156556
|
*/
|