@creator.co/creatorco-prisma-client 1.0.58 → 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/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
  */
@@ -58883,484 +59003,422 @@ export namespace Prisma {
58883
59003
 
58884
59004
 
58885
59005
  /**
58886
- * Model PaymentTransaction
59006
+ * Model PendingBrandInvoicePayment
58887
59007
  */
58888
59008
 
58889
- export type AggregatePaymentTransaction = {
58890
- _count: PaymentTransactionCountAggregateOutputType | null
58891
- _avg: PaymentTransactionAvgAggregateOutputType | null
58892
- _sum: PaymentTransactionSumAggregateOutputType | null
58893
- _min: PaymentTransactionMinAggregateOutputType | null
58894
- _max: PaymentTransactionMaxAggregateOutputType | null
59009
+ export type AggregatePendingBrandInvoicePayment = {
59010
+ _count: PendingBrandInvoicePaymentCountAggregateOutputType | null
59011
+ _avg: PendingBrandInvoicePaymentAvgAggregateOutputType | null
59012
+ _sum: PendingBrandInvoicePaymentSumAggregateOutputType | null
59013
+ _min: PendingBrandInvoicePaymentMinAggregateOutputType | null
59014
+ _max: PendingBrandInvoicePaymentMaxAggregateOutputType | null
58895
59015
  }
58896
59016
 
58897
- export type PaymentTransactionAvgAggregateOutputType = {
59017
+ export type PendingBrandInvoicePaymentAvgAggregateOutputType = {
58898
59018
  id: number | null
58899
- amount: number | null
58900
- balance: number | null
58901
- accountId: number | null
58902
59019
  brandId: number | null
58903
- creatorId: number | null
58904
- prevTransactionId: number | null
58905
59020
  }
58906
59021
 
58907
- export type PaymentTransactionSumAggregateOutputType = {
59022
+ export type PendingBrandInvoicePaymentSumAggregateOutputType = {
58908
59023
  id: number | null
58909
- amount: number | null
58910
- balance: number | null
58911
- accountId: number | null
58912
59024
  brandId: number | null
58913
- creatorId: number | null
58914
- prevTransactionId: number | null
58915
59025
  }
58916
59026
 
58917
- export type PaymentTransactionMinAggregateOutputType = {
59027
+ export type PendingBrandInvoicePaymentMinAggregateOutputType = {
58918
59028
  id: number | null
58919
- amount: number | null
58920
- balance: number | null
59029
+ invoiceId: string | null
58921
59030
  type: string | null
58922
- date: Date | null
58923
- notes: string | null
58924
- accountId: number | null
59031
+ source: string | null
58925
59032
  brandId: number | null
58926
- creatorId: number | null
58927
- prevTransactionId: number | null
59033
+ status: string | null
59034
+ createdAt: Date | null
59035
+ updatedAt: Date | null
58928
59036
  }
58929
59037
 
58930
- export type PaymentTransactionMaxAggregateOutputType = {
59038
+ export type PendingBrandInvoicePaymentMaxAggregateOutputType = {
58931
59039
  id: number | null
58932
- amount: number | null
58933
- balance: number | null
59040
+ invoiceId: string | null
58934
59041
  type: string | null
58935
- date: Date | null
58936
- notes: string | null
58937
- accountId: number | null
59042
+ source: string | null
58938
59043
  brandId: number | null
58939
- creatorId: number | null
58940
- prevTransactionId: number | null
59044
+ status: string | null
59045
+ createdAt: Date | null
59046
+ updatedAt: Date | null
58941
59047
  }
58942
59048
 
58943
- export type PaymentTransactionCountAggregateOutputType = {
59049
+ export type PendingBrandInvoicePaymentCountAggregateOutputType = {
58944
59050
  id: number
58945
- amount: number
58946
- balance: number
59051
+ invoiceId: number
58947
59052
  type: number
58948
- date: number
58949
- notes: number
58950
- metaData: number
58951
- accountId: number
59053
+ source: number
58952
59054
  brandId: number
58953
- creatorId: number
58954
- prevTransactionId: number
59055
+ status: number
59056
+ createdAt: number
59057
+ updatedAt: number
58955
59058
  _all: number
58956
59059
  }
58957
59060
 
58958
59061
 
58959
- export type PaymentTransactionAvgAggregateInputType = {
59062
+ export type PendingBrandInvoicePaymentAvgAggregateInputType = {
58960
59063
  id?: true
58961
- amount?: true
58962
- balance?: true
58963
- accountId?: true
58964
59064
  brandId?: true
58965
- creatorId?: true
58966
- prevTransactionId?: true
58967
59065
  }
58968
59066
 
58969
- export type PaymentTransactionSumAggregateInputType = {
59067
+ export type PendingBrandInvoicePaymentSumAggregateInputType = {
58970
59068
  id?: true
58971
- amount?: true
58972
- balance?: true
58973
- accountId?: true
58974
59069
  brandId?: true
58975
- creatorId?: true
58976
- prevTransactionId?: true
58977
59070
  }
58978
59071
 
58979
- export type PaymentTransactionMinAggregateInputType = {
59072
+ export type PendingBrandInvoicePaymentMinAggregateInputType = {
58980
59073
  id?: true
58981
- amount?: true
58982
- balance?: true
59074
+ invoiceId?: true
58983
59075
  type?: true
58984
- date?: true
58985
- notes?: true
58986
- accountId?: true
59076
+ source?: true
58987
59077
  brandId?: true
58988
- creatorId?: true
58989
- prevTransactionId?: true
59078
+ status?: true
59079
+ createdAt?: true
59080
+ updatedAt?: true
58990
59081
  }
58991
59082
 
58992
- export type PaymentTransactionMaxAggregateInputType = {
59083
+ export type PendingBrandInvoicePaymentMaxAggregateInputType = {
58993
59084
  id?: true
58994
- amount?: true
58995
- balance?: true
59085
+ invoiceId?: true
58996
59086
  type?: true
58997
- date?: true
58998
- notes?: true
58999
- accountId?: true
59087
+ source?: true
59000
59088
  brandId?: true
59001
- creatorId?: true
59002
- prevTransactionId?: true
59089
+ status?: true
59090
+ createdAt?: true
59091
+ updatedAt?: true
59003
59092
  }
59004
59093
 
59005
- export type PaymentTransactionCountAggregateInputType = {
59094
+ export type PendingBrandInvoicePaymentCountAggregateInputType = {
59006
59095
  id?: true
59007
- amount?: true
59008
- balance?: true
59096
+ invoiceId?: true
59009
59097
  type?: true
59010
- date?: true
59011
- notes?: true
59012
- metaData?: true
59013
- accountId?: true
59098
+ source?: true
59014
59099
  brandId?: true
59015
- creatorId?: true
59016
- prevTransactionId?: true
59100
+ status?: true
59101
+ createdAt?: true
59102
+ updatedAt?: true
59017
59103
  _all?: true
59018
59104
  }
59019
59105
 
59020
- export type PaymentTransactionAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
59106
+ export type PendingBrandInvoicePaymentAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
59021
59107
  /**
59022
- * Filter which PaymentTransaction to aggregate.
59108
+ * Filter which PendingBrandInvoicePayment to aggregate.
59023
59109
  */
59024
- where?: PaymentTransactionWhereInput
59110
+ where?: PendingBrandInvoicePaymentWhereInput
59025
59111
  /**
59026
59112
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
59027
59113
  *
59028
- * Determine the order of PaymentTransactions to fetch.
59114
+ * Determine the order of PendingBrandInvoicePayments to fetch.
59029
59115
  */
59030
- orderBy?: PaymentTransactionOrderByWithRelationAndSearchRelevanceInput | PaymentTransactionOrderByWithRelationAndSearchRelevanceInput[]
59116
+ orderBy?: PendingBrandInvoicePaymentOrderByWithRelationAndSearchRelevanceInput | PendingBrandInvoicePaymentOrderByWithRelationAndSearchRelevanceInput[]
59031
59117
  /**
59032
59118
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
59033
59119
  *
59034
59120
  * Sets the start position
59035
59121
  */
59036
- cursor?: PaymentTransactionWhereUniqueInput
59122
+ cursor?: PendingBrandInvoicePaymentWhereUniqueInput
59037
59123
  /**
59038
59124
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
59039
59125
  *
59040
- * Take `±n` PaymentTransactions from the position of the cursor.
59126
+ * Take `±n` PendingBrandInvoicePayments from the position of the cursor.
59041
59127
  */
59042
59128
  take?: number
59043
59129
  /**
59044
59130
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
59045
59131
  *
59046
- * Skip the first `n` PaymentTransactions.
59132
+ * Skip the first `n` PendingBrandInvoicePayments.
59047
59133
  */
59048
59134
  skip?: number
59049
59135
  /**
59050
59136
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
59051
59137
  *
59052
- * Count returned PaymentTransactions
59138
+ * Count returned PendingBrandInvoicePayments
59053
59139
  **/
59054
- _count?: true | PaymentTransactionCountAggregateInputType
59140
+ _count?: true | PendingBrandInvoicePaymentCountAggregateInputType
59055
59141
  /**
59056
59142
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
59057
59143
  *
59058
59144
  * Select which fields to average
59059
59145
  **/
59060
- _avg?: PaymentTransactionAvgAggregateInputType
59146
+ _avg?: PendingBrandInvoicePaymentAvgAggregateInputType
59061
59147
  /**
59062
59148
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
59063
59149
  *
59064
59150
  * Select which fields to sum
59065
59151
  **/
59066
- _sum?: PaymentTransactionSumAggregateInputType
59152
+ _sum?: PendingBrandInvoicePaymentSumAggregateInputType
59067
59153
  /**
59068
59154
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
59069
59155
  *
59070
59156
  * Select which fields to find the minimum value
59071
59157
  **/
59072
- _min?: PaymentTransactionMinAggregateInputType
59158
+ _min?: PendingBrandInvoicePaymentMinAggregateInputType
59073
59159
  /**
59074
59160
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
59075
59161
  *
59076
59162
  * Select which fields to find the maximum value
59077
59163
  **/
59078
- _max?: PaymentTransactionMaxAggregateInputType
59164
+ _max?: PendingBrandInvoicePaymentMaxAggregateInputType
59079
59165
  }
59080
59166
 
59081
- export type GetPaymentTransactionAggregateType<T extends PaymentTransactionAggregateArgs> = {
59082
- [P in keyof T & keyof AggregatePaymentTransaction]: P extends '_count' | 'count'
59167
+ export type GetPendingBrandInvoicePaymentAggregateType<T extends PendingBrandInvoicePaymentAggregateArgs> = {
59168
+ [P in keyof T & keyof AggregatePendingBrandInvoicePayment]: P extends '_count' | 'count'
59083
59169
  ? T[P] extends true
59084
59170
  ? number
59085
- : GetScalarType<T[P], AggregatePaymentTransaction[P]>
59086
- : GetScalarType<T[P], AggregatePaymentTransaction[P]>
59171
+ : GetScalarType<T[P], AggregatePendingBrandInvoicePayment[P]>
59172
+ : GetScalarType<T[P], AggregatePendingBrandInvoicePayment[P]>
59087
59173
  }
59088
59174
 
59089
59175
 
59090
59176
 
59091
59177
 
59092
- export type PaymentTransactionGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
59093
- where?: PaymentTransactionWhereInput
59094
- orderBy?: PaymentTransactionOrderByWithAggregationInput | PaymentTransactionOrderByWithAggregationInput[]
59095
- by: PaymentTransactionScalarFieldEnum[] | PaymentTransactionScalarFieldEnum
59096
- having?: PaymentTransactionScalarWhereWithAggregatesInput
59178
+ export type PendingBrandInvoicePaymentGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
59179
+ where?: PendingBrandInvoicePaymentWhereInput
59180
+ orderBy?: PendingBrandInvoicePaymentOrderByWithAggregationInput | PendingBrandInvoicePaymentOrderByWithAggregationInput[]
59181
+ by: PendingBrandInvoicePaymentScalarFieldEnum[] | PendingBrandInvoicePaymentScalarFieldEnum
59182
+ having?: PendingBrandInvoicePaymentScalarWhereWithAggregatesInput
59097
59183
  take?: number
59098
59184
  skip?: number
59099
- _count?: PaymentTransactionCountAggregateInputType | true
59100
- _avg?: PaymentTransactionAvgAggregateInputType
59101
- _sum?: PaymentTransactionSumAggregateInputType
59102
- _min?: PaymentTransactionMinAggregateInputType
59103
- _max?: PaymentTransactionMaxAggregateInputType
59185
+ _count?: PendingBrandInvoicePaymentCountAggregateInputType | true
59186
+ _avg?: PendingBrandInvoicePaymentAvgAggregateInputType
59187
+ _sum?: PendingBrandInvoicePaymentSumAggregateInputType
59188
+ _min?: PendingBrandInvoicePaymentMinAggregateInputType
59189
+ _max?: PendingBrandInvoicePaymentMaxAggregateInputType
59104
59190
  }
59105
59191
 
59106
- export type PaymentTransactionGroupByOutputType = {
59192
+ export type PendingBrandInvoicePaymentGroupByOutputType = {
59107
59193
  id: number
59108
- amount: number
59109
- balance: number
59194
+ invoiceId: string
59110
59195
  type: string
59111
- date: Date
59112
- notes: string | null
59113
- metaData: JsonValue
59114
- accountId: number
59196
+ source: string
59115
59197
  brandId: number | null
59116
- creatorId: number | null
59117
- prevTransactionId: number | null
59118
- _count: PaymentTransactionCountAggregateOutputType | null
59119
- _avg: PaymentTransactionAvgAggregateOutputType | null
59120
- _sum: PaymentTransactionSumAggregateOutputType | null
59121
- _min: PaymentTransactionMinAggregateOutputType | null
59122
- _max: PaymentTransactionMaxAggregateOutputType | 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
59123
59206
  }
59124
59207
 
59125
- type GetPaymentTransactionGroupByPayload<T extends PaymentTransactionGroupByArgs> = Prisma.PrismaPromise<
59208
+ type GetPendingBrandInvoicePaymentGroupByPayload<T extends PendingBrandInvoicePaymentGroupByArgs> = Prisma.PrismaPromise<
59126
59209
  Array<
59127
- PickEnumerable<PaymentTransactionGroupByOutputType, T['by']> &
59210
+ PickEnumerable<PendingBrandInvoicePaymentGroupByOutputType, T['by']> &
59128
59211
  {
59129
- [P in ((keyof T) & (keyof PaymentTransactionGroupByOutputType))]: P extends '_count'
59212
+ [P in ((keyof T) & (keyof PendingBrandInvoicePaymentGroupByOutputType))]: P extends '_count'
59130
59213
  ? T[P] extends boolean
59131
59214
  ? number
59132
- : GetScalarType<T[P], PaymentTransactionGroupByOutputType[P]>
59133
- : GetScalarType<T[P], PaymentTransactionGroupByOutputType[P]>
59215
+ : GetScalarType<T[P], PendingBrandInvoicePaymentGroupByOutputType[P]>
59216
+ : GetScalarType<T[P], PendingBrandInvoicePaymentGroupByOutputType[P]>
59134
59217
  }
59135
59218
  >
59136
59219
  >
59137
59220
 
59138
59221
 
59139
- export type PaymentTransactionSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
59222
+ export type PendingBrandInvoicePaymentSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
59140
59223
  id?: boolean
59141
- amount?: boolean
59142
- balance?: boolean
59224
+ invoiceId?: boolean
59143
59225
  type?: boolean
59144
- date?: boolean
59145
- notes?: boolean
59146
- metaData?: boolean
59147
- accountId?: boolean
59226
+ source?: boolean
59148
59227
  brandId?: boolean
59149
- creatorId?: boolean
59150
- prevTransactionId?: boolean
59151
- brand?: boolean | PaymentTransaction$brandArgs<ExtArgs>
59152
- creator?: boolean | PaymentTransaction$creatorArgs<ExtArgs>
59153
- prevTransaction?: boolean | PaymentTransaction$prevTransactionArgs<ExtArgs>
59154
- nextTransaction?: boolean | PaymentTransaction$nextTransactionArgs<ExtArgs>
59155
- }, ExtArgs["result"]["paymentTransaction"]>
59228
+ status?: boolean
59229
+ createdAt?: boolean
59230
+ updatedAt?: boolean
59231
+ brand?: boolean | PendingBrandInvoicePayment$brandArgs<ExtArgs>
59232
+ }, ExtArgs["result"]["pendingBrandInvoicePayment"]>
59156
59233
 
59157
- export type PaymentTransactionSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
59234
+ export type PendingBrandInvoicePaymentSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
59158
59235
  id?: boolean
59159
- amount?: boolean
59160
- balance?: boolean
59236
+ invoiceId?: boolean
59161
59237
  type?: boolean
59162
- date?: boolean
59163
- notes?: boolean
59164
- metaData?: boolean
59165
- accountId?: boolean
59238
+ source?: boolean
59166
59239
  brandId?: boolean
59167
- creatorId?: boolean
59168
- prevTransactionId?: boolean
59169
- brand?: boolean | PaymentTransaction$brandArgs<ExtArgs>
59170
- creator?: boolean | PaymentTransaction$creatorArgs<ExtArgs>
59171
- prevTransaction?: boolean | PaymentTransaction$prevTransactionArgs<ExtArgs>
59172
- }, ExtArgs["result"]["paymentTransaction"]>
59240
+ status?: boolean
59241
+ createdAt?: boolean
59242
+ updatedAt?: boolean
59243
+ brand?: boolean | PendingBrandInvoicePayment$brandArgs<ExtArgs>
59244
+ }, ExtArgs["result"]["pendingBrandInvoicePayment"]>
59173
59245
 
59174
- export type PaymentTransactionSelectScalar = {
59246
+ export type PendingBrandInvoicePaymentSelectScalar = {
59175
59247
  id?: boolean
59176
- amount?: boolean
59177
- balance?: boolean
59248
+ invoiceId?: boolean
59178
59249
  type?: boolean
59179
- date?: boolean
59180
- notes?: boolean
59181
- metaData?: boolean
59182
- accountId?: boolean
59250
+ source?: boolean
59183
59251
  brandId?: boolean
59184
- creatorId?: boolean
59185
- prevTransactionId?: boolean
59252
+ status?: boolean
59253
+ createdAt?: boolean
59254
+ updatedAt?: boolean
59186
59255
  }
59187
59256
 
59188
- export type PaymentTransactionInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
59189
- brand?: boolean | PaymentTransaction$brandArgs<ExtArgs>
59190
- creator?: boolean | PaymentTransaction$creatorArgs<ExtArgs>
59191
- prevTransaction?: boolean | PaymentTransaction$prevTransactionArgs<ExtArgs>
59192
- nextTransaction?: boolean | PaymentTransaction$nextTransactionArgs<ExtArgs>
59257
+ export type PendingBrandInvoicePaymentInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
59258
+ brand?: boolean | PendingBrandInvoicePayment$brandArgs<ExtArgs>
59193
59259
  }
59194
- export type PaymentTransactionIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
59195
- brand?: boolean | PaymentTransaction$brandArgs<ExtArgs>
59196
- creator?: boolean | PaymentTransaction$creatorArgs<ExtArgs>
59197
- prevTransaction?: boolean | PaymentTransaction$prevTransactionArgs<ExtArgs>
59260
+ export type PendingBrandInvoicePaymentIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
59261
+ brand?: boolean | PendingBrandInvoicePayment$brandArgs<ExtArgs>
59198
59262
  }
59199
59263
 
59200
- export type $PaymentTransactionPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
59201
- name: "PaymentTransaction"
59264
+ export type $PendingBrandInvoicePaymentPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
59265
+ name: "PendingBrandInvoicePayment"
59202
59266
  objects: {
59203
59267
  brand: Prisma.$BrandPayload<ExtArgs> | null
59204
- creator: Prisma.$UserPayload<ExtArgs> | null
59205
- prevTransaction: Prisma.$PaymentTransactionPayload<ExtArgs> | null
59206
- nextTransaction: Prisma.$PaymentTransactionPayload<ExtArgs> | null
59207
59268
  }
59208
59269
  scalars: $Extensions.GetPayloadResult<{
59209
59270
  id: number
59210
- amount: number
59211
- balance: number
59271
+ invoiceId: string
59212
59272
  type: string
59213
- date: Date
59214
- notes: string | null
59215
- metaData: Prisma.JsonValue
59216
- accountId: number
59273
+ source: string
59217
59274
  brandId: number | null
59218
- creatorId: number | null
59219
- prevTransactionId: number | null
59220
- }, ExtArgs["result"]["paymentTransaction"]>
59275
+ status: string
59276
+ createdAt: Date
59277
+ updatedAt: Date
59278
+ }, ExtArgs["result"]["pendingBrandInvoicePayment"]>
59221
59279
  composites: {}
59222
59280
  }
59223
59281
 
59224
- type PaymentTransactionGetPayload<S extends boolean | null | undefined | PaymentTransactionDefaultArgs> = $Result.GetResult<Prisma.$PaymentTransactionPayload, S>
59282
+ type PendingBrandInvoicePaymentGetPayload<S extends boolean | null | undefined | PendingBrandInvoicePaymentDefaultArgs> = $Result.GetResult<Prisma.$PendingBrandInvoicePaymentPayload, S>
59225
59283
 
59226
- type PaymentTransactionCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
59227
- Omit<PaymentTransactionFindManyArgs, 'select' | 'include' | 'distinct'> & {
59228
- select?: PaymentTransactionCountAggregateInputType | true
59284
+ type PendingBrandInvoicePaymentCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
59285
+ Omit<PendingBrandInvoicePaymentFindManyArgs, 'select' | 'include' | 'distinct'> & {
59286
+ select?: PendingBrandInvoicePaymentCountAggregateInputType | true
59229
59287
  }
59230
59288
 
59231
- export interface PaymentTransactionDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
59232
- [K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['PaymentTransaction'], meta: { name: 'PaymentTransaction' } }
59289
+ export interface PendingBrandInvoicePaymentDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
59290
+ [K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['PendingBrandInvoicePayment'], meta: { name: 'PendingBrandInvoicePayment' } }
59233
59291
  /**
59234
- * Find zero or one PaymentTransaction that matches the filter.
59235
- * @param {PaymentTransactionFindUniqueArgs} args - Arguments to find a PaymentTransaction
59292
+ * Find zero or one PendingBrandInvoicePayment that matches the filter.
59293
+ * @param {PendingBrandInvoicePaymentFindUniqueArgs} args - Arguments to find a PendingBrandInvoicePayment
59236
59294
  * @example
59237
- * // Get one PaymentTransaction
59238
- * const paymentTransaction = await prisma.paymentTransaction.findUnique({
59295
+ * // Get one PendingBrandInvoicePayment
59296
+ * const pendingBrandInvoicePayment = await prisma.pendingBrandInvoicePayment.findUnique({
59239
59297
  * where: {
59240
59298
  * // ... provide filter here
59241
59299
  * }
59242
59300
  * })
59243
59301
  **/
59244
- findUnique<T extends PaymentTransactionFindUniqueArgs<ExtArgs>>(
59245
- args: SelectSubset<T, PaymentTransactionFindUniqueArgs<ExtArgs>>
59246
- ): Prisma__PaymentTransactionClient<$Result.GetResult<Prisma.$PaymentTransactionPayload<ExtArgs>, T, 'findUnique'> | null, null, ExtArgs>
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>
59247
59305
 
59248
59306
  /**
59249
- * Find one PaymentTransaction that matches the filter or throw an error with `error.code='P2025'`
59307
+ * Find one PendingBrandInvoicePayment that matches the filter or throw an error with `error.code='P2025'`
59250
59308
  * if no matches were found.
59251
- * @param {PaymentTransactionFindUniqueOrThrowArgs} args - Arguments to find a PaymentTransaction
59309
+ * @param {PendingBrandInvoicePaymentFindUniqueOrThrowArgs} args - Arguments to find a PendingBrandInvoicePayment
59252
59310
  * @example
59253
- * // Get one PaymentTransaction
59254
- * const paymentTransaction = await prisma.paymentTransaction.findUniqueOrThrow({
59311
+ * // Get one PendingBrandInvoicePayment
59312
+ * const pendingBrandInvoicePayment = await prisma.pendingBrandInvoicePayment.findUniqueOrThrow({
59255
59313
  * where: {
59256
59314
  * // ... provide filter here
59257
59315
  * }
59258
59316
  * })
59259
59317
  **/
59260
- findUniqueOrThrow<T extends PaymentTransactionFindUniqueOrThrowArgs<ExtArgs>>(
59261
- args?: SelectSubset<T, PaymentTransactionFindUniqueOrThrowArgs<ExtArgs>>
59262
- ): Prisma__PaymentTransactionClient<$Result.GetResult<Prisma.$PaymentTransactionPayload<ExtArgs>, T, 'findUniqueOrThrow'>, never, ExtArgs>
59318
+ findUniqueOrThrow<T extends PendingBrandInvoicePaymentFindUniqueOrThrowArgs<ExtArgs>>(
59319
+ args?: SelectSubset<T, PendingBrandInvoicePaymentFindUniqueOrThrowArgs<ExtArgs>>
59320
+ ): Prisma__PendingBrandInvoicePaymentClient<$Result.GetResult<Prisma.$PendingBrandInvoicePaymentPayload<ExtArgs>, T, 'findUniqueOrThrow'>, never, ExtArgs>
59263
59321
 
59264
59322
  /**
59265
- * Find the first PaymentTransaction that matches the filter.
59323
+ * Find the first PendingBrandInvoicePayment that matches the filter.
59266
59324
  * Note, that providing `undefined` is treated as the value not being there.
59267
59325
  * Read more here: https://pris.ly/d/null-undefined
59268
- * @param {PaymentTransactionFindFirstArgs} args - Arguments to find a PaymentTransaction
59326
+ * @param {PendingBrandInvoicePaymentFindFirstArgs} args - Arguments to find a PendingBrandInvoicePayment
59269
59327
  * @example
59270
- * // Get one PaymentTransaction
59271
- * const paymentTransaction = await prisma.paymentTransaction.findFirst({
59328
+ * // Get one PendingBrandInvoicePayment
59329
+ * const pendingBrandInvoicePayment = await prisma.pendingBrandInvoicePayment.findFirst({
59272
59330
  * where: {
59273
59331
  * // ... provide filter here
59274
59332
  * }
59275
59333
  * })
59276
59334
  **/
59277
- findFirst<T extends PaymentTransactionFindFirstArgs<ExtArgs>>(
59278
- args?: SelectSubset<T, PaymentTransactionFindFirstArgs<ExtArgs>>
59279
- ): Prisma__PaymentTransactionClient<$Result.GetResult<Prisma.$PaymentTransactionPayload<ExtArgs>, T, 'findFirst'> | null, null, ExtArgs>
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>
59280
59338
 
59281
59339
  /**
59282
- * Find the first PaymentTransaction that matches the filter or
59340
+ * Find the first PendingBrandInvoicePayment that matches the filter or
59283
59341
  * throw `PrismaKnownClientError` with `P2025` code if no matches were found.
59284
59342
  * Note, that providing `undefined` is treated as the value not being there.
59285
59343
  * Read more here: https://pris.ly/d/null-undefined
59286
- * @param {PaymentTransactionFindFirstOrThrowArgs} args - Arguments to find a PaymentTransaction
59344
+ * @param {PendingBrandInvoicePaymentFindFirstOrThrowArgs} args - Arguments to find a PendingBrandInvoicePayment
59287
59345
  * @example
59288
- * // Get one PaymentTransaction
59289
- * const paymentTransaction = await prisma.paymentTransaction.findFirstOrThrow({
59346
+ * // Get one PendingBrandInvoicePayment
59347
+ * const pendingBrandInvoicePayment = await prisma.pendingBrandInvoicePayment.findFirstOrThrow({
59290
59348
  * where: {
59291
59349
  * // ... provide filter here
59292
59350
  * }
59293
59351
  * })
59294
59352
  **/
59295
- findFirstOrThrow<T extends PaymentTransactionFindFirstOrThrowArgs<ExtArgs>>(
59296
- args?: SelectSubset<T, PaymentTransactionFindFirstOrThrowArgs<ExtArgs>>
59297
- ): Prisma__PaymentTransactionClient<$Result.GetResult<Prisma.$PaymentTransactionPayload<ExtArgs>, T, 'findFirstOrThrow'>, never, ExtArgs>
59353
+ findFirstOrThrow<T extends PendingBrandInvoicePaymentFindFirstOrThrowArgs<ExtArgs>>(
59354
+ args?: SelectSubset<T, PendingBrandInvoicePaymentFindFirstOrThrowArgs<ExtArgs>>
59355
+ ): Prisma__PendingBrandInvoicePaymentClient<$Result.GetResult<Prisma.$PendingBrandInvoicePaymentPayload<ExtArgs>, T, 'findFirstOrThrow'>, never, ExtArgs>
59298
59356
 
59299
59357
  /**
59300
- * Find zero or more PaymentTransactions that matches the filter.
59358
+ * Find zero or more PendingBrandInvoicePayments that matches the filter.
59301
59359
  * Note, that providing `undefined` is treated as the value not being there.
59302
59360
  * Read more here: https://pris.ly/d/null-undefined
59303
- * @param {PaymentTransactionFindManyArgs} args - Arguments to filter and select certain fields only.
59361
+ * @param {PendingBrandInvoicePaymentFindManyArgs} args - Arguments to filter and select certain fields only.
59304
59362
  * @example
59305
- * // Get all PaymentTransactions
59306
- * const paymentTransactions = await prisma.paymentTransaction.findMany()
59363
+ * // Get all PendingBrandInvoicePayments
59364
+ * const pendingBrandInvoicePayments = await prisma.pendingBrandInvoicePayment.findMany()
59307
59365
  *
59308
- * // Get first 10 PaymentTransactions
59309
- * const paymentTransactions = await prisma.paymentTransaction.findMany({ take: 10 })
59366
+ * // Get first 10 PendingBrandInvoicePayments
59367
+ * const pendingBrandInvoicePayments = await prisma.pendingBrandInvoicePayment.findMany({ take: 10 })
59310
59368
  *
59311
59369
  * // Only select the `id`
59312
- * const paymentTransactionWithIdOnly = await prisma.paymentTransaction.findMany({ select: { id: true } })
59370
+ * const pendingBrandInvoicePaymentWithIdOnly = await prisma.pendingBrandInvoicePayment.findMany({ select: { id: true } })
59313
59371
  *
59314
59372
  **/
59315
- findMany<T extends PaymentTransactionFindManyArgs<ExtArgs>>(
59316
- args?: SelectSubset<T, PaymentTransactionFindManyArgs<ExtArgs>>
59317
- ): Prisma.PrismaPromise<$Result.GetResult<Prisma.$PaymentTransactionPayload<ExtArgs>, T, 'findMany'>>
59373
+ findMany<T extends PendingBrandInvoicePaymentFindManyArgs<ExtArgs>>(
59374
+ args?: SelectSubset<T, PendingBrandInvoicePaymentFindManyArgs<ExtArgs>>
59375
+ ): Prisma.PrismaPromise<$Result.GetResult<Prisma.$PendingBrandInvoicePaymentPayload<ExtArgs>, T, 'findMany'>>
59318
59376
 
59319
59377
  /**
59320
- * Create a PaymentTransaction.
59321
- * @param {PaymentTransactionCreateArgs} args - Arguments to create a PaymentTransaction.
59378
+ * Create a PendingBrandInvoicePayment.
59379
+ * @param {PendingBrandInvoicePaymentCreateArgs} args - Arguments to create a PendingBrandInvoicePayment.
59322
59380
  * @example
59323
- * // Create one PaymentTransaction
59324
- * const PaymentTransaction = await prisma.paymentTransaction.create({
59381
+ * // Create one PendingBrandInvoicePayment
59382
+ * const PendingBrandInvoicePayment = await prisma.pendingBrandInvoicePayment.create({
59325
59383
  * data: {
59326
- * // ... data to create a PaymentTransaction
59384
+ * // ... data to create a PendingBrandInvoicePayment
59327
59385
  * }
59328
59386
  * })
59329
59387
  *
59330
59388
  **/
59331
- create<T extends PaymentTransactionCreateArgs<ExtArgs>>(
59332
- args: SelectSubset<T, PaymentTransactionCreateArgs<ExtArgs>>
59333
- ): Prisma__PaymentTransactionClient<$Result.GetResult<Prisma.$PaymentTransactionPayload<ExtArgs>, T, 'create'>, never, ExtArgs>
59389
+ create<T extends PendingBrandInvoicePaymentCreateArgs<ExtArgs>>(
59390
+ args: SelectSubset<T, PendingBrandInvoicePaymentCreateArgs<ExtArgs>>
59391
+ ): Prisma__PendingBrandInvoicePaymentClient<$Result.GetResult<Prisma.$PendingBrandInvoicePaymentPayload<ExtArgs>, T, 'create'>, never, ExtArgs>
59334
59392
 
59335
59393
  /**
59336
- * Create many PaymentTransactions.
59337
- * @param {PaymentTransactionCreateManyArgs} args - Arguments to create many PaymentTransactions.
59394
+ * Create many PendingBrandInvoicePayments.
59395
+ * @param {PendingBrandInvoicePaymentCreateManyArgs} args - Arguments to create many PendingBrandInvoicePayments.
59338
59396
  * @example
59339
- * // Create many PaymentTransactions
59340
- * const paymentTransaction = await prisma.paymentTransaction.createMany({
59397
+ * // Create many PendingBrandInvoicePayments
59398
+ * const pendingBrandInvoicePayment = await prisma.pendingBrandInvoicePayment.createMany({
59341
59399
  * data: [
59342
59400
  * // ... provide data here
59343
59401
  * ]
59344
59402
  * })
59345
59403
  *
59346
59404
  **/
59347
- createMany<T extends PaymentTransactionCreateManyArgs<ExtArgs>>(
59348
- args?: SelectSubset<T, PaymentTransactionCreateManyArgs<ExtArgs>>
59405
+ createMany<T extends PendingBrandInvoicePaymentCreateManyArgs<ExtArgs>>(
59406
+ args?: SelectSubset<T, PendingBrandInvoicePaymentCreateManyArgs<ExtArgs>>
59349
59407
  ): Prisma.PrismaPromise<BatchPayload>
59350
59408
 
59351
59409
  /**
59352
- * Create many PaymentTransactions and returns the data saved in the database.
59353
- * @param {PaymentTransactionCreateManyAndReturnArgs} args - Arguments to create many PaymentTransactions.
59410
+ * Create many PendingBrandInvoicePayments and returns the data saved in the database.
59411
+ * @param {PendingBrandInvoicePaymentCreateManyAndReturnArgs} args - Arguments to create many PendingBrandInvoicePayments.
59354
59412
  * @example
59355
- * // Create many PaymentTransactions
59356
- * const paymentTransaction = await prisma.paymentTransaction.createManyAndReturn({
59413
+ * // Create many PendingBrandInvoicePayments
59414
+ * const pendingBrandInvoicePayment = await prisma.pendingBrandInvoicePayment.createManyAndReturn({
59357
59415
  * data: [
59358
59416
  * // ... provide data here
59359
59417
  * ]
59360
59418
  * })
59361
59419
  *
59362
- * // Create many PaymentTransactions and only return the `id`
59363
- * const paymentTransactionWithIdOnly = await prisma.paymentTransaction.createManyAndReturn({
59420
+ * // Create many PendingBrandInvoicePayments and only return the `id`
59421
+ * const pendingBrandInvoicePaymentWithIdOnly = await prisma.pendingBrandInvoicePayment.createManyAndReturn({
59364
59422
  * select: { id: true },
59365
59423
  * data: [
59366
59424
  * // ... provide data here
@@ -59370,32 +59428,32 @@ export namespace Prisma {
59370
59428
  * Read more here: https://pris.ly/d/null-undefined
59371
59429
  *
59372
59430
  **/
59373
- createManyAndReturn<T extends PaymentTransactionCreateManyAndReturnArgs<ExtArgs>>(
59374
- args?: SelectSubset<T, PaymentTransactionCreateManyAndReturnArgs<ExtArgs>>
59375
- ): Prisma.PrismaPromise<$Result.GetResult<Prisma.$PaymentTransactionPayload<ExtArgs>, T, 'createManyAndReturn'>>
59431
+ createManyAndReturn<T extends PendingBrandInvoicePaymentCreateManyAndReturnArgs<ExtArgs>>(
59432
+ args?: SelectSubset<T, PendingBrandInvoicePaymentCreateManyAndReturnArgs<ExtArgs>>
59433
+ ): Prisma.PrismaPromise<$Result.GetResult<Prisma.$PendingBrandInvoicePaymentPayload<ExtArgs>, T, 'createManyAndReturn'>>
59376
59434
 
59377
59435
  /**
59378
- * Delete a PaymentTransaction.
59379
- * @param {PaymentTransactionDeleteArgs} args - Arguments to delete one PaymentTransaction.
59436
+ * Delete a PendingBrandInvoicePayment.
59437
+ * @param {PendingBrandInvoicePaymentDeleteArgs} args - Arguments to delete one PendingBrandInvoicePayment.
59380
59438
  * @example
59381
- * // Delete one PaymentTransaction
59382
- * const PaymentTransaction = await prisma.paymentTransaction.delete({
59439
+ * // Delete one PendingBrandInvoicePayment
59440
+ * const PendingBrandInvoicePayment = await prisma.pendingBrandInvoicePayment.delete({
59383
59441
  * where: {
59384
- * // ... filter to delete one PaymentTransaction
59442
+ * // ... filter to delete one PendingBrandInvoicePayment
59385
59443
  * }
59386
59444
  * })
59387
59445
  *
59388
59446
  **/
59389
- delete<T extends PaymentTransactionDeleteArgs<ExtArgs>>(
59390
- args: SelectSubset<T, PaymentTransactionDeleteArgs<ExtArgs>>
59391
- ): Prisma__PaymentTransactionClient<$Result.GetResult<Prisma.$PaymentTransactionPayload<ExtArgs>, T, 'delete'>, never, ExtArgs>
59447
+ delete<T extends PendingBrandInvoicePaymentDeleteArgs<ExtArgs>>(
59448
+ args: SelectSubset<T, PendingBrandInvoicePaymentDeleteArgs<ExtArgs>>
59449
+ ): Prisma__PendingBrandInvoicePaymentClient<$Result.GetResult<Prisma.$PendingBrandInvoicePaymentPayload<ExtArgs>, T, 'delete'>, never, ExtArgs>
59392
59450
 
59393
59451
  /**
59394
- * Update one PaymentTransaction.
59395
- * @param {PaymentTransactionUpdateArgs} args - Arguments to update one PaymentTransaction.
59452
+ * Update one PendingBrandInvoicePayment.
59453
+ * @param {PendingBrandInvoicePaymentUpdateArgs} args - Arguments to update one PendingBrandInvoicePayment.
59396
59454
  * @example
59397
- * // Update one PaymentTransaction
59398
- * const paymentTransaction = await prisma.paymentTransaction.update({
59455
+ * // Update one PendingBrandInvoicePayment
59456
+ * const pendingBrandInvoicePayment = await prisma.pendingBrandInvoicePayment.update({
59399
59457
  * where: {
59400
59458
  * // ... provide filter here
59401
59459
  * },
@@ -59405,34 +59463,34 @@ export namespace Prisma {
59405
59463
  * })
59406
59464
  *
59407
59465
  **/
59408
- update<T extends PaymentTransactionUpdateArgs<ExtArgs>>(
59409
- args: SelectSubset<T, PaymentTransactionUpdateArgs<ExtArgs>>
59410
- ): Prisma__PaymentTransactionClient<$Result.GetResult<Prisma.$PaymentTransactionPayload<ExtArgs>, T, 'update'>, never, ExtArgs>
59466
+ update<T extends PendingBrandInvoicePaymentUpdateArgs<ExtArgs>>(
59467
+ args: SelectSubset<T, PendingBrandInvoicePaymentUpdateArgs<ExtArgs>>
59468
+ ): Prisma__PendingBrandInvoicePaymentClient<$Result.GetResult<Prisma.$PendingBrandInvoicePaymentPayload<ExtArgs>, T, 'update'>, never, ExtArgs>
59411
59469
 
59412
59470
  /**
59413
- * Delete zero or more PaymentTransactions.
59414
- * @param {PaymentTransactionDeleteManyArgs} args - Arguments to filter PaymentTransactions to delete.
59471
+ * Delete zero or more PendingBrandInvoicePayments.
59472
+ * @param {PendingBrandInvoicePaymentDeleteManyArgs} args - Arguments to filter PendingBrandInvoicePayments to delete.
59415
59473
  * @example
59416
- * // Delete a few PaymentTransactions
59417
- * const { count } = await prisma.paymentTransaction.deleteMany({
59474
+ * // Delete a few PendingBrandInvoicePayments
59475
+ * const { count } = await prisma.pendingBrandInvoicePayment.deleteMany({
59418
59476
  * where: {
59419
59477
  * // ... provide filter here
59420
59478
  * }
59421
59479
  * })
59422
59480
  *
59423
59481
  **/
59424
- deleteMany<T extends PaymentTransactionDeleteManyArgs<ExtArgs>>(
59425
- args?: SelectSubset<T, PaymentTransactionDeleteManyArgs<ExtArgs>>
59482
+ deleteMany<T extends PendingBrandInvoicePaymentDeleteManyArgs<ExtArgs>>(
59483
+ args?: SelectSubset<T, PendingBrandInvoicePaymentDeleteManyArgs<ExtArgs>>
59426
59484
  ): Prisma.PrismaPromise<BatchPayload>
59427
59485
 
59428
59486
  /**
59429
- * Update zero or more PaymentTransactions.
59487
+ * Update zero or more PendingBrandInvoicePayments.
59430
59488
  * Note, that providing `undefined` is treated as the value not being there.
59431
59489
  * Read more here: https://pris.ly/d/null-undefined
59432
- * @param {PaymentTransactionUpdateManyArgs} args - Arguments to update one or more rows.
59490
+ * @param {PendingBrandInvoicePaymentUpdateManyArgs} args - Arguments to update one or more rows.
59433
59491
  * @example
59434
- * // Update many PaymentTransactions
59435
- * const paymentTransaction = await prisma.paymentTransaction.updateMany({
59492
+ * // Update many PendingBrandInvoicePayments
59493
+ * const pendingBrandInvoicePayment = await prisma.pendingBrandInvoicePayment.updateMany({
59436
59494
  * where: {
59437
59495
  * // ... provide filter here
59438
59496
  * },
@@ -59442,59 +59500,59 @@ export namespace Prisma {
59442
59500
  * })
59443
59501
  *
59444
59502
  **/
59445
- updateMany<T extends PaymentTransactionUpdateManyArgs<ExtArgs>>(
59446
- args: SelectSubset<T, PaymentTransactionUpdateManyArgs<ExtArgs>>
59503
+ updateMany<T extends PendingBrandInvoicePaymentUpdateManyArgs<ExtArgs>>(
59504
+ args: SelectSubset<T, PendingBrandInvoicePaymentUpdateManyArgs<ExtArgs>>
59447
59505
  ): Prisma.PrismaPromise<BatchPayload>
59448
59506
 
59449
59507
  /**
59450
- * Create or update one PaymentTransaction.
59451
- * @param {PaymentTransactionUpsertArgs} args - Arguments to update or create a PaymentTransaction.
59508
+ * Create or update one PendingBrandInvoicePayment.
59509
+ * @param {PendingBrandInvoicePaymentUpsertArgs} args - Arguments to update or create a PendingBrandInvoicePayment.
59452
59510
  * @example
59453
- * // Update or create a PaymentTransaction
59454
- * const paymentTransaction = await prisma.paymentTransaction.upsert({
59511
+ * // Update or create a PendingBrandInvoicePayment
59512
+ * const pendingBrandInvoicePayment = await prisma.pendingBrandInvoicePayment.upsert({
59455
59513
  * create: {
59456
- * // ... data to create a PaymentTransaction
59514
+ * // ... data to create a PendingBrandInvoicePayment
59457
59515
  * },
59458
59516
  * update: {
59459
59517
  * // ... in case it already exists, update
59460
59518
  * },
59461
59519
  * where: {
59462
- * // ... the filter for the PaymentTransaction we want to update
59520
+ * // ... the filter for the PendingBrandInvoicePayment we want to update
59463
59521
  * }
59464
59522
  * })
59465
59523
  **/
59466
- upsert<T extends PaymentTransactionUpsertArgs<ExtArgs>>(
59467
- args: SelectSubset<T, PaymentTransactionUpsertArgs<ExtArgs>>
59468
- ): Prisma__PaymentTransactionClient<$Result.GetResult<Prisma.$PaymentTransactionPayload<ExtArgs>, T, 'upsert'>, never, ExtArgs>
59524
+ upsert<T extends PendingBrandInvoicePaymentUpsertArgs<ExtArgs>>(
59525
+ args: SelectSubset<T, PendingBrandInvoicePaymentUpsertArgs<ExtArgs>>
59526
+ ): Prisma__PendingBrandInvoicePaymentClient<$Result.GetResult<Prisma.$PendingBrandInvoicePaymentPayload<ExtArgs>, T, 'upsert'>, never, ExtArgs>
59469
59527
 
59470
59528
  /**
59471
- * Count the number of PaymentTransactions.
59529
+ * Count the number of PendingBrandInvoicePayments.
59472
59530
  * Note, that providing `undefined` is treated as the value not being there.
59473
59531
  * Read more here: https://pris.ly/d/null-undefined
59474
- * @param {PaymentTransactionCountArgs} args - Arguments to filter PaymentTransactions to count.
59532
+ * @param {PendingBrandInvoicePaymentCountArgs} args - Arguments to filter PendingBrandInvoicePayments to count.
59475
59533
  * @example
59476
- * // Count the number of PaymentTransactions
59477
- * const count = await prisma.paymentTransaction.count({
59534
+ * // Count the number of PendingBrandInvoicePayments
59535
+ * const count = await prisma.pendingBrandInvoicePayment.count({
59478
59536
  * where: {
59479
- * // ... the filter for the PaymentTransactions we want to count
59537
+ * // ... the filter for the PendingBrandInvoicePayments we want to count
59480
59538
  * }
59481
59539
  * })
59482
59540
  **/
59483
- count<T extends PaymentTransactionCountArgs>(
59484
- args?: Subset<T, PaymentTransactionCountArgs>,
59541
+ count<T extends PendingBrandInvoicePaymentCountArgs>(
59542
+ args?: Subset<T, PendingBrandInvoicePaymentCountArgs>,
59485
59543
  ): Prisma.PrismaPromise<
59486
59544
  T extends $Utils.Record<'select', any>
59487
59545
  ? T['select'] extends true
59488
59546
  ? number
59489
- : GetScalarType<T['select'], PaymentTransactionCountAggregateOutputType>
59547
+ : GetScalarType<T['select'], PendingBrandInvoicePaymentCountAggregateOutputType>
59490
59548
  : number
59491
59549
  >
59492
59550
 
59493
59551
  /**
59494
- * Allows you to perform aggregations operations on a PaymentTransaction.
59552
+ * Allows you to perform aggregations operations on a PendingBrandInvoicePayment.
59495
59553
  * Note, that providing `undefined` is treated as the value not being there.
59496
59554
  * Read more here: https://pris.ly/d/null-undefined
59497
- * @param {PaymentTransactionAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
59555
+ * @param {PendingBrandInvoicePaymentAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
59498
59556
  * @example
59499
59557
  * // Ordered by age ascending
59500
59558
  * // Where email contains prisma.io
@@ -59514,13 +59572,13 @@ export namespace Prisma {
59514
59572
  * take: 10,
59515
59573
  * })
59516
59574
  **/
59517
- aggregate<T extends PaymentTransactionAggregateArgs>(args: Subset<T, PaymentTransactionAggregateArgs>): Prisma.PrismaPromise<GetPaymentTransactionAggregateType<T>>
59575
+ aggregate<T extends PendingBrandInvoicePaymentAggregateArgs>(args: Subset<T, PendingBrandInvoicePaymentAggregateArgs>): Prisma.PrismaPromise<GetPendingBrandInvoicePaymentAggregateType<T>>
59518
59576
 
59519
59577
  /**
59520
- * Group by PaymentTransaction.
59578
+ * Group by PendingBrandInvoicePayment.
59521
59579
  * Note, that providing `undefined` is treated as the value not being there.
59522
59580
  * Read more here: https://pris.ly/d/null-undefined
59523
- * @param {PaymentTransactionGroupByArgs} args - Group by arguments.
59581
+ * @param {PendingBrandInvoicePaymentGroupByArgs} args - Group by arguments.
59524
59582
  * @example
59525
59583
  * // Group by city, order by createdAt, get count
59526
59584
  * const result = await prisma.user.groupBy({
@@ -59535,14 +59593,1124 @@ export namespace Prisma {
59535
59593
  *
59536
59594
  **/
59537
59595
  groupBy<
59538
- T extends PaymentTransactionGroupByArgs,
59596
+ T extends PendingBrandInvoicePaymentGroupByArgs,
59539
59597
  HasSelectOrTake extends Or<
59540
59598
  Extends<'skip', Keys<T>>,
59541
59599
  Extends<'take', Keys<T>>
59542
59600
  >,
59543
59601
  OrderByArg extends True extends HasSelectOrTake
59544
- ? { orderBy: PaymentTransactionGroupByArgs['orderBy'] }
59545
- : { orderBy?: PaymentTransactionGroupByArgs['orderBy'] },
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
59696
+ */
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'>
59706
+ }
59707
+
59708
+
59709
+ // Custom InputTypes
59710
+ /**
59711
+ * PendingBrandInvoicePayment findUnique
59712
+ */
59713
+ export type PendingBrandInvoicePaymentFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
59714
+ /**
59715
+ * Select specific fields to fetch from the PendingBrandInvoicePayment
59716
+ */
59717
+ select?: PendingBrandInvoicePaymentSelect<ExtArgs> | null
59718
+ /**
59719
+ * Choose, which related nodes to fetch as well
59720
+ */
59721
+ include?: PendingBrandInvoicePaymentInclude<ExtArgs> | null
59722
+ /**
59723
+ * Filter, which PendingBrandInvoicePayment to fetch.
59724
+ */
59725
+ where: PendingBrandInvoicePaymentWhereUniqueInput
59726
+ }
59727
+
59728
+ /**
59729
+ * PendingBrandInvoicePayment findUniqueOrThrow
59730
+ */
59731
+ export type PendingBrandInvoicePaymentFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
59732
+ /**
59733
+ * Select specific fields to fetch from the PendingBrandInvoicePayment
59734
+ */
59735
+ select?: PendingBrandInvoicePaymentSelect<ExtArgs> | null
59736
+ /**
59737
+ * Choose, which related nodes to fetch as well
59738
+ */
59739
+ include?: PendingBrandInvoicePaymentInclude<ExtArgs> | null
59740
+ /**
59741
+ * Filter, which PendingBrandInvoicePayment to fetch.
59742
+ */
59743
+ where: PendingBrandInvoicePaymentWhereUniqueInput
59744
+ }
59745
+
59746
+ /**
59747
+ * PendingBrandInvoicePayment findFirst
59748
+ */
59749
+ export type PendingBrandInvoicePaymentFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
59750
+ /**
59751
+ * Select specific fields to fetch from the PendingBrandInvoicePayment
59752
+ */
59753
+ select?: PendingBrandInvoicePaymentSelect<ExtArgs> | null
59754
+ /**
59755
+ * Choose, which related nodes to fetch as well
59756
+ */
59757
+ include?: PendingBrandInvoicePaymentInclude<ExtArgs> | null
59758
+ /**
59759
+ * Filter, which PendingBrandInvoicePayment to fetch.
59760
+ */
59761
+ where?: PendingBrandInvoicePaymentWhereInput
59762
+ /**
59763
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
59764
+ *
59765
+ * Determine the order of PendingBrandInvoicePayments to fetch.
59766
+ */
59767
+ orderBy?: PendingBrandInvoicePaymentOrderByWithRelationAndSearchRelevanceInput | PendingBrandInvoicePaymentOrderByWithRelationAndSearchRelevanceInput[]
59768
+ /**
59769
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
59770
+ *
59771
+ * Sets the position for searching for PendingBrandInvoicePayments.
59772
+ */
59773
+ cursor?: PendingBrandInvoicePaymentWhereUniqueInput
59774
+ /**
59775
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
59776
+ *
59777
+ * Take `±n` PendingBrandInvoicePayments from the position of the cursor.
59778
+ */
59779
+ take?: number
59780
+ /**
59781
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
59782
+ *
59783
+ * Skip the first `n` PendingBrandInvoicePayments.
59784
+ */
59785
+ skip?: number
59786
+ /**
59787
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
59788
+ *
59789
+ * Filter by unique combinations of PendingBrandInvoicePayments.
59790
+ */
59791
+ distinct?: PendingBrandInvoicePaymentScalarFieldEnum | PendingBrandInvoicePaymentScalarFieldEnum[]
59792
+ }
59793
+
59794
+ /**
59795
+ * PendingBrandInvoicePayment findFirstOrThrow
59796
+ */
59797
+ export type PendingBrandInvoicePaymentFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
59798
+ /**
59799
+ * Select specific fields to fetch from the PendingBrandInvoicePayment
59800
+ */
59801
+ select?: PendingBrandInvoicePaymentSelect<ExtArgs> | null
59802
+ /**
59803
+ * Choose, which related nodes to fetch as well
59804
+ */
59805
+ include?: PendingBrandInvoicePaymentInclude<ExtArgs> | null
59806
+ /**
59807
+ * Filter, which PendingBrandInvoicePayment to fetch.
59808
+ */
59809
+ where?: PendingBrandInvoicePaymentWhereInput
59810
+ /**
59811
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
59812
+ *
59813
+ * Determine the order of PendingBrandInvoicePayments to fetch.
59814
+ */
59815
+ orderBy?: PendingBrandInvoicePaymentOrderByWithRelationAndSearchRelevanceInput | PendingBrandInvoicePaymentOrderByWithRelationAndSearchRelevanceInput[]
59816
+ /**
59817
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
59818
+ *
59819
+ * Sets the position for searching for PendingBrandInvoicePayments.
59820
+ */
59821
+ cursor?: PendingBrandInvoicePaymentWhereUniqueInput
59822
+ /**
59823
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
59824
+ *
59825
+ * Take `±n` PendingBrandInvoicePayments from the position of the cursor.
59826
+ */
59827
+ take?: number
59828
+ /**
59829
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
59830
+ *
59831
+ * Skip the first `n` PendingBrandInvoicePayments.
59832
+ */
59833
+ skip?: number
59834
+ /**
59835
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
59836
+ *
59837
+ * Filter by unique combinations of PendingBrandInvoicePayments.
59838
+ */
59839
+ distinct?: PendingBrandInvoicePaymentScalarFieldEnum | PendingBrandInvoicePaymentScalarFieldEnum[]
59840
+ }
59841
+
59842
+ /**
59843
+ * PendingBrandInvoicePayment findMany
59844
+ */
59845
+ export type PendingBrandInvoicePaymentFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
59846
+ /**
59847
+ * Select specific fields to fetch from the PendingBrandInvoicePayment
59848
+ */
59849
+ select?: PendingBrandInvoicePaymentSelect<ExtArgs> | null
59850
+ /**
59851
+ * Choose, which related nodes to fetch as well
59852
+ */
59853
+ include?: PendingBrandInvoicePaymentInclude<ExtArgs> | null
59854
+ /**
59855
+ * Filter, which PendingBrandInvoicePayments to fetch.
59856
+ */
59857
+ where?: PendingBrandInvoicePaymentWhereInput
59858
+ /**
59859
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
59860
+ *
59861
+ * Determine the order of PendingBrandInvoicePayments to fetch.
59862
+ */
59863
+ orderBy?: PendingBrandInvoicePaymentOrderByWithRelationAndSearchRelevanceInput | PendingBrandInvoicePaymentOrderByWithRelationAndSearchRelevanceInput[]
59864
+ /**
59865
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
59866
+ *
59867
+ * Sets the position for listing PendingBrandInvoicePayments.
59868
+ */
59869
+ cursor?: PendingBrandInvoicePaymentWhereUniqueInput
59870
+ /**
59871
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
59872
+ *
59873
+ * Take `±n` PendingBrandInvoicePayments from the position of the cursor.
59874
+ */
59875
+ take?: number
59876
+ /**
59877
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
59878
+ *
59879
+ * Skip the first `n` PendingBrandInvoicePayments.
59880
+ */
59881
+ skip?: number
59882
+ distinct?: PendingBrandInvoicePaymentScalarFieldEnum | PendingBrandInvoicePaymentScalarFieldEnum[]
59883
+ }
59884
+
59885
+ /**
59886
+ * PendingBrandInvoicePayment create
59887
+ */
59888
+ export type PendingBrandInvoicePaymentCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
59889
+ /**
59890
+ * Select specific fields to fetch from the PendingBrandInvoicePayment
59891
+ */
59892
+ select?: PendingBrandInvoicePaymentSelect<ExtArgs> | null
59893
+ /**
59894
+ * Choose, which related nodes to fetch as well
59895
+ */
59896
+ include?: PendingBrandInvoicePaymentInclude<ExtArgs> | null
59897
+ /**
59898
+ * The data needed to create a PendingBrandInvoicePayment.
59899
+ */
59900
+ data: XOR<PendingBrandInvoicePaymentCreateInput, PendingBrandInvoicePaymentUncheckedCreateInput>
59901
+ }
59902
+
59903
+ /**
59904
+ * PendingBrandInvoicePayment createMany
59905
+ */
59906
+ export type PendingBrandInvoicePaymentCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
59907
+ /**
59908
+ * The data used to create many PendingBrandInvoicePayments.
59909
+ */
59910
+ data: PendingBrandInvoicePaymentCreateManyInput | PendingBrandInvoicePaymentCreateManyInput[]
59911
+ skipDuplicates?: boolean
59912
+ }
59913
+
59914
+ /**
59915
+ * PendingBrandInvoicePayment createManyAndReturn
59916
+ */
59917
+ export type PendingBrandInvoicePaymentCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
59918
+ /**
59919
+ * Select specific fields to fetch from the PendingBrandInvoicePayment
59920
+ */
59921
+ select?: PendingBrandInvoicePaymentSelectCreateManyAndReturn<ExtArgs> | null
59922
+ /**
59923
+ * The data used to create many PendingBrandInvoicePayments.
59924
+ */
59925
+ data: PendingBrandInvoicePaymentCreateManyInput | PendingBrandInvoicePaymentCreateManyInput[]
59926
+ skipDuplicates?: boolean
59927
+ /**
59928
+ * Choose, which related nodes to fetch as well
59929
+ */
59930
+ include?: PendingBrandInvoicePaymentIncludeCreateManyAndReturn<ExtArgs> | null
59931
+ }
59932
+
59933
+ /**
59934
+ * PendingBrandInvoicePayment update
59935
+ */
59936
+ export type PendingBrandInvoicePaymentUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
59937
+ /**
59938
+ * Select specific fields to fetch from the PendingBrandInvoicePayment
59939
+ */
59940
+ select?: PendingBrandInvoicePaymentSelect<ExtArgs> | null
59941
+ /**
59942
+ * Choose, which related nodes to fetch as well
59943
+ */
59944
+ include?: PendingBrandInvoicePaymentInclude<ExtArgs> | null
59945
+ /**
59946
+ * The data needed to update a PendingBrandInvoicePayment.
59947
+ */
59948
+ data: XOR<PendingBrandInvoicePaymentUpdateInput, PendingBrandInvoicePaymentUncheckedUpdateInput>
59949
+ /**
59950
+ * Choose, which PendingBrandInvoicePayment to update.
59951
+ */
59952
+ where: PendingBrandInvoicePaymentWhereUniqueInput
59953
+ }
59954
+
59955
+ /**
59956
+ * PendingBrandInvoicePayment updateMany
59957
+ */
59958
+ export type PendingBrandInvoicePaymentUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
59959
+ /**
59960
+ * The data used to update PendingBrandInvoicePayments.
59961
+ */
59962
+ data: XOR<PendingBrandInvoicePaymentUpdateManyMutationInput, PendingBrandInvoicePaymentUncheckedUpdateManyInput>
59963
+ /**
59964
+ * Filter which PendingBrandInvoicePayments to update
59965
+ */
59966
+ where?: PendingBrandInvoicePaymentWhereInput
59967
+ }
59968
+
59969
+ /**
59970
+ * PendingBrandInvoicePayment upsert
59971
+ */
59972
+ export type PendingBrandInvoicePaymentUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
59973
+ /**
59974
+ * Select specific fields to fetch from the PendingBrandInvoicePayment
59975
+ */
59976
+ select?: PendingBrandInvoicePaymentSelect<ExtArgs> | null
59977
+ /**
59978
+ * Choose, which related nodes to fetch as well
59979
+ */
59980
+ include?: PendingBrandInvoicePaymentInclude<ExtArgs> | null
59981
+ /**
59982
+ * The filter to search for the PendingBrandInvoicePayment to update in case it exists.
59983
+ */
59984
+ where: PendingBrandInvoicePaymentWhereUniqueInput
59985
+ /**
59986
+ * In case the PendingBrandInvoicePayment found by the `where` argument doesn't exist, create a new PendingBrandInvoicePayment with this data.
59987
+ */
59988
+ create: XOR<PendingBrandInvoicePaymentCreateInput, PendingBrandInvoicePaymentUncheckedCreateInput>
59989
+ /**
59990
+ * In case the PendingBrandInvoicePayment was found with the provided `where` argument, update it with this data.
59991
+ */
59992
+ update: XOR<PendingBrandInvoicePaymentUpdateInput, PendingBrandInvoicePaymentUncheckedUpdateInput>
59993
+ }
59994
+
59995
+ /**
59996
+ * PendingBrandInvoicePayment delete
59997
+ */
59998
+ export type PendingBrandInvoicePaymentDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
59999
+ /**
60000
+ * Select specific fields to fetch from the PendingBrandInvoicePayment
60001
+ */
60002
+ select?: PendingBrandInvoicePaymentSelect<ExtArgs> | null
60003
+ /**
60004
+ * Choose, which related nodes to fetch as well
60005
+ */
60006
+ include?: PendingBrandInvoicePaymentInclude<ExtArgs> | null
60007
+ /**
60008
+ * Filter which PendingBrandInvoicePayment to delete.
60009
+ */
60010
+ where: PendingBrandInvoicePaymentWhereUniqueInput
60011
+ }
60012
+
60013
+ /**
60014
+ * PendingBrandInvoicePayment deleteMany
60015
+ */
60016
+ export type PendingBrandInvoicePaymentDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
60017
+ /**
60018
+ * Filter which PendingBrandInvoicePayments to delete
60019
+ */
60020
+ where?: PendingBrandInvoicePaymentWhereInput
60021
+ }
60022
+
60023
+ /**
60024
+ * PendingBrandInvoicePayment.brand
60025
+ */
60026
+ export type PendingBrandInvoicePayment$brandArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
60027
+ /**
60028
+ * Select specific fields to fetch from the Brand
60029
+ */
60030
+ select?: BrandSelect<ExtArgs> | null
60031
+ /**
60032
+ * Choose, which related nodes to fetch as well
60033
+ */
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
60050
+ }
60051
+
60052
+
60053
+ /**
60054
+ * Model PaymentTransaction
60055
+ */
60056
+
60057
+ export type AggregatePaymentTransaction = {
60058
+ _count: PaymentTransactionCountAggregateOutputType | null
60059
+ _avg: PaymentTransactionAvgAggregateOutputType | null
60060
+ _sum: PaymentTransactionSumAggregateOutputType | null
60061
+ _min: PaymentTransactionMinAggregateOutputType | null
60062
+ _max: PaymentTransactionMaxAggregateOutputType | null
60063
+ }
60064
+
60065
+ export type PaymentTransactionAvgAggregateOutputType = {
60066
+ id: number | null
60067
+ amount: number | null
60068
+ balance: number | null
60069
+ accountId: number | null
60070
+ brandId: number | null
60071
+ creatorId: number | null
60072
+ prevTransactionId: number | null
60073
+ }
60074
+
60075
+ export type PaymentTransactionSumAggregateOutputType = {
60076
+ id: number | null
60077
+ amount: number | null
60078
+ balance: number | null
60079
+ accountId: number | null
60080
+ brandId: number | null
60081
+ creatorId: number | null
60082
+ prevTransactionId: number | null
60083
+ }
60084
+
60085
+ export type PaymentTransactionMinAggregateOutputType = {
60086
+ id: number | null
60087
+ amount: number | null
60088
+ balance: number | null
60089
+ type: string | null
60090
+ date: Date | null
60091
+ notes: string | null
60092
+ accountId: number | null
60093
+ brandId: number | null
60094
+ creatorId: number | null
60095
+ prevTransactionId: number | null
60096
+ }
60097
+
60098
+ export type PaymentTransactionMaxAggregateOutputType = {
60099
+ id: number | null
60100
+ amount: number | null
60101
+ balance: number | null
60102
+ type: string | null
60103
+ date: Date | null
60104
+ notes: string | null
60105
+ accountId: number | null
60106
+ brandId: number | null
60107
+ creatorId: number | null
60108
+ prevTransactionId: number | null
60109
+ }
60110
+
60111
+ export type PaymentTransactionCountAggregateOutputType = {
60112
+ id: number
60113
+ amount: number
60114
+ balance: number
60115
+ type: number
60116
+ date: number
60117
+ notes: number
60118
+ metaData: number
60119
+ accountId: number
60120
+ brandId: number
60121
+ creatorId: number
60122
+ prevTransactionId: number
60123
+ _all: number
60124
+ }
60125
+
60126
+
60127
+ export type PaymentTransactionAvgAggregateInputType = {
60128
+ id?: true
60129
+ amount?: true
60130
+ balance?: true
60131
+ accountId?: true
60132
+ brandId?: true
60133
+ creatorId?: true
60134
+ prevTransactionId?: true
60135
+ }
60136
+
60137
+ export type PaymentTransactionSumAggregateInputType = {
60138
+ id?: true
60139
+ amount?: true
60140
+ balance?: true
60141
+ accountId?: true
60142
+ brandId?: true
60143
+ creatorId?: true
60144
+ prevTransactionId?: true
60145
+ }
60146
+
60147
+ export type PaymentTransactionMinAggregateInputType = {
60148
+ id?: true
60149
+ amount?: true
60150
+ balance?: true
60151
+ type?: true
60152
+ date?: true
60153
+ notes?: true
60154
+ accountId?: true
60155
+ brandId?: true
60156
+ creatorId?: true
60157
+ prevTransactionId?: true
60158
+ }
60159
+
60160
+ export type PaymentTransactionMaxAggregateInputType = {
60161
+ id?: true
60162
+ amount?: true
60163
+ balance?: true
60164
+ type?: true
60165
+ date?: true
60166
+ notes?: true
60167
+ accountId?: true
60168
+ brandId?: true
60169
+ creatorId?: true
60170
+ prevTransactionId?: true
60171
+ }
60172
+
60173
+ export type PaymentTransactionCountAggregateInputType = {
60174
+ id?: true
60175
+ amount?: true
60176
+ balance?: true
60177
+ type?: true
60178
+ date?: true
60179
+ notes?: true
60180
+ metaData?: true
60181
+ accountId?: true
60182
+ brandId?: true
60183
+ creatorId?: true
60184
+ prevTransactionId?: true
60185
+ _all?: true
60186
+ }
60187
+
60188
+ export type PaymentTransactionAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
60189
+ /**
60190
+ * Filter which PaymentTransaction to aggregate.
60191
+ */
60192
+ where?: PaymentTransactionWhereInput
60193
+ /**
60194
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
60195
+ *
60196
+ * Determine the order of PaymentTransactions to fetch.
60197
+ */
60198
+ orderBy?: PaymentTransactionOrderByWithRelationAndSearchRelevanceInput | PaymentTransactionOrderByWithRelationAndSearchRelevanceInput[]
60199
+ /**
60200
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
60201
+ *
60202
+ * Sets the start position
60203
+ */
60204
+ cursor?: PaymentTransactionWhereUniqueInput
60205
+ /**
60206
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
60207
+ *
60208
+ * Take `±n` PaymentTransactions from the position of the cursor.
60209
+ */
60210
+ take?: number
60211
+ /**
60212
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
60213
+ *
60214
+ * Skip the first `n` PaymentTransactions.
60215
+ */
60216
+ skip?: number
60217
+ /**
60218
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
60219
+ *
60220
+ * Count returned PaymentTransactions
60221
+ **/
60222
+ _count?: true | PaymentTransactionCountAggregateInputType
60223
+ /**
60224
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
60225
+ *
60226
+ * Select which fields to average
60227
+ **/
60228
+ _avg?: PaymentTransactionAvgAggregateInputType
60229
+ /**
60230
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
60231
+ *
60232
+ * Select which fields to sum
60233
+ **/
60234
+ _sum?: PaymentTransactionSumAggregateInputType
60235
+ /**
60236
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
60237
+ *
60238
+ * Select which fields to find the minimum value
60239
+ **/
60240
+ _min?: PaymentTransactionMinAggregateInputType
60241
+ /**
60242
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
60243
+ *
60244
+ * Select which fields to find the maximum value
60245
+ **/
60246
+ _max?: PaymentTransactionMaxAggregateInputType
60247
+ }
60248
+
60249
+ export type GetPaymentTransactionAggregateType<T extends PaymentTransactionAggregateArgs> = {
60250
+ [P in keyof T & keyof AggregatePaymentTransaction]: P extends '_count' | 'count'
60251
+ ? T[P] extends true
60252
+ ? number
60253
+ : GetScalarType<T[P], AggregatePaymentTransaction[P]>
60254
+ : GetScalarType<T[P], AggregatePaymentTransaction[P]>
60255
+ }
60256
+
60257
+
60258
+
60259
+
60260
+ export type PaymentTransactionGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
60261
+ where?: PaymentTransactionWhereInput
60262
+ orderBy?: PaymentTransactionOrderByWithAggregationInput | PaymentTransactionOrderByWithAggregationInput[]
60263
+ by: PaymentTransactionScalarFieldEnum[] | PaymentTransactionScalarFieldEnum
60264
+ having?: PaymentTransactionScalarWhereWithAggregatesInput
60265
+ take?: number
60266
+ skip?: number
60267
+ _count?: PaymentTransactionCountAggregateInputType | true
60268
+ _avg?: PaymentTransactionAvgAggregateInputType
60269
+ _sum?: PaymentTransactionSumAggregateInputType
60270
+ _min?: PaymentTransactionMinAggregateInputType
60271
+ _max?: PaymentTransactionMaxAggregateInputType
60272
+ }
60273
+
60274
+ export type PaymentTransactionGroupByOutputType = {
60275
+ id: number
60276
+ amount: number
60277
+ balance: number
60278
+ type: string
60279
+ date: Date
60280
+ notes: string | null
60281
+ metaData: JsonValue
60282
+ accountId: number
60283
+ brandId: number | null
60284
+ creatorId: number | null
60285
+ prevTransactionId: number | null
60286
+ _count: PaymentTransactionCountAggregateOutputType | null
60287
+ _avg: PaymentTransactionAvgAggregateOutputType | null
60288
+ _sum: PaymentTransactionSumAggregateOutputType | null
60289
+ _min: PaymentTransactionMinAggregateOutputType | null
60290
+ _max: PaymentTransactionMaxAggregateOutputType | null
60291
+ }
60292
+
60293
+ type GetPaymentTransactionGroupByPayload<T extends PaymentTransactionGroupByArgs> = Prisma.PrismaPromise<
60294
+ Array<
60295
+ PickEnumerable<PaymentTransactionGroupByOutputType, T['by']> &
60296
+ {
60297
+ [P in ((keyof T) & (keyof PaymentTransactionGroupByOutputType))]: P extends '_count'
60298
+ ? T[P] extends boolean
60299
+ ? number
60300
+ : GetScalarType<T[P], PaymentTransactionGroupByOutputType[P]>
60301
+ : GetScalarType<T[P], PaymentTransactionGroupByOutputType[P]>
60302
+ }
60303
+ >
60304
+ >
60305
+
60306
+
60307
+ export type PaymentTransactionSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
60308
+ id?: boolean
60309
+ amount?: boolean
60310
+ balance?: boolean
60311
+ type?: boolean
60312
+ date?: boolean
60313
+ notes?: boolean
60314
+ metaData?: boolean
60315
+ accountId?: boolean
60316
+ brandId?: boolean
60317
+ creatorId?: boolean
60318
+ prevTransactionId?: boolean
60319
+ brand?: boolean | PaymentTransaction$brandArgs<ExtArgs>
60320
+ creator?: boolean | PaymentTransaction$creatorArgs<ExtArgs>
60321
+ prevTransaction?: boolean | PaymentTransaction$prevTransactionArgs<ExtArgs>
60322
+ nextTransaction?: boolean | PaymentTransaction$nextTransactionArgs<ExtArgs>
60323
+ }, ExtArgs["result"]["paymentTransaction"]>
60324
+
60325
+ export type PaymentTransactionSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
60326
+ id?: boolean
60327
+ amount?: boolean
60328
+ balance?: boolean
60329
+ type?: boolean
60330
+ date?: boolean
60331
+ notes?: boolean
60332
+ metaData?: boolean
60333
+ accountId?: boolean
60334
+ brandId?: boolean
60335
+ creatorId?: boolean
60336
+ prevTransactionId?: boolean
60337
+ brand?: boolean | PaymentTransaction$brandArgs<ExtArgs>
60338
+ creator?: boolean | PaymentTransaction$creatorArgs<ExtArgs>
60339
+ prevTransaction?: boolean | PaymentTransaction$prevTransactionArgs<ExtArgs>
60340
+ }, ExtArgs["result"]["paymentTransaction"]>
60341
+
60342
+ export type PaymentTransactionSelectScalar = {
60343
+ id?: boolean
60344
+ amount?: boolean
60345
+ balance?: boolean
60346
+ type?: boolean
60347
+ date?: boolean
60348
+ notes?: boolean
60349
+ metaData?: boolean
60350
+ accountId?: boolean
60351
+ brandId?: boolean
60352
+ creatorId?: boolean
60353
+ prevTransactionId?: boolean
60354
+ }
60355
+
60356
+ export type PaymentTransactionInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
60357
+ brand?: boolean | PaymentTransaction$brandArgs<ExtArgs>
60358
+ creator?: boolean | PaymentTransaction$creatorArgs<ExtArgs>
60359
+ prevTransaction?: boolean | PaymentTransaction$prevTransactionArgs<ExtArgs>
60360
+ nextTransaction?: boolean | PaymentTransaction$nextTransactionArgs<ExtArgs>
60361
+ }
60362
+ export type PaymentTransactionIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
60363
+ brand?: boolean | PaymentTransaction$brandArgs<ExtArgs>
60364
+ creator?: boolean | PaymentTransaction$creatorArgs<ExtArgs>
60365
+ prevTransaction?: boolean | PaymentTransaction$prevTransactionArgs<ExtArgs>
60366
+ }
60367
+
60368
+ export type $PaymentTransactionPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
60369
+ name: "PaymentTransaction"
60370
+ objects: {
60371
+ brand: Prisma.$BrandPayload<ExtArgs> | null
60372
+ creator: Prisma.$UserPayload<ExtArgs> | null
60373
+ prevTransaction: Prisma.$PaymentTransactionPayload<ExtArgs> | null
60374
+ nextTransaction: Prisma.$PaymentTransactionPayload<ExtArgs> | null
60375
+ }
60376
+ scalars: $Extensions.GetPayloadResult<{
60377
+ id: number
60378
+ amount: number
60379
+ balance: number
60380
+ type: string
60381
+ date: Date
60382
+ notes: string | null
60383
+ metaData: Prisma.JsonValue
60384
+ accountId: number
60385
+ brandId: number | null
60386
+ creatorId: number | null
60387
+ prevTransactionId: number | null
60388
+ }, ExtArgs["result"]["paymentTransaction"]>
60389
+ composites: {}
60390
+ }
60391
+
60392
+ type PaymentTransactionGetPayload<S extends boolean | null | undefined | PaymentTransactionDefaultArgs> = $Result.GetResult<Prisma.$PaymentTransactionPayload, S>
60393
+
60394
+ type PaymentTransactionCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
60395
+ Omit<PaymentTransactionFindManyArgs, 'select' | 'include' | 'distinct'> & {
60396
+ select?: PaymentTransactionCountAggregateInputType | true
60397
+ }
60398
+
60399
+ export interface PaymentTransactionDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
60400
+ [K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['PaymentTransaction'], meta: { name: 'PaymentTransaction' } }
60401
+ /**
60402
+ * Find zero or one PaymentTransaction that matches the filter.
60403
+ * @param {PaymentTransactionFindUniqueArgs} args - Arguments to find a PaymentTransaction
60404
+ * @example
60405
+ * // Get one PaymentTransaction
60406
+ * const paymentTransaction = await prisma.paymentTransaction.findUnique({
60407
+ * where: {
60408
+ * // ... provide filter here
60409
+ * }
60410
+ * })
60411
+ **/
60412
+ findUnique<T extends PaymentTransactionFindUniqueArgs<ExtArgs>>(
60413
+ args: SelectSubset<T, PaymentTransactionFindUniqueArgs<ExtArgs>>
60414
+ ): Prisma__PaymentTransactionClient<$Result.GetResult<Prisma.$PaymentTransactionPayload<ExtArgs>, T, 'findUnique'> | null, null, ExtArgs>
60415
+
60416
+ /**
60417
+ * Find one PaymentTransaction that matches the filter or throw an error with `error.code='P2025'`
60418
+ * if no matches were found.
60419
+ * @param {PaymentTransactionFindUniqueOrThrowArgs} args - Arguments to find a PaymentTransaction
60420
+ * @example
60421
+ * // Get one PaymentTransaction
60422
+ * const paymentTransaction = await prisma.paymentTransaction.findUniqueOrThrow({
60423
+ * where: {
60424
+ * // ... provide filter here
60425
+ * }
60426
+ * })
60427
+ **/
60428
+ findUniqueOrThrow<T extends PaymentTransactionFindUniqueOrThrowArgs<ExtArgs>>(
60429
+ args?: SelectSubset<T, PaymentTransactionFindUniqueOrThrowArgs<ExtArgs>>
60430
+ ): Prisma__PaymentTransactionClient<$Result.GetResult<Prisma.$PaymentTransactionPayload<ExtArgs>, T, 'findUniqueOrThrow'>, never, ExtArgs>
60431
+
60432
+ /**
60433
+ * Find the first PaymentTransaction that matches the filter.
60434
+ * Note, that providing `undefined` is treated as the value not being there.
60435
+ * Read more here: https://pris.ly/d/null-undefined
60436
+ * @param {PaymentTransactionFindFirstArgs} args - Arguments to find a PaymentTransaction
60437
+ * @example
60438
+ * // Get one PaymentTransaction
60439
+ * const paymentTransaction = await prisma.paymentTransaction.findFirst({
60440
+ * where: {
60441
+ * // ... provide filter here
60442
+ * }
60443
+ * })
60444
+ **/
60445
+ findFirst<T extends PaymentTransactionFindFirstArgs<ExtArgs>>(
60446
+ args?: SelectSubset<T, PaymentTransactionFindFirstArgs<ExtArgs>>
60447
+ ): Prisma__PaymentTransactionClient<$Result.GetResult<Prisma.$PaymentTransactionPayload<ExtArgs>, T, 'findFirst'> | null, null, ExtArgs>
60448
+
60449
+ /**
60450
+ * Find the first PaymentTransaction that matches the filter or
60451
+ * throw `PrismaKnownClientError` with `P2025` code if no matches were found.
60452
+ * Note, that providing `undefined` is treated as the value not being there.
60453
+ * Read more here: https://pris.ly/d/null-undefined
60454
+ * @param {PaymentTransactionFindFirstOrThrowArgs} args - Arguments to find a PaymentTransaction
60455
+ * @example
60456
+ * // Get one PaymentTransaction
60457
+ * const paymentTransaction = await prisma.paymentTransaction.findFirstOrThrow({
60458
+ * where: {
60459
+ * // ... provide filter here
60460
+ * }
60461
+ * })
60462
+ **/
60463
+ findFirstOrThrow<T extends PaymentTransactionFindFirstOrThrowArgs<ExtArgs>>(
60464
+ args?: SelectSubset<T, PaymentTransactionFindFirstOrThrowArgs<ExtArgs>>
60465
+ ): Prisma__PaymentTransactionClient<$Result.GetResult<Prisma.$PaymentTransactionPayload<ExtArgs>, T, 'findFirstOrThrow'>, never, ExtArgs>
60466
+
60467
+ /**
60468
+ * Find zero or more PaymentTransactions that matches the filter.
60469
+ * Note, that providing `undefined` is treated as the value not being there.
60470
+ * Read more here: https://pris.ly/d/null-undefined
60471
+ * @param {PaymentTransactionFindManyArgs} args - Arguments to filter and select certain fields only.
60472
+ * @example
60473
+ * // Get all PaymentTransactions
60474
+ * const paymentTransactions = await prisma.paymentTransaction.findMany()
60475
+ *
60476
+ * // Get first 10 PaymentTransactions
60477
+ * const paymentTransactions = await prisma.paymentTransaction.findMany({ take: 10 })
60478
+ *
60479
+ * // Only select the `id`
60480
+ * const paymentTransactionWithIdOnly = await prisma.paymentTransaction.findMany({ select: { id: true } })
60481
+ *
60482
+ **/
60483
+ findMany<T extends PaymentTransactionFindManyArgs<ExtArgs>>(
60484
+ args?: SelectSubset<T, PaymentTransactionFindManyArgs<ExtArgs>>
60485
+ ): Prisma.PrismaPromise<$Result.GetResult<Prisma.$PaymentTransactionPayload<ExtArgs>, T, 'findMany'>>
60486
+
60487
+ /**
60488
+ * Create a PaymentTransaction.
60489
+ * @param {PaymentTransactionCreateArgs} args - Arguments to create a PaymentTransaction.
60490
+ * @example
60491
+ * // Create one PaymentTransaction
60492
+ * const PaymentTransaction = await prisma.paymentTransaction.create({
60493
+ * data: {
60494
+ * // ... data to create a PaymentTransaction
60495
+ * }
60496
+ * })
60497
+ *
60498
+ **/
60499
+ create<T extends PaymentTransactionCreateArgs<ExtArgs>>(
60500
+ args: SelectSubset<T, PaymentTransactionCreateArgs<ExtArgs>>
60501
+ ): Prisma__PaymentTransactionClient<$Result.GetResult<Prisma.$PaymentTransactionPayload<ExtArgs>, T, 'create'>, never, ExtArgs>
60502
+
60503
+ /**
60504
+ * Create many PaymentTransactions.
60505
+ * @param {PaymentTransactionCreateManyArgs} args - Arguments to create many PaymentTransactions.
60506
+ * @example
60507
+ * // Create many PaymentTransactions
60508
+ * const paymentTransaction = await prisma.paymentTransaction.createMany({
60509
+ * data: [
60510
+ * // ... provide data here
60511
+ * ]
60512
+ * })
60513
+ *
60514
+ **/
60515
+ createMany<T extends PaymentTransactionCreateManyArgs<ExtArgs>>(
60516
+ args?: SelectSubset<T, PaymentTransactionCreateManyArgs<ExtArgs>>
60517
+ ): Prisma.PrismaPromise<BatchPayload>
60518
+
60519
+ /**
60520
+ * Create many PaymentTransactions and returns the data saved in the database.
60521
+ * @param {PaymentTransactionCreateManyAndReturnArgs} args - Arguments to create many PaymentTransactions.
60522
+ * @example
60523
+ * // Create many PaymentTransactions
60524
+ * const paymentTransaction = await prisma.paymentTransaction.createManyAndReturn({
60525
+ * data: [
60526
+ * // ... provide data here
60527
+ * ]
60528
+ * })
60529
+ *
60530
+ * // Create many PaymentTransactions and only return the `id`
60531
+ * const paymentTransactionWithIdOnly = await prisma.paymentTransaction.createManyAndReturn({
60532
+ * select: { id: true },
60533
+ * data: [
60534
+ * // ... provide data here
60535
+ * ]
60536
+ * })
60537
+ * Note, that providing `undefined` is treated as the value not being there.
60538
+ * Read more here: https://pris.ly/d/null-undefined
60539
+ *
60540
+ **/
60541
+ createManyAndReturn<T extends PaymentTransactionCreateManyAndReturnArgs<ExtArgs>>(
60542
+ args?: SelectSubset<T, PaymentTransactionCreateManyAndReturnArgs<ExtArgs>>
60543
+ ): Prisma.PrismaPromise<$Result.GetResult<Prisma.$PaymentTransactionPayload<ExtArgs>, T, 'createManyAndReturn'>>
60544
+
60545
+ /**
60546
+ * Delete a PaymentTransaction.
60547
+ * @param {PaymentTransactionDeleteArgs} args - Arguments to delete one PaymentTransaction.
60548
+ * @example
60549
+ * // Delete one PaymentTransaction
60550
+ * const PaymentTransaction = await prisma.paymentTransaction.delete({
60551
+ * where: {
60552
+ * // ... filter to delete one PaymentTransaction
60553
+ * }
60554
+ * })
60555
+ *
60556
+ **/
60557
+ delete<T extends PaymentTransactionDeleteArgs<ExtArgs>>(
60558
+ args: SelectSubset<T, PaymentTransactionDeleteArgs<ExtArgs>>
60559
+ ): Prisma__PaymentTransactionClient<$Result.GetResult<Prisma.$PaymentTransactionPayload<ExtArgs>, T, 'delete'>, never, ExtArgs>
60560
+
60561
+ /**
60562
+ * Update one PaymentTransaction.
60563
+ * @param {PaymentTransactionUpdateArgs} args - Arguments to update one PaymentTransaction.
60564
+ * @example
60565
+ * // Update one PaymentTransaction
60566
+ * const paymentTransaction = await prisma.paymentTransaction.update({
60567
+ * where: {
60568
+ * // ... provide filter here
60569
+ * },
60570
+ * data: {
60571
+ * // ... provide data here
60572
+ * }
60573
+ * })
60574
+ *
60575
+ **/
60576
+ update<T extends PaymentTransactionUpdateArgs<ExtArgs>>(
60577
+ args: SelectSubset<T, PaymentTransactionUpdateArgs<ExtArgs>>
60578
+ ): Prisma__PaymentTransactionClient<$Result.GetResult<Prisma.$PaymentTransactionPayload<ExtArgs>, T, 'update'>, never, ExtArgs>
60579
+
60580
+ /**
60581
+ * Delete zero or more PaymentTransactions.
60582
+ * @param {PaymentTransactionDeleteManyArgs} args - Arguments to filter PaymentTransactions to delete.
60583
+ * @example
60584
+ * // Delete a few PaymentTransactions
60585
+ * const { count } = await prisma.paymentTransaction.deleteMany({
60586
+ * where: {
60587
+ * // ... provide filter here
60588
+ * }
60589
+ * })
60590
+ *
60591
+ **/
60592
+ deleteMany<T extends PaymentTransactionDeleteManyArgs<ExtArgs>>(
60593
+ args?: SelectSubset<T, PaymentTransactionDeleteManyArgs<ExtArgs>>
60594
+ ): Prisma.PrismaPromise<BatchPayload>
60595
+
60596
+ /**
60597
+ * Update zero or more PaymentTransactions.
60598
+ * Note, that providing `undefined` is treated as the value not being there.
60599
+ * Read more here: https://pris.ly/d/null-undefined
60600
+ * @param {PaymentTransactionUpdateManyArgs} args - Arguments to update one or more rows.
60601
+ * @example
60602
+ * // Update many PaymentTransactions
60603
+ * const paymentTransaction = await prisma.paymentTransaction.updateMany({
60604
+ * where: {
60605
+ * // ... provide filter here
60606
+ * },
60607
+ * data: {
60608
+ * // ... provide data here
60609
+ * }
60610
+ * })
60611
+ *
60612
+ **/
60613
+ updateMany<T extends PaymentTransactionUpdateManyArgs<ExtArgs>>(
60614
+ args: SelectSubset<T, PaymentTransactionUpdateManyArgs<ExtArgs>>
60615
+ ): Prisma.PrismaPromise<BatchPayload>
60616
+
60617
+ /**
60618
+ * Create or update one PaymentTransaction.
60619
+ * @param {PaymentTransactionUpsertArgs} args - Arguments to update or create a PaymentTransaction.
60620
+ * @example
60621
+ * // Update or create a PaymentTransaction
60622
+ * const paymentTransaction = await prisma.paymentTransaction.upsert({
60623
+ * create: {
60624
+ * // ... data to create a PaymentTransaction
60625
+ * },
60626
+ * update: {
60627
+ * // ... in case it already exists, update
60628
+ * },
60629
+ * where: {
60630
+ * // ... the filter for the PaymentTransaction we want to update
60631
+ * }
60632
+ * })
60633
+ **/
60634
+ upsert<T extends PaymentTransactionUpsertArgs<ExtArgs>>(
60635
+ args: SelectSubset<T, PaymentTransactionUpsertArgs<ExtArgs>>
60636
+ ): Prisma__PaymentTransactionClient<$Result.GetResult<Prisma.$PaymentTransactionPayload<ExtArgs>, T, 'upsert'>, never, ExtArgs>
60637
+
60638
+ /**
60639
+ * Count the number of PaymentTransactions.
60640
+ * Note, that providing `undefined` is treated as the value not being there.
60641
+ * Read more here: https://pris.ly/d/null-undefined
60642
+ * @param {PaymentTransactionCountArgs} args - Arguments to filter PaymentTransactions to count.
60643
+ * @example
60644
+ * // Count the number of PaymentTransactions
60645
+ * const count = await prisma.paymentTransaction.count({
60646
+ * where: {
60647
+ * // ... the filter for the PaymentTransactions we want to count
60648
+ * }
60649
+ * })
60650
+ **/
60651
+ count<T extends PaymentTransactionCountArgs>(
60652
+ args?: Subset<T, PaymentTransactionCountArgs>,
60653
+ ): Prisma.PrismaPromise<
60654
+ T extends $Utils.Record<'select', any>
60655
+ ? T['select'] extends true
60656
+ ? number
60657
+ : GetScalarType<T['select'], PaymentTransactionCountAggregateOutputType>
60658
+ : number
60659
+ >
60660
+
60661
+ /**
60662
+ * Allows you to perform aggregations operations on a PaymentTransaction.
60663
+ * Note, that providing `undefined` is treated as the value not being there.
60664
+ * Read more here: https://pris.ly/d/null-undefined
60665
+ * @param {PaymentTransactionAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
60666
+ * @example
60667
+ * // Ordered by age ascending
60668
+ * // Where email contains prisma.io
60669
+ * // Limited to the 10 users
60670
+ * const aggregations = await prisma.user.aggregate({
60671
+ * _avg: {
60672
+ * age: true,
60673
+ * },
60674
+ * where: {
60675
+ * email: {
60676
+ * contains: "prisma.io",
60677
+ * },
60678
+ * },
60679
+ * orderBy: {
60680
+ * age: "asc",
60681
+ * },
60682
+ * take: 10,
60683
+ * })
60684
+ **/
60685
+ aggregate<T extends PaymentTransactionAggregateArgs>(args: Subset<T, PaymentTransactionAggregateArgs>): Prisma.PrismaPromise<GetPaymentTransactionAggregateType<T>>
60686
+
60687
+ /**
60688
+ * Group by PaymentTransaction.
60689
+ * Note, that providing `undefined` is treated as the value not being there.
60690
+ * Read more here: https://pris.ly/d/null-undefined
60691
+ * @param {PaymentTransactionGroupByArgs} args - Group by arguments.
60692
+ * @example
60693
+ * // Group by city, order by createdAt, get count
60694
+ * const result = await prisma.user.groupBy({
60695
+ * by: ['city', 'createdAt'],
60696
+ * orderBy: {
60697
+ * createdAt: true
60698
+ * },
60699
+ * _count: {
60700
+ * _all: true
60701
+ * },
60702
+ * })
60703
+ *
60704
+ **/
60705
+ groupBy<
60706
+ T extends PaymentTransactionGroupByArgs,
60707
+ HasSelectOrTake extends Or<
60708
+ Extends<'skip', Keys<T>>,
60709
+ Extends<'take', Keys<T>>
60710
+ >,
60711
+ OrderByArg extends True extends HasSelectOrTake
60712
+ ? { orderBy: PaymentTransactionGroupByArgs['orderBy'] }
60713
+ : { orderBy?: PaymentTransactionGroupByArgs['orderBy'] },
59546
60714
  OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
59547
60715
  ByFields extends MaybeTupleToUnion<T['by']>,
59548
60716
  ByValid extends Has<ByFields, OrderFields>,
@@ -95715,6 +96883,20 @@ export namespace Prisma {
95715
96883
  export type StateScalarFieldEnum = (typeof StateScalarFieldEnum)[keyof typeof StateScalarFieldEnum]
95716
96884
 
95717
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
+
95718
96900
  export const PaymentTransactionScalarFieldEnum: {
95719
96901
  id: 'id',
95720
96902
  amount: 'amount',
@@ -96546,6 +97728,16 @@ export namespace Prisma {
96546
97728
  export type StateOrderByRelevanceFieldEnum = (typeof StateOrderByRelevanceFieldEnum)[keyof typeof StateOrderByRelevanceFieldEnum]
96547
97729
 
96548
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
+
96549
97741
  export const PaymentTransactionOrderByRelevanceFieldEnum: {
96550
97742
  type: 'type',
96551
97743
  notes: 'notes'
@@ -98160,6 +99352,7 @@ export namespace Prisma {
98160
99352
  reportCredits?: ReportCreditsListRelationFilter
98161
99353
  categories?: BrandToCategoryListRelationFilter
98162
99354
  paymentTransactions?: PaymentTransactionListRelationFilter
99355
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentListRelationFilter
98163
99356
  savedfiles?: SavedFileListRelationFilter
98164
99357
  creatorLists?: CreatorListListRelationFilter
98165
99358
  affiliateLinks?: BrandAffiliateLinkListRelationFilter
@@ -98203,6 +99396,7 @@ export namespace Prisma {
98203
99396
  reportCredits?: ReportCreditsOrderByRelationAggregateInput
98204
99397
  categories?: BrandToCategoryOrderByRelationAggregateInput
98205
99398
  paymentTransactions?: PaymentTransactionOrderByRelationAggregateInput
99399
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentOrderByRelationAggregateInput
98206
99400
  savedfiles?: SavedFileOrderByRelationAggregateInput
98207
99401
  creatorLists?: CreatorListOrderByRelationAggregateInput
98208
99402
  affiliateLinks?: BrandAffiliateLinkOrderByRelationAggregateInput
@@ -98250,6 +99444,7 @@ export namespace Prisma {
98250
99444
  reportCredits?: ReportCreditsListRelationFilter
98251
99445
  categories?: BrandToCategoryListRelationFilter
98252
99446
  paymentTransactions?: PaymentTransactionListRelationFilter
99447
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentListRelationFilter
98253
99448
  savedfiles?: SavedFileListRelationFilter
98254
99449
  creatorLists?: CreatorListListRelationFilter
98255
99450
  affiliateLinks?: BrandAffiliateLinkListRelationFilter
@@ -100947,6 +102142,79 @@ export namespace Prisma {
100947
102142
  stateName?: StringWithAggregatesFilter<"State"> | string
100948
102143
  }
100949
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
+
100950
102218
  export type PaymentTransactionWhereInput = {
100951
102219
  AND?: PaymentTransactionWhereInput | PaymentTransactionWhereInput[]
100952
102220
  OR?: PaymentTransactionWhereInput[]
@@ -104866,6 +106134,7 @@ export namespace Prisma {
104866
106134
  reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
104867
106135
  categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
104868
106136
  paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
106137
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
104869
106138
  savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
104870
106139
  creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
104871
106140
  affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
@@ -104908,6 +106177,7 @@ export namespace Prisma {
104908
106177
  reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
104909
106178
  categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
104910
106179
  paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
106180
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
104911
106181
  savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
104912
106182
  creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
104913
106183
  affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
@@ -104947,6 +106217,7 @@ export namespace Prisma {
104947
106217
  reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
104948
106218
  categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
104949
106219
  paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
106220
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
104950
106221
  savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
104951
106222
  creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
104952
106223
  affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
@@ -104989,6 +106260,7 @@ export namespace Prisma {
104989
106260
  reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
104990
106261
  categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
104991
106262
  paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
106263
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
104992
106264
  savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
104993
106265
  creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
104994
106266
  affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
@@ -107729,6 +109001,79 @@ export namespace Prisma {
107729
109001
  stateName?: StringFieldUpdateOperationsInput | string
107730
109002
  }
107731
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
+
107732
109077
  export type PaymentTransactionCreateInput = {
107733
109078
  amount: number
107734
109079
  balance: number
@@ -111457,6 +112802,12 @@ export namespace Prisma {
111457
112802
  none?: BrandToCategoryWhereInput
111458
112803
  }
111459
112804
 
112805
+ export type PendingBrandInvoicePaymentListRelationFilter = {
112806
+ every?: PendingBrandInvoicePaymentWhereInput
112807
+ some?: PendingBrandInvoicePaymentWhereInput
112808
+ none?: PendingBrandInvoicePaymentWhereInput
112809
+ }
112810
+
111460
112811
  export type SavedFileListRelationFilter = {
111461
112812
  every?: SavedFileWhereInput
111462
112813
  some?: SavedFileWhereInput
@@ -111545,6 +112896,10 @@ export namespace Prisma {
111545
112896
  _count?: SortOrder
111546
112897
  }
111547
112898
 
112899
+ export type PendingBrandInvoicePaymentOrderByRelationAggregateInput = {
112900
+ _count?: SortOrder
112901
+ }
112902
+
111548
112903
  export type SavedFileOrderByRelationAggregateInput = {
111549
112904
  _count?: SortOrder
111550
112905
  }
@@ -113803,6 +115158,55 @@ export namespace Prisma {
113803
115158
  countryId?: SortOrder
113804
115159
  }
113805
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
+
113806
115210
  export type PaymentTransactionNullableRelationFilter = {
113807
115211
  is?: PaymentTransactionWhereInput | null
113808
115212
  isNot?: PaymentTransactionWhereInput | null
@@ -117015,6 +118419,13 @@ export namespace Prisma {
117015
118419
  connect?: PaymentTransactionWhereUniqueInput | PaymentTransactionWhereUniqueInput[]
117016
118420
  }
117017
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
+
117018
118429
  export type SavedFileCreateNestedManyWithoutBrandInput = {
117019
118430
  create?: XOR<SavedFileCreateWithoutBrandInput, SavedFileUncheckedCreateWithoutBrandInput> | SavedFileCreateWithoutBrandInput[] | SavedFileUncheckedCreateWithoutBrandInput[]
117020
118431
  connectOrCreate?: SavedFileCreateOrConnectWithoutBrandInput | SavedFileCreateOrConnectWithoutBrandInput[]
@@ -117186,6 +118597,13 @@ export namespace Prisma {
117186
118597
  connect?: PaymentTransactionWhereUniqueInput | PaymentTransactionWhereUniqueInput[]
117187
118598
  }
117188
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
+
117189
118607
  export type SavedFileUncheckedCreateNestedManyWithoutBrandInput = {
117190
118608
  create?: XOR<SavedFileCreateWithoutBrandInput, SavedFileUncheckedCreateWithoutBrandInput> | SavedFileCreateWithoutBrandInput[] | SavedFileUncheckedCreateWithoutBrandInput[]
117191
118609
  connectOrCreate?: SavedFileCreateOrConnectWithoutBrandInput | SavedFileCreateOrConnectWithoutBrandInput[]
@@ -117415,6 +118833,20 @@ export namespace Prisma {
117415
118833
  deleteMany?: PaymentTransactionScalarWhereInput | PaymentTransactionScalarWhereInput[]
117416
118834
  }
117417
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
+
117418
118850
  export type SavedFileUpdateManyWithoutBrandNestedInput = {
117419
118851
  create?: XOR<SavedFileCreateWithoutBrandInput, SavedFileUncheckedCreateWithoutBrandInput> | SavedFileCreateWithoutBrandInput[] | SavedFileUncheckedCreateWithoutBrandInput[]
117420
118852
  connectOrCreate?: SavedFileCreateOrConnectWithoutBrandInput | SavedFileCreateOrConnectWithoutBrandInput[]
@@ -117749,6 +119181,20 @@ export namespace Prisma {
117749
119181
  deleteMany?: PaymentTransactionScalarWhereInput | PaymentTransactionScalarWhereInput[]
117750
119182
  }
117751
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
+
117752
119198
  export type SavedFileUncheckedUpdateManyWithoutBrandNestedInput = {
117753
119199
  create?: XOR<SavedFileCreateWithoutBrandInput, SavedFileUncheckedCreateWithoutBrandInput> | SavedFileCreateWithoutBrandInput[] | SavedFileUncheckedCreateWithoutBrandInput[]
117754
119200
  connectOrCreate?: SavedFileCreateOrConnectWithoutBrandInput | SavedFileCreateOrConnectWithoutBrandInput[]
@@ -120739,6 +122185,22 @@ export namespace Prisma {
120739
122185
  update?: XOR<XOR<CountryUpdateToOneWithWhereWithoutStatesInput, CountryUpdateWithoutStatesInput>, CountryUncheckedUpdateWithoutStatesInput>
120740
122186
  }
120741
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
+
120742
122204
  export type BrandCreateNestedOneWithoutPaymentTransactionsInput = {
120743
122205
  create?: XOR<BrandCreateWithoutPaymentTransactionsInput, BrandUncheckedCreateWithoutPaymentTransactionsInput>
120744
122206
  connectOrCreate?: BrandCreateOrConnectWithoutPaymentTransactionsInput
@@ -123718,6 +125180,7 @@ export namespace Prisma {
123718
125180
  reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
123719
125181
  categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
123720
125182
  paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
125183
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
123721
125184
  savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
123722
125185
  creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
123723
125186
  affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
@@ -123759,6 +125222,7 @@ export namespace Prisma {
123759
125222
  reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
123760
125223
  categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
123761
125224
  paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
125225
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
123762
125226
  savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
123763
125227
  creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
123764
125228
  affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
@@ -125873,6 +127337,7 @@ export namespace Prisma {
125873
127337
  reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
125874
127338
  categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
125875
127339
  paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
127340
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
125876
127341
  savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
125877
127342
  creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
125878
127343
  affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
@@ -125914,6 +127379,7 @@ export namespace Prisma {
125914
127379
  reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
125915
127380
  categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
125916
127381
  paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
127382
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
125917
127383
  savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
125918
127384
  creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
125919
127385
  affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
@@ -126076,6 +127542,7 @@ export namespace Prisma {
126076
127542
  reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
126077
127543
  categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
126078
127544
  paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
127545
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
126079
127546
  savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
126080
127547
  creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
126081
127548
  affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
@@ -126117,6 +127584,7 @@ export namespace Prisma {
126117
127584
  reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
126118
127585
  categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
126119
127586
  paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
127587
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
126120
127588
  savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
126121
127589
  creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
126122
127590
  affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
@@ -126257,6 +127725,7 @@ export namespace Prisma {
126257
127725
  reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
126258
127726
  categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
126259
127727
  paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
127728
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
126260
127729
  savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
126261
127730
  creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
126262
127731
  affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
@@ -126298,6 +127767,7 @@ export namespace Prisma {
126298
127767
  reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
126299
127768
  categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
126300
127769
  paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
127770
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
126301
127771
  savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
126302
127772
  creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
126303
127773
  affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
@@ -126460,6 +127930,7 @@ export namespace Prisma {
126460
127930
  reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
126461
127931
  categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
126462
127932
  paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
127933
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
126463
127934
  savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
126464
127935
  creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
126465
127936
  affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
@@ -126501,6 +127972,7 @@ export namespace Prisma {
126501
127972
  reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
126502
127973
  categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
126503
127974
  paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
127975
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
126504
127976
  savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
126505
127977
  creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
126506
127978
  affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
@@ -126641,6 +128113,7 @@ export namespace Prisma {
126641
128113
  reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
126642
128114
  categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
126643
128115
  paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
128116
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
126644
128117
  savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
126645
128118
  creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
126646
128119
  affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
@@ -126682,6 +128155,7 @@ export namespace Prisma {
126682
128155
  reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
126683
128156
  categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
126684
128157
  paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
128158
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
126685
128159
  savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
126686
128160
  creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
126687
128161
  affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
@@ -126844,6 +128318,7 @@ export namespace Prisma {
126844
128318
  reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
126845
128319
  categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
126846
128320
  paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
128321
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
126847
128322
  savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
126848
128323
  creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
126849
128324
  affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
@@ -126885,6 +128360,7 @@ export namespace Prisma {
126885
128360
  reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
126886
128361
  categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
126887
128362
  paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
128363
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
126888
128364
  savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
126889
128365
  creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
126890
128366
  affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
@@ -127655,6 +129131,7 @@ export namespace Prisma {
127655
129131
  reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
127656
129132
  categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
127657
129133
  paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
129134
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
127658
129135
  savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
127659
129136
  creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
127660
129137
  affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
@@ -127696,6 +129173,7 @@ export namespace Prisma {
127696
129173
  reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
127697
129174
  categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
127698
129175
  paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
129176
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
127699
129177
  savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
127700
129178
  creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
127701
129179
  affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
@@ -127858,6 +129336,7 @@ export namespace Prisma {
127858
129336
  reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
127859
129337
  categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
127860
129338
  paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
129339
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
127861
129340
  savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
127862
129341
  creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
127863
129342
  affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
@@ -127899,6 +129378,7 @@ export namespace Prisma {
127899
129378
  reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
127900
129379
  categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
127901
129380
  paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
129381
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
127902
129382
  savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
127903
129383
  creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
127904
129384
  affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
@@ -128483,6 +129963,35 @@ export namespace Prisma {
128483
129963
  skipDuplicates?: boolean
128484
129964
  }
128485
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
+
128486
129995
  export type SavedFileCreateWithoutBrandInput = {
128487
129996
  title?: string | null
128488
129997
  type?: string | null
@@ -128919,6 +130428,7 @@ export namespace Prisma {
128919
130428
  reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
128920
130429
  categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
128921
130430
  paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
130431
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
128922
130432
  savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
128923
130433
  creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
128924
130434
  affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
@@ -128960,6 +130470,7 @@ export namespace Prisma {
128960
130470
  reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
128961
130471
  categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
128962
130472
  paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
130473
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
128963
130474
  savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
128964
130475
  creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
128965
130476
  affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
@@ -129003,6 +130514,7 @@ export namespace Prisma {
129003
130514
  reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
129004
130515
  categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
129005
130516
  paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
130517
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
129006
130518
  savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
129007
130519
  creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
129008
130520
  affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
@@ -129043,6 +130555,7 @@ export namespace Prisma {
129043
130555
  reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
129044
130556
  categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
129045
130557
  paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
130558
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
129046
130559
  savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
129047
130560
  creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
129048
130561
  affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
@@ -129561,6 +131074,36 @@ export namespace Prisma {
129561
131074
  data: XOR<PaymentTransactionUpdateManyMutationInput, PaymentTransactionUncheckedUpdateManyWithoutBrandInput>
129562
131075
  }
129563
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
+
129564
131107
  export type SavedFileUpsertWithWhereUniqueWithoutBrandInput = {
129565
131108
  where: SavedFileWhereUniqueInput
129566
131109
  update: XOR<SavedFileUpdateWithoutBrandInput, SavedFileUncheckedUpdateWithoutBrandInput>
@@ -129974,6 +131517,7 @@ export namespace Prisma {
129974
131517
  reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
129975
131518
  categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
129976
131519
  paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
131520
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
129977
131521
  savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
129978
131522
  creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
129979
131523
  affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
@@ -130015,6 +131559,7 @@ export namespace Prisma {
130015
131559
  reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
130016
131560
  categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
130017
131561
  paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
131562
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
130018
131563
  savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
130019
131564
  creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
130020
131565
  affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
@@ -130120,6 +131665,7 @@ export namespace Prisma {
130120
131665
  reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
130121
131666
  categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
130122
131667
  paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
131668
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
130123
131669
  savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
130124
131670
  creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
130125
131671
  affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
@@ -130161,6 +131707,7 @@ export namespace Prisma {
130161
131707
  reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
130162
131708
  categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
130163
131709
  paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
131710
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
130164
131711
  savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
130165
131712
  creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
130166
131713
  affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
@@ -130279,6 +131826,7 @@ export namespace Prisma {
130279
131826
  reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
130280
131827
  categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
130281
131828
  paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
131829
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
130282
131830
  savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
130283
131831
  creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
130284
131832
  affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
@@ -130320,6 +131868,7 @@ export namespace Prisma {
130320
131868
  reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
130321
131869
  categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
130322
131870
  paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
131871
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
130323
131872
  savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
130324
131873
  creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
130325
131874
  affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
@@ -130410,6 +131959,7 @@ export namespace Prisma {
130410
131959
  searchContacts?: SearchContactsCreateNestedManyWithoutBrandInput
130411
131960
  categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
130412
131961
  paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
131962
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
130413
131963
  savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
130414
131964
  creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
130415
131965
  affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
@@ -130451,6 +132001,7 @@ export namespace Prisma {
130451
132001
  searchContacts?: SearchContactsUncheckedCreateNestedManyWithoutBrandInput
130452
132002
  categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
130453
132003
  paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
132004
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
130454
132005
  savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
130455
132006
  creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
130456
132007
  affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
@@ -130569,6 +132120,7 @@ export namespace Prisma {
130569
132120
  searchContacts?: SearchContactsUpdateManyWithoutBrandNestedInput
130570
132121
  categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
130571
132122
  paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
132123
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
130572
132124
  savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
130573
132125
  creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
130574
132126
  affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
@@ -130610,6 +132162,7 @@ export namespace Prisma {
130610
132162
  searchContacts?: SearchContactsUncheckedUpdateManyWithoutBrandNestedInput
130611
132163
  categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
130612
132164
  paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
132165
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
130613
132166
  savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
130614
132167
  creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
130615
132168
  affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
@@ -130649,6 +132202,7 @@ export namespace Prisma {
130649
132202
  reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
130650
132203
  categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
130651
132204
  paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
132205
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
130652
132206
  savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
130653
132207
  creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
130654
132208
  affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
@@ -130690,6 +132244,7 @@ export namespace Prisma {
130690
132244
  reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
130691
132245
  categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
130692
132246
  paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
132247
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
130693
132248
  savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
130694
132249
  creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
130695
132250
  affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
@@ -130765,6 +132320,7 @@ export namespace Prisma {
130765
132320
  reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
130766
132321
  categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
130767
132322
  paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
132323
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
130768
132324
  savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
130769
132325
  creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
130770
132326
  affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
@@ -130806,6 +132362,7 @@ export namespace Prisma {
130806
132362
  reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
130807
132363
  categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
130808
132364
  paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
132365
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
130809
132366
  savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
130810
132367
  creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
130811
132368
  affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
@@ -130869,6 +132426,7 @@ export namespace Prisma {
130869
132426
  searchContacts?: SearchContactsCreateNestedManyWithoutBrandInput
130870
132427
  reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
130871
132428
  paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
132429
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
130872
132430
  savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
130873
132431
  creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
130874
132432
  affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
@@ -130910,6 +132468,7 @@ export namespace Prisma {
130910
132468
  searchContacts?: SearchContactsUncheckedCreateNestedManyWithoutBrandInput
130911
132469
  reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
130912
132470
  paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
132471
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
130913
132472
  savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
130914
132473
  creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
130915
132474
  affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
@@ -130984,6 +132543,7 @@ export namespace Prisma {
130984
132543
  searchContacts?: SearchContactsUpdateManyWithoutBrandNestedInput
130985
132544
  reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
130986
132545
  paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
132546
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
130987
132547
  savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
130988
132548
  creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
130989
132549
  affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
@@ -131025,6 +132585,7 @@ export namespace Prisma {
131025
132585
  searchContacts?: SearchContactsUncheckedUpdateManyWithoutBrandNestedInput
131026
132586
  reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
131027
132587
  paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
132588
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
131028
132589
  savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
131029
132590
  creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
131030
132591
  affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
@@ -132097,6 +133658,7 @@ export namespace Prisma {
132097
133658
  reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
132098
133659
  categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
132099
133660
  paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
133661
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
132100
133662
  savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
132101
133663
  creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
132102
133664
  affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
@@ -132138,6 +133700,7 @@ export namespace Prisma {
132138
133700
  reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
132139
133701
  categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
132140
133702
  paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
133703
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
132141
133704
  savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
132142
133705
  creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
132143
133706
  affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
@@ -132607,6 +134170,7 @@ export namespace Prisma {
132607
134170
  reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
132608
134171
  categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
132609
134172
  paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
134173
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
132610
134174
  savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
132611
134175
  creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
132612
134176
  affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
@@ -132648,6 +134212,7 @@ export namespace Prisma {
132648
134212
  reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
132649
134213
  categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
132650
134214
  paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
134215
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
132651
134216
  savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
132652
134217
  creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
132653
134218
  affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
@@ -134693,6 +136258,7 @@ export namespace Prisma {
134693
136258
  reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
134694
136259
  categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
134695
136260
  paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
136261
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
134696
136262
  savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
134697
136263
  creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
134698
136264
  affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
@@ -134734,6 +136300,7 @@ export namespace Prisma {
134734
136300
  reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
134735
136301
  categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
134736
136302
  paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
136303
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
134737
136304
  savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
134738
136305
  creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
134739
136306
  affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
@@ -134833,6 +136400,7 @@ export namespace Prisma {
134833
136400
  reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
134834
136401
  categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
134835
136402
  paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
136403
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
134836
136404
  savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
134837
136405
  creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
134838
136406
  affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
@@ -134874,6 +136442,7 @@ export namespace Prisma {
134874
136442
  reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
134875
136443
  categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
134876
136444
  paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
136445
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
134877
136446
  savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
134878
136447
  creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
134879
136448
  affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
@@ -139754,6 +141323,184 @@ export namespace Prisma {
139754
141323
  campaigns?: CampaignToCountryUncheckedUpdateManyWithoutCountryNestedInput
139755
141324
  }
139756
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
+
139757
141504
  export type BrandCreateWithoutPaymentTransactionsInput = {
139758
141505
  name: string
139759
141506
  description?: string | null
@@ -139775,6 +141522,7 @@ export namespace Prisma {
139775
141522
  searchContacts?: SearchContactsCreateNestedManyWithoutBrandInput
139776
141523
  reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
139777
141524
  categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
141525
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
139778
141526
  savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
139779
141527
  creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
139780
141528
  affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
@@ -139816,6 +141564,7 @@ export namespace Prisma {
139816
141564
  searchContacts?: SearchContactsUncheckedCreateNestedManyWithoutBrandInput
139817
141565
  reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
139818
141566
  categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
141567
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
139819
141568
  savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
139820
141569
  creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
139821
141570
  affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
@@ -140036,6 +141785,7 @@ export namespace Prisma {
140036
141785
  searchContacts?: SearchContactsUpdateManyWithoutBrandNestedInput
140037
141786
  reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
140038
141787
  categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
141788
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
140039
141789
  savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
140040
141790
  creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
140041
141791
  affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
@@ -140077,6 +141827,7 @@ export namespace Prisma {
140077
141827
  searchContacts?: SearchContactsUncheckedUpdateManyWithoutBrandNestedInput
140078
141828
  reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
140079
141829
  categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
141830
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
140080
141831
  savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
140081
141832
  creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
140082
141833
  affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
@@ -140795,6 +142546,7 @@ export namespace Prisma {
140795
142546
  reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
140796
142547
  categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
140797
142548
  paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
142549
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
140798
142550
  savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
140799
142551
  creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
140800
142552
  messageTemplate?: MessageTemplateCreateNestedManyWithoutBrandInput
@@ -140836,6 +142588,7 @@ export namespace Prisma {
140836
142588
  reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
140837
142589
  categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
140838
142590
  paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
142591
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
140839
142592
  savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
140840
142593
  creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
140841
142594
  messageTemplate?: MessageTemplateUncheckedCreateNestedManyWithoutBrandInput
@@ -140922,6 +142675,7 @@ export namespace Prisma {
140922
142675
  reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
140923
142676
  categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
140924
142677
  paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
142678
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
140925
142679
  savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
140926
142680
  creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
140927
142681
  messageTemplate?: MessageTemplateUpdateManyWithoutBrandNestedInput
@@ -140963,6 +142717,7 @@ export namespace Prisma {
140963
142717
  reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
140964
142718
  categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
140965
142719
  paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
142720
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
140966
142721
  savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
140967
142722
  creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
140968
142723
  messageTemplate?: MessageTemplateUncheckedUpdateManyWithoutBrandNestedInput
@@ -141958,6 +143713,7 @@ export namespace Prisma {
141958
143713
  reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
141959
143714
  categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
141960
143715
  paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
143716
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
141961
143717
  creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
141962
143718
  affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
141963
143719
  messageTemplate?: MessageTemplateCreateNestedManyWithoutBrandInput
@@ -141999,6 +143755,7 @@ export namespace Prisma {
141999
143755
  reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
142000
143756
  categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
142001
143757
  paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
143758
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
142002
143759
  creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
142003
143760
  affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
142004
143761
  messageTemplate?: MessageTemplateUncheckedCreateNestedManyWithoutBrandInput
@@ -142053,6 +143810,7 @@ export namespace Prisma {
142053
143810
  reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
142054
143811
  categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
142055
143812
  paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
143813
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
142056
143814
  creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
142057
143815
  affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
142058
143816
  messageTemplate?: MessageTemplateUpdateManyWithoutBrandNestedInput
@@ -142094,6 +143852,7 @@ export namespace Prisma {
142094
143852
  reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
142095
143853
  categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
142096
143854
  paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
143855
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
142097
143856
  creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
142098
143857
  affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
142099
143858
  messageTemplate?: MessageTemplateUncheckedUpdateManyWithoutBrandNestedInput
@@ -142132,6 +143891,7 @@ export namespace Prisma {
142132
143891
  reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
142133
143892
  categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
142134
143893
  paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
143894
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
142135
143895
  savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
142136
143896
  creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
142137
143897
  affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
@@ -142173,6 +143933,7 @@ export namespace Prisma {
142173
143933
  reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
142174
143934
  categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
142175
143935
  paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
143936
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
142176
143937
  savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
142177
143938
  creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
142178
143939
  affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
@@ -142495,6 +144256,7 @@ export namespace Prisma {
142495
144256
  reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
142496
144257
  categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
142497
144258
  paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
144259
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
142498
144260
  savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
142499
144261
  creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
142500
144262
  affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
@@ -142536,6 +144298,7 @@ export namespace Prisma {
142536
144298
  reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
142537
144299
  categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
142538
144300
  paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
144301
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
142539
144302
  savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
142540
144303
  creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
142541
144304
  affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
@@ -142897,6 +144660,7 @@ export namespace Prisma {
142897
144660
  reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
142898
144661
  categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
142899
144662
  paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
144663
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
142900
144664
  savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
142901
144665
  affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
142902
144666
  messageTemplate?: MessageTemplateCreateNestedManyWithoutBrandInput
@@ -142938,6 +144702,7 @@ export namespace Prisma {
142938
144702
  reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
142939
144703
  categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
142940
144704
  paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
144705
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
142941
144706
  savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
142942
144707
  affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
142943
144708
  messageTemplate?: MessageTemplateUncheckedCreateNestedManyWithoutBrandInput
@@ -143208,6 +144973,7 @@ export namespace Prisma {
143208
144973
  reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
143209
144974
  categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
143210
144975
  paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
144976
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
143211
144977
  savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
143212
144978
  affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
143213
144979
  messageTemplate?: MessageTemplateUpdateManyWithoutBrandNestedInput
@@ -143249,6 +145015,7 @@ export namespace Prisma {
143249
145015
  reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
143250
145016
  categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
143251
145017
  paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
145018
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
143252
145019
  savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
143253
145020
  affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
143254
145021
  messageTemplate?: MessageTemplateUncheckedUpdateManyWithoutBrandNestedInput
@@ -144080,6 +145847,7 @@ export namespace Prisma {
144080
145847
  reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
144081
145848
  categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
144082
145849
  paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
145850
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
144083
145851
  savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
144084
145852
  creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
144085
145853
  affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
@@ -144121,6 +145889,7 @@ export namespace Prisma {
144121
145889
  reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
144122
145890
  categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
144123
145891
  paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
145892
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
144124
145893
  savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
144125
145894
  creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
144126
145895
  affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
@@ -144175,6 +145944,7 @@ export namespace Prisma {
144175
145944
  reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
144176
145945
  categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
144177
145946
  paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
145947
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
144178
145948
  savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
144179
145949
  creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
144180
145950
  affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
@@ -144216,6 +145986,7 @@ export namespace Prisma {
144216
145986
  reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
144217
145987
  categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
144218
145988
  paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
145989
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
144219
145990
  savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
144220
145991
  creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
144221
145992
  affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
@@ -144254,6 +146025,7 @@ export namespace Prisma {
144254
146025
  reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
144255
146026
  categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
144256
146027
  paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
146028
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
144257
146029
  savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
144258
146030
  creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
144259
146031
  affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
@@ -144295,6 +146067,7 @@ export namespace Prisma {
144295
146067
  reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
144296
146068
  categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
144297
146069
  paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
146070
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
144298
146071
  savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
144299
146072
  creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
144300
146073
  affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
@@ -144378,6 +146151,7 @@ export namespace Prisma {
144378
146151
  reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
144379
146152
  categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
144380
146153
  paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
146154
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
144381
146155
  savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
144382
146156
  creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
144383
146157
  affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
@@ -144419,6 +146193,7 @@ export namespace Prisma {
144419
146193
  reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
144420
146194
  categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
144421
146195
  paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
146196
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
144422
146197
  savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
144423
146198
  creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
144424
146199
  affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
@@ -144486,6 +146261,7 @@ export namespace Prisma {
144486
146261
  reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
144487
146262
  categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
144488
146263
  paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
146264
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
144489
146265
  savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
144490
146266
  creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
144491
146267
  affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
@@ -144527,6 +146303,7 @@ export namespace Prisma {
144527
146303
  reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
144528
146304
  categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
144529
146305
  paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
146306
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
144530
146307
  savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
144531
146308
  creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
144532
146309
  affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
@@ -144600,6 +146377,7 @@ export namespace Prisma {
144600
146377
  reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
144601
146378
  categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
144602
146379
  paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
146380
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
144603
146381
  savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
144604
146382
  creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
144605
146383
  affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
@@ -144641,6 +146419,7 @@ export namespace Prisma {
144641
146419
  reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
144642
146420
  categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
144643
146421
  paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
146422
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
144644
146423
  savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
144645
146424
  creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
144646
146425
  affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
@@ -145533,6 +147312,7 @@ export namespace Prisma {
145533
147312
  reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
145534
147313
  categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
145535
147314
  paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
147315
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
145536
147316
  savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
145537
147317
  creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
145538
147318
  affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
@@ -145574,6 +147354,7 @@ export namespace Prisma {
145574
147354
  reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
145575
147355
  categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
145576
147356
  paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
147357
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
145577
147358
  savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
145578
147359
  creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
145579
147360
  affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
@@ -145808,6 +147589,7 @@ export namespace Prisma {
145808
147589
  reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
145809
147590
  categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
145810
147591
  paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
147592
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
145811
147593
  savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
145812
147594
  creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
145813
147595
  affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
@@ -145849,6 +147631,7 @@ export namespace Prisma {
145849
147631
  reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
145850
147632
  categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
145851
147633
  paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
147634
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
145852
147635
  savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
145853
147636
  creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
145854
147637
  affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
@@ -146067,6 +147850,7 @@ export namespace Prisma {
146067
147850
  reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
146068
147851
  categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
146069
147852
  paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
147853
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
146070
147854
  savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
146071
147855
  creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
146072
147856
  affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
@@ -146108,6 +147892,7 @@ export namespace Prisma {
146108
147892
  reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
146109
147893
  categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
146110
147894
  paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
147895
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
146111
147896
  savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
146112
147897
  creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
146113
147898
  affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
@@ -146342,6 +148127,7 @@ export namespace Prisma {
146342
148127
  reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
146343
148128
  categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
146344
148129
  paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
148130
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
146345
148131
  savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
146346
148132
  creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
146347
148133
  affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
@@ -146383,6 +148169,7 @@ export namespace Prisma {
146383
148169
  reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
146384
148170
  categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
146385
148171
  paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
148172
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
146386
148173
  savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
146387
148174
  creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
146388
148175
  affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
@@ -146649,6 +148436,7 @@ export namespace Prisma {
146649
148436
  reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
146650
148437
  categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
146651
148438
  paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
148439
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
146652
148440
  savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
146653
148441
  creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
146654
148442
  affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
@@ -146690,6 +148478,7 @@ export namespace Prisma {
146690
148478
  reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
146691
148479
  categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
146692
148480
  paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
148481
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
146693
148482
  savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
146694
148483
  creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
146695
148484
  affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
@@ -146744,6 +148533,7 @@ export namespace Prisma {
146744
148533
  reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
146745
148534
  categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
146746
148535
  paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
148536
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
146747
148537
  savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
146748
148538
  creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
146749
148539
  affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
@@ -146785,6 +148575,7 @@ export namespace Prisma {
146785
148575
  reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
146786
148576
  categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
146787
148577
  paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
148578
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
146788
148579
  savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
146789
148580
  creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
146790
148581
  affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
@@ -146997,6 +148788,7 @@ export namespace Prisma {
146997
148788
  reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
146998
148789
  categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
146999
148790
  paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
148791
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
147000
148792
  savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
147001
148793
  creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
147002
148794
  affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
@@ -147038,6 +148830,7 @@ export namespace Prisma {
147038
148830
  reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
147039
148831
  categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
147040
148832
  paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
148833
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
147041
148834
  savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
147042
148835
  creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
147043
148836
  affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
@@ -147377,6 +149170,7 @@ export namespace Prisma {
147377
149170
  reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
147378
149171
  categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
147379
149172
  paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
149173
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
147380
149174
  savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
147381
149175
  creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
147382
149176
  affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
@@ -147418,6 +149212,7 @@ export namespace Prisma {
147418
149212
  reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
147419
149213
  categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
147420
149214
  paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
149215
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
147421
149216
  savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
147422
149217
  creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
147423
149218
  affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
@@ -148184,6 +149979,7 @@ export namespace Prisma {
148184
149979
  reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
148185
149980
  categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
148186
149981
  paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
149982
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentCreateNestedManyWithoutBrandInput
148187
149983
  savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
148188
149984
  creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
148189
149985
  affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
@@ -148225,6 +150021,7 @@ export namespace Prisma {
148225
150021
  reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
148226
150022
  categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
148227
150023
  paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
150024
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedCreateNestedManyWithoutBrandInput
148228
150025
  savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
148229
150026
  creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
148230
150027
  affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
@@ -148308,6 +150105,7 @@ export namespace Prisma {
148308
150105
  reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
148309
150106
  categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
148310
150107
  paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
150108
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
148311
150109
  savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
148312
150110
  creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
148313
150111
  affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
@@ -148349,6 +150147,7 @@ export namespace Prisma {
148349
150147
  reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
148350
150148
  categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
148351
150149
  paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
150150
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
148352
150151
  savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
148353
150152
  creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
148354
150153
  affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
@@ -150307,6 +152106,7 @@ export namespace Prisma {
150307
152106
  reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
150308
152107
  categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
150309
152108
  paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
152109
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
150310
152110
  savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
150311
152111
  creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
150312
152112
  affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
@@ -150348,6 +152148,7 @@ export namespace Prisma {
150348
152148
  reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
150349
152149
  categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
150350
152150
  paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
152151
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
150351
152152
  savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
150352
152153
  creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
150353
152154
  affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
@@ -151000,6 +152801,16 @@ export namespace Prisma {
151000
152801
  prevTransactionId?: number | null
151001
152802
  }
151002
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
+
151003
152814
  export type SavedFileCreateManyBrandInput = {
151004
152815
  id?: number
151005
152816
  title?: string | null
@@ -151475,6 +153286,35 @@ export namespace Prisma {
151475
153286
  prevTransactionId?: NullableIntFieldUpdateOperationsInput | number | null
151476
153287
  }
151477
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
+
151478
153318
  export type SavedFileUpdateWithoutBrandInput = {
151479
153319
  title?: NullableStringFieldUpdateOperationsInput | string | null
151480
153320
  type?: NullableStringFieldUpdateOperationsInput | string | null
@@ -151901,6 +153741,7 @@ export namespace Prisma {
151901
153741
  reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
151902
153742
  categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
151903
153743
  paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
153744
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUpdateManyWithoutBrandNestedInput
151904
153745
  savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
151905
153746
  creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
151906
153747
  affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
@@ -151941,6 +153782,7 @@ export namespace Prisma {
151941
153782
  reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
151942
153783
  categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
151943
153784
  paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
153785
+ PendingBrandInvoicePayments?: PendingBrandInvoicePaymentUncheckedUpdateManyWithoutBrandNestedInput
151944
153786
  savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
151945
153787
  creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
151946
153788
  affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
@@ -154705,6 +156547,10 @@ export namespace Prisma {
154705
156547
  * @deprecated Use StateDefaultArgs instead
154706
156548
  */
154707
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>
154708
156554
  /**
154709
156555
  * @deprecated Use PaymentTransactionDefaultArgs instead
154710
156556
  */