@creator.co/creatorco-prisma-client 1.0.89 → 1.0.91
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/edge.js +26 -6
- package/index-browser.js +21 -1
- package/index.d.ts +1507 -178
- package/index.js +26 -6
- package/package.json +1 -1
- package/schema.prisma +23 -6
- package/wasm.js +21 -1
package/index.d.ts
CHANGED
|
@@ -463,6 +463,11 @@ export type EmailTracking = $Result.DefaultSelection<Prisma.$EmailTrackingPayloa
|
|
|
463
463
|
*
|
|
464
464
|
*/
|
|
465
465
|
export type SequenceOutboundReplyEmail = $Result.DefaultSelection<Prisma.$SequenceOutboundReplyEmailPayload>
|
|
466
|
+
/**
|
|
467
|
+
* Model LLMPrompt
|
|
468
|
+
*
|
|
469
|
+
*/
|
|
470
|
+
export type LLMPrompt = $Result.DefaultSelection<Prisma.$LLMPromptPayload>
|
|
466
471
|
/**
|
|
467
472
|
* Model LatestCreatorPaymentTransaction
|
|
468
473
|
* View to get the latest PaymentTransaction for each creator where accountId equals creatorId
|
|
@@ -1631,6 +1636,16 @@ export class PrismaClient<
|
|
|
1631
1636
|
*/
|
|
1632
1637
|
get sequenceOutboundReplyEmail(): Prisma.SequenceOutboundReplyEmailDelegate<ExtArgs>;
|
|
1633
1638
|
|
|
1639
|
+
/**
|
|
1640
|
+
* `prisma.lLMPrompt`: Exposes CRUD operations for the **LLMPrompt** model.
|
|
1641
|
+
* Example usage:
|
|
1642
|
+
* ```ts
|
|
1643
|
+
* // Fetch zero or more LLMPrompts
|
|
1644
|
+
* const lLMPrompts = await prisma.lLMPrompt.findMany()
|
|
1645
|
+
* ```
|
|
1646
|
+
*/
|
|
1647
|
+
get lLMPrompt(): Prisma.LLMPromptDelegate<ExtArgs>;
|
|
1648
|
+
|
|
1634
1649
|
/**
|
|
1635
1650
|
* `prisma.latestCreatorPaymentTransaction`: Exposes CRUD operations for the **LatestCreatorPaymentTransaction** model.
|
|
1636
1651
|
* Example usage:
|
|
@@ -2181,6 +2196,7 @@ export namespace Prisma {
|
|
|
2181
2196
|
EmailProvider: 'EmailProvider',
|
|
2182
2197
|
EmailTracking: 'EmailTracking',
|
|
2183
2198
|
SequenceOutboundReplyEmail: 'SequenceOutboundReplyEmail',
|
|
2199
|
+
LLMPrompt: 'LLMPrompt',
|
|
2184
2200
|
LatestCreatorPaymentTransaction: 'LatestCreatorPaymentTransaction',
|
|
2185
2201
|
SocialPostAnalytics: 'SocialPostAnalytics'
|
|
2186
2202
|
};
|
|
@@ -2198,7 +2214,7 @@ export namespace Prisma {
|
|
|
2198
2214
|
|
|
2199
2215
|
export type TypeMap<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, ClientOptions = {}> = {
|
|
2200
2216
|
meta: {
|
|
2201
|
-
modelProps: "user" | "log" | "creatorProfile" | "instagramProfile" | "tiktokProfile" | "youtubeProfile" | "twitchProfile" | "facebookProfile" | "twitterProfile" | "brandUserProfile" | "brand" | "searchContacts" | "reportCredits" | "brandToImage" | "brandToCategory" | "creatorToCategory" | "chat" | "message" | "campaign" | "campaignPin" | "campaignToImage" | "campaignToBrandAffiliateLink" | "campaignToCategory" | "campaignToCountry" | "productList" | "productListItem" | "campaignToProductList" | "optinToProductListItem" | "variable" | "variableOption" | "step" | "campaignStep" | "optInStep" | "category" | "optIn" | "trolleyPayment" | "optInVariable" | "socialPost" | "publicSocialPost" | "campaignToSocialPost" | "archivedSocialPost" | "image" | "brandImage" | "country" | "state" | "pendingBrandInvoicePayment" | "paymentTransaction" | "externalAffiliateClick" | "brandAffiliateLink" | "affiliateConfiguration" | "affiliatePricingGroup" | "affiliateResolver" | "affiliateLink" | "affiliateClick" | "affiliateEvent" | "affiliatePayoutBatch" | "savedFile" | "campaignInvite" | "creatorList" | "creatorListItem" | "socialProfile" | "socialProfileContact" | "messageTemplate" | "emailTemplate" | "socialListeningList" | "listToSocialPost" | "optInView" | "rakutenActivity" | "impactRadiusEvent" | "cjEvent" | "shareASaleEvent" | "creatorSearchFilter" | "sequence" | "sequenceStep" | "sequenceOutboundEmail" | "sequenceInboundEmail" | "sequenceImapCheckpoint" | "shopifyStore" | "shopifyProduct" | "shopifyProductVariation" | "campaignToShopifyProduct" | "shopifyDiscountCode" | "shopifySale" | "creatorFlag" | "brandContract" | "file" | "creditRefundBatch" | "emailProvider" | "emailTracking" | "sequenceOutboundReplyEmail" | "latestCreatorPaymentTransaction" | "socialPostAnalytics"
|
|
2217
|
+
modelProps: "user" | "log" | "creatorProfile" | "instagramProfile" | "tiktokProfile" | "youtubeProfile" | "twitchProfile" | "facebookProfile" | "twitterProfile" | "brandUserProfile" | "brand" | "searchContacts" | "reportCredits" | "brandToImage" | "brandToCategory" | "creatorToCategory" | "chat" | "message" | "campaign" | "campaignPin" | "campaignToImage" | "campaignToBrandAffiliateLink" | "campaignToCategory" | "campaignToCountry" | "productList" | "productListItem" | "campaignToProductList" | "optinToProductListItem" | "variable" | "variableOption" | "step" | "campaignStep" | "optInStep" | "category" | "optIn" | "trolleyPayment" | "optInVariable" | "socialPost" | "publicSocialPost" | "campaignToSocialPost" | "archivedSocialPost" | "image" | "brandImage" | "country" | "state" | "pendingBrandInvoicePayment" | "paymentTransaction" | "externalAffiliateClick" | "brandAffiliateLink" | "affiliateConfiguration" | "affiliatePricingGroup" | "affiliateResolver" | "affiliateLink" | "affiliateClick" | "affiliateEvent" | "affiliatePayoutBatch" | "savedFile" | "campaignInvite" | "creatorList" | "creatorListItem" | "socialProfile" | "socialProfileContact" | "messageTemplate" | "emailTemplate" | "socialListeningList" | "listToSocialPost" | "optInView" | "rakutenActivity" | "impactRadiusEvent" | "cjEvent" | "shareASaleEvent" | "creatorSearchFilter" | "sequence" | "sequenceStep" | "sequenceOutboundEmail" | "sequenceInboundEmail" | "sequenceImapCheckpoint" | "shopifyStore" | "shopifyProduct" | "shopifyProductVariation" | "campaignToShopifyProduct" | "shopifyDiscountCode" | "shopifySale" | "creatorFlag" | "brandContract" | "file" | "creditRefundBatch" | "emailProvider" | "emailTracking" | "sequenceOutboundReplyEmail" | "lLMPrompt" | "latestCreatorPaymentTransaction" | "socialPostAnalytics"
|
|
2202
2218
|
txIsolationLevel: Prisma.TransactionIsolationLevel
|
|
2203
2219
|
}
|
|
2204
2220
|
model: {
|
|
@@ -8502,6 +8518,76 @@ export namespace Prisma {
|
|
|
8502
8518
|
}
|
|
8503
8519
|
}
|
|
8504
8520
|
}
|
|
8521
|
+
LLMPrompt: {
|
|
8522
|
+
payload: Prisma.$LLMPromptPayload<ExtArgs>
|
|
8523
|
+
fields: Prisma.LLMPromptFieldRefs
|
|
8524
|
+
operations: {
|
|
8525
|
+
findUnique: {
|
|
8526
|
+
args: Prisma.LLMPromptFindUniqueArgs<ExtArgs>
|
|
8527
|
+
result: $Utils.PayloadToResult<Prisma.$LLMPromptPayload> | null
|
|
8528
|
+
}
|
|
8529
|
+
findUniqueOrThrow: {
|
|
8530
|
+
args: Prisma.LLMPromptFindUniqueOrThrowArgs<ExtArgs>
|
|
8531
|
+
result: $Utils.PayloadToResult<Prisma.$LLMPromptPayload>
|
|
8532
|
+
}
|
|
8533
|
+
findFirst: {
|
|
8534
|
+
args: Prisma.LLMPromptFindFirstArgs<ExtArgs>
|
|
8535
|
+
result: $Utils.PayloadToResult<Prisma.$LLMPromptPayload> | null
|
|
8536
|
+
}
|
|
8537
|
+
findFirstOrThrow: {
|
|
8538
|
+
args: Prisma.LLMPromptFindFirstOrThrowArgs<ExtArgs>
|
|
8539
|
+
result: $Utils.PayloadToResult<Prisma.$LLMPromptPayload>
|
|
8540
|
+
}
|
|
8541
|
+
findMany: {
|
|
8542
|
+
args: Prisma.LLMPromptFindManyArgs<ExtArgs>
|
|
8543
|
+
result: $Utils.PayloadToResult<Prisma.$LLMPromptPayload>[]
|
|
8544
|
+
}
|
|
8545
|
+
create: {
|
|
8546
|
+
args: Prisma.LLMPromptCreateArgs<ExtArgs>
|
|
8547
|
+
result: $Utils.PayloadToResult<Prisma.$LLMPromptPayload>
|
|
8548
|
+
}
|
|
8549
|
+
createMany: {
|
|
8550
|
+
args: Prisma.LLMPromptCreateManyArgs<ExtArgs>
|
|
8551
|
+
result: BatchPayload
|
|
8552
|
+
}
|
|
8553
|
+
createManyAndReturn: {
|
|
8554
|
+
args: Prisma.LLMPromptCreateManyAndReturnArgs<ExtArgs>
|
|
8555
|
+
result: $Utils.PayloadToResult<Prisma.$LLMPromptPayload>[]
|
|
8556
|
+
}
|
|
8557
|
+
delete: {
|
|
8558
|
+
args: Prisma.LLMPromptDeleteArgs<ExtArgs>
|
|
8559
|
+
result: $Utils.PayloadToResult<Prisma.$LLMPromptPayload>
|
|
8560
|
+
}
|
|
8561
|
+
update: {
|
|
8562
|
+
args: Prisma.LLMPromptUpdateArgs<ExtArgs>
|
|
8563
|
+
result: $Utils.PayloadToResult<Prisma.$LLMPromptPayload>
|
|
8564
|
+
}
|
|
8565
|
+
deleteMany: {
|
|
8566
|
+
args: Prisma.LLMPromptDeleteManyArgs<ExtArgs>
|
|
8567
|
+
result: BatchPayload
|
|
8568
|
+
}
|
|
8569
|
+
updateMany: {
|
|
8570
|
+
args: Prisma.LLMPromptUpdateManyArgs<ExtArgs>
|
|
8571
|
+
result: BatchPayload
|
|
8572
|
+
}
|
|
8573
|
+
upsert: {
|
|
8574
|
+
args: Prisma.LLMPromptUpsertArgs<ExtArgs>
|
|
8575
|
+
result: $Utils.PayloadToResult<Prisma.$LLMPromptPayload>
|
|
8576
|
+
}
|
|
8577
|
+
aggregate: {
|
|
8578
|
+
args: Prisma.LLMPromptAggregateArgs<ExtArgs>
|
|
8579
|
+
result: $Utils.Optional<AggregateLLMPrompt>
|
|
8580
|
+
}
|
|
8581
|
+
groupBy: {
|
|
8582
|
+
args: Prisma.LLMPromptGroupByArgs<ExtArgs>
|
|
8583
|
+
result: $Utils.Optional<LLMPromptGroupByOutputType>[]
|
|
8584
|
+
}
|
|
8585
|
+
count: {
|
|
8586
|
+
args: Prisma.LLMPromptCountArgs<ExtArgs>
|
|
8587
|
+
result: $Utils.Optional<LLMPromptCountAggregateOutputType> | number
|
|
8588
|
+
}
|
|
8589
|
+
}
|
|
8590
|
+
}
|
|
8505
8591
|
LatestCreatorPaymentTransaction: {
|
|
8506
8592
|
payload: Prisma.$LatestCreatorPaymentTransactionPayload<ExtArgs>
|
|
8507
8593
|
fields: Prisma.LatestCreatorPaymentTransactionFieldRefs
|
|
@@ -77892,6 +77978,7 @@ export namespace Prisma {
|
|
|
77892
77978
|
type: number
|
|
77893
77979
|
value: number
|
|
77894
77980
|
source: number
|
|
77981
|
+
unsubscribe: number
|
|
77895
77982
|
metaData: number
|
|
77896
77983
|
createdAt: number
|
|
77897
77984
|
updatedAt: number
|
|
@@ -77930,6 +78017,7 @@ export namespace Prisma {
|
|
|
77930
78017
|
type?: true
|
|
77931
78018
|
value?: true
|
|
77932
78019
|
source?: true
|
|
78020
|
+
unsubscribe?: true
|
|
77933
78021
|
metaData?: true
|
|
77934
78022
|
createdAt?: true
|
|
77935
78023
|
updatedAt?: true
|
|
@@ -78027,6 +78115,7 @@ export namespace Prisma {
|
|
|
78027
78115
|
type: string
|
|
78028
78116
|
value: string
|
|
78029
78117
|
source: $Enums.SocialProfileContactSource
|
|
78118
|
+
unsubscribe: string[]
|
|
78030
78119
|
metaData: JsonValue | null
|
|
78031
78120
|
createdAt: Date | null
|
|
78032
78121
|
updatedAt: Date | null
|
|
@@ -78056,6 +78145,7 @@ export namespace Prisma {
|
|
|
78056
78145
|
type?: boolean
|
|
78057
78146
|
value?: boolean
|
|
78058
78147
|
source?: boolean
|
|
78148
|
+
unsubscribe?: boolean
|
|
78059
78149
|
metaData?: boolean
|
|
78060
78150
|
createdAt?: boolean
|
|
78061
78151
|
updatedAt?: boolean
|
|
@@ -78067,6 +78157,7 @@ export namespace Prisma {
|
|
|
78067
78157
|
type?: boolean
|
|
78068
78158
|
value?: boolean
|
|
78069
78159
|
source?: boolean
|
|
78160
|
+
unsubscribe?: boolean
|
|
78070
78161
|
metaData?: boolean
|
|
78071
78162
|
createdAt?: boolean
|
|
78072
78163
|
updatedAt?: boolean
|
|
@@ -78078,6 +78169,7 @@ export namespace Prisma {
|
|
|
78078
78169
|
type?: boolean
|
|
78079
78170
|
value?: boolean
|
|
78080
78171
|
source?: boolean
|
|
78172
|
+
unsubscribe?: boolean
|
|
78081
78173
|
metaData?: boolean
|
|
78082
78174
|
createdAt?: boolean
|
|
78083
78175
|
updatedAt?: boolean
|
|
@@ -78100,6 +78192,7 @@ export namespace Prisma {
|
|
|
78100
78192
|
type: string
|
|
78101
78193
|
value: string
|
|
78102
78194
|
source: $Enums.SocialProfileContactSource
|
|
78195
|
+
unsubscribe: string[]
|
|
78103
78196
|
metaData: Prisma.JsonValue | null
|
|
78104
78197
|
createdAt: Date | null
|
|
78105
78198
|
updatedAt: Date | null
|
|
@@ -78501,6 +78594,7 @@ export namespace Prisma {
|
|
|
78501
78594
|
readonly type: FieldRef<"SocialProfileContact", 'String'>
|
|
78502
78595
|
readonly value: FieldRef<"SocialProfileContact", 'String'>
|
|
78503
78596
|
readonly source: FieldRef<"SocialProfileContact", 'SocialProfileContactSource'>
|
|
78597
|
+
readonly unsubscribe: FieldRef<"SocialProfileContact", 'String[]'>
|
|
78504
78598
|
readonly metaData: FieldRef<"SocialProfileContact", 'Json'>
|
|
78505
78599
|
readonly createdAt: FieldRef<"SocialProfileContact", 'DateTime'>
|
|
78506
78600
|
readonly updatedAt: FieldRef<"SocialProfileContact", 'DateTime'>
|
|
@@ -107602,361 +107696,1317 @@ export namespace Prisma {
|
|
|
107602
107696
|
|
|
107603
107697
|
|
|
107604
107698
|
/**
|
|
107605
|
-
* Fields of the SequenceOutboundReplyEmail model
|
|
107699
|
+
* Fields of the SequenceOutboundReplyEmail model
|
|
107700
|
+
*/
|
|
107701
|
+
interface SequenceOutboundReplyEmailFieldRefs {
|
|
107702
|
+
readonly id: FieldRef<"SequenceOutboundReplyEmail", 'Int'>
|
|
107703
|
+
readonly sequenceId: FieldRef<"SequenceOutboundReplyEmail", 'Int'>
|
|
107704
|
+
readonly listItemId: FieldRef<"SequenceOutboundReplyEmail", 'Int'>
|
|
107705
|
+
readonly type: FieldRef<"SequenceOutboundReplyEmail", 'Int'>
|
|
107706
|
+
readonly typeId: FieldRef<"SequenceOutboundReplyEmail", 'String'>
|
|
107707
|
+
readonly replyCount: FieldRef<"SequenceOutboundReplyEmail", 'Int'>
|
|
107708
|
+
readonly createdAt: FieldRef<"SequenceOutboundReplyEmail", 'DateTime'>
|
|
107709
|
+
readonly updatedAt: FieldRef<"SequenceOutboundReplyEmail", 'DateTime'>
|
|
107710
|
+
}
|
|
107711
|
+
|
|
107712
|
+
|
|
107713
|
+
// Custom InputTypes
|
|
107714
|
+
/**
|
|
107715
|
+
* SequenceOutboundReplyEmail findUnique
|
|
107716
|
+
*/
|
|
107717
|
+
export type SequenceOutboundReplyEmailFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107718
|
+
/**
|
|
107719
|
+
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
107720
|
+
*/
|
|
107721
|
+
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
107722
|
+
/**
|
|
107723
|
+
* Choose, which related nodes to fetch as well
|
|
107724
|
+
*/
|
|
107725
|
+
include?: SequenceOutboundReplyEmailInclude<ExtArgs> | null
|
|
107726
|
+
/**
|
|
107727
|
+
* Filter, which SequenceOutboundReplyEmail to fetch.
|
|
107728
|
+
*/
|
|
107729
|
+
where: SequenceOutboundReplyEmailWhereUniqueInput
|
|
107730
|
+
}
|
|
107731
|
+
|
|
107732
|
+
/**
|
|
107733
|
+
* SequenceOutboundReplyEmail findUniqueOrThrow
|
|
107734
|
+
*/
|
|
107735
|
+
export type SequenceOutboundReplyEmailFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107736
|
+
/**
|
|
107737
|
+
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
107738
|
+
*/
|
|
107739
|
+
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
107740
|
+
/**
|
|
107741
|
+
* Choose, which related nodes to fetch as well
|
|
107742
|
+
*/
|
|
107743
|
+
include?: SequenceOutboundReplyEmailInclude<ExtArgs> | null
|
|
107744
|
+
/**
|
|
107745
|
+
* Filter, which SequenceOutboundReplyEmail to fetch.
|
|
107746
|
+
*/
|
|
107747
|
+
where: SequenceOutboundReplyEmailWhereUniqueInput
|
|
107748
|
+
}
|
|
107749
|
+
|
|
107750
|
+
/**
|
|
107751
|
+
* SequenceOutboundReplyEmail findFirst
|
|
107752
|
+
*/
|
|
107753
|
+
export type SequenceOutboundReplyEmailFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107754
|
+
/**
|
|
107755
|
+
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
107756
|
+
*/
|
|
107757
|
+
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
107758
|
+
/**
|
|
107759
|
+
* Choose, which related nodes to fetch as well
|
|
107760
|
+
*/
|
|
107761
|
+
include?: SequenceOutboundReplyEmailInclude<ExtArgs> | null
|
|
107762
|
+
/**
|
|
107763
|
+
* Filter, which SequenceOutboundReplyEmail to fetch.
|
|
107764
|
+
*/
|
|
107765
|
+
where?: SequenceOutboundReplyEmailWhereInput
|
|
107766
|
+
/**
|
|
107767
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
107768
|
+
*
|
|
107769
|
+
* Determine the order of SequenceOutboundReplyEmails to fetch.
|
|
107770
|
+
*/
|
|
107771
|
+
orderBy?: SequenceOutboundReplyEmailOrderByWithRelationInput | SequenceOutboundReplyEmailOrderByWithRelationInput[]
|
|
107772
|
+
/**
|
|
107773
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
107774
|
+
*
|
|
107775
|
+
* Sets the position for searching for SequenceOutboundReplyEmails.
|
|
107776
|
+
*/
|
|
107777
|
+
cursor?: SequenceOutboundReplyEmailWhereUniqueInput
|
|
107778
|
+
/**
|
|
107779
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
107780
|
+
*
|
|
107781
|
+
* Take `±n` SequenceOutboundReplyEmails from the position of the cursor.
|
|
107782
|
+
*/
|
|
107783
|
+
take?: number
|
|
107784
|
+
/**
|
|
107785
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
107786
|
+
*
|
|
107787
|
+
* Skip the first `n` SequenceOutboundReplyEmails.
|
|
107788
|
+
*/
|
|
107789
|
+
skip?: number
|
|
107790
|
+
/**
|
|
107791
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
107792
|
+
*
|
|
107793
|
+
* Filter by unique combinations of SequenceOutboundReplyEmails.
|
|
107794
|
+
*/
|
|
107795
|
+
distinct?: SequenceOutboundReplyEmailScalarFieldEnum | SequenceOutboundReplyEmailScalarFieldEnum[]
|
|
107796
|
+
}
|
|
107797
|
+
|
|
107798
|
+
/**
|
|
107799
|
+
* SequenceOutboundReplyEmail findFirstOrThrow
|
|
107800
|
+
*/
|
|
107801
|
+
export type SequenceOutboundReplyEmailFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107802
|
+
/**
|
|
107803
|
+
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
107804
|
+
*/
|
|
107805
|
+
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
107806
|
+
/**
|
|
107807
|
+
* Choose, which related nodes to fetch as well
|
|
107808
|
+
*/
|
|
107809
|
+
include?: SequenceOutboundReplyEmailInclude<ExtArgs> | null
|
|
107810
|
+
/**
|
|
107811
|
+
* Filter, which SequenceOutboundReplyEmail to fetch.
|
|
107812
|
+
*/
|
|
107813
|
+
where?: SequenceOutboundReplyEmailWhereInput
|
|
107814
|
+
/**
|
|
107815
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
107816
|
+
*
|
|
107817
|
+
* Determine the order of SequenceOutboundReplyEmails to fetch.
|
|
107818
|
+
*/
|
|
107819
|
+
orderBy?: SequenceOutboundReplyEmailOrderByWithRelationInput | SequenceOutboundReplyEmailOrderByWithRelationInput[]
|
|
107820
|
+
/**
|
|
107821
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
107822
|
+
*
|
|
107823
|
+
* Sets the position for searching for SequenceOutboundReplyEmails.
|
|
107824
|
+
*/
|
|
107825
|
+
cursor?: SequenceOutboundReplyEmailWhereUniqueInput
|
|
107826
|
+
/**
|
|
107827
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
107828
|
+
*
|
|
107829
|
+
* Take `±n` SequenceOutboundReplyEmails from the position of the cursor.
|
|
107830
|
+
*/
|
|
107831
|
+
take?: number
|
|
107832
|
+
/**
|
|
107833
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
107834
|
+
*
|
|
107835
|
+
* Skip the first `n` SequenceOutboundReplyEmails.
|
|
107836
|
+
*/
|
|
107837
|
+
skip?: number
|
|
107838
|
+
/**
|
|
107839
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
107840
|
+
*
|
|
107841
|
+
* Filter by unique combinations of SequenceOutboundReplyEmails.
|
|
107842
|
+
*/
|
|
107843
|
+
distinct?: SequenceOutboundReplyEmailScalarFieldEnum | SequenceOutboundReplyEmailScalarFieldEnum[]
|
|
107844
|
+
}
|
|
107845
|
+
|
|
107846
|
+
/**
|
|
107847
|
+
* SequenceOutboundReplyEmail findMany
|
|
107848
|
+
*/
|
|
107849
|
+
export type SequenceOutboundReplyEmailFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107850
|
+
/**
|
|
107851
|
+
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
107852
|
+
*/
|
|
107853
|
+
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
107854
|
+
/**
|
|
107855
|
+
* Choose, which related nodes to fetch as well
|
|
107856
|
+
*/
|
|
107857
|
+
include?: SequenceOutboundReplyEmailInclude<ExtArgs> | null
|
|
107858
|
+
/**
|
|
107859
|
+
* Filter, which SequenceOutboundReplyEmails to fetch.
|
|
107860
|
+
*/
|
|
107861
|
+
where?: SequenceOutboundReplyEmailWhereInput
|
|
107862
|
+
/**
|
|
107863
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
107864
|
+
*
|
|
107865
|
+
* Determine the order of SequenceOutboundReplyEmails to fetch.
|
|
107866
|
+
*/
|
|
107867
|
+
orderBy?: SequenceOutboundReplyEmailOrderByWithRelationInput | SequenceOutboundReplyEmailOrderByWithRelationInput[]
|
|
107868
|
+
/**
|
|
107869
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
107870
|
+
*
|
|
107871
|
+
* Sets the position for listing SequenceOutboundReplyEmails.
|
|
107872
|
+
*/
|
|
107873
|
+
cursor?: SequenceOutboundReplyEmailWhereUniqueInput
|
|
107874
|
+
/**
|
|
107875
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
107876
|
+
*
|
|
107877
|
+
* Take `±n` SequenceOutboundReplyEmails from the position of the cursor.
|
|
107878
|
+
*/
|
|
107879
|
+
take?: number
|
|
107880
|
+
/**
|
|
107881
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
107882
|
+
*
|
|
107883
|
+
* Skip the first `n` SequenceOutboundReplyEmails.
|
|
107884
|
+
*/
|
|
107885
|
+
skip?: number
|
|
107886
|
+
distinct?: SequenceOutboundReplyEmailScalarFieldEnum | SequenceOutboundReplyEmailScalarFieldEnum[]
|
|
107887
|
+
}
|
|
107888
|
+
|
|
107889
|
+
/**
|
|
107890
|
+
* SequenceOutboundReplyEmail create
|
|
107891
|
+
*/
|
|
107892
|
+
export type SequenceOutboundReplyEmailCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107893
|
+
/**
|
|
107894
|
+
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
107895
|
+
*/
|
|
107896
|
+
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
107897
|
+
/**
|
|
107898
|
+
* Choose, which related nodes to fetch as well
|
|
107899
|
+
*/
|
|
107900
|
+
include?: SequenceOutboundReplyEmailInclude<ExtArgs> | null
|
|
107901
|
+
/**
|
|
107902
|
+
* The data needed to create a SequenceOutboundReplyEmail.
|
|
107903
|
+
*/
|
|
107904
|
+
data: XOR<SequenceOutboundReplyEmailCreateInput, SequenceOutboundReplyEmailUncheckedCreateInput>
|
|
107905
|
+
}
|
|
107906
|
+
|
|
107907
|
+
/**
|
|
107908
|
+
* SequenceOutboundReplyEmail createMany
|
|
107909
|
+
*/
|
|
107910
|
+
export type SequenceOutboundReplyEmailCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107911
|
+
/**
|
|
107912
|
+
* The data used to create many SequenceOutboundReplyEmails.
|
|
107913
|
+
*/
|
|
107914
|
+
data: SequenceOutboundReplyEmailCreateManyInput | SequenceOutboundReplyEmailCreateManyInput[]
|
|
107915
|
+
skipDuplicates?: boolean
|
|
107916
|
+
}
|
|
107917
|
+
|
|
107918
|
+
/**
|
|
107919
|
+
* SequenceOutboundReplyEmail createManyAndReturn
|
|
107920
|
+
*/
|
|
107921
|
+
export type SequenceOutboundReplyEmailCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107922
|
+
/**
|
|
107923
|
+
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
107924
|
+
*/
|
|
107925
|
+
select?: SequenceOutboundReplyEmailSelectCreateManyAndReturn<ExtArgs> | null
|
|
107926
|
+
/**
|
|
107927
|
+
* The data used to create many SequenceOutboundReplyEmails.
|
|
107928
|
+
*/
|
|
107929
|
+
data: SequenceOutboundReplyEmailCreateManyInput | SequenceOutboundReplyEmailCreateManyInput[]
|
|
107930
|
+
skipDuplicates?: boolean
|
|
107931
|
+
/**
|
|
107932
|
+
* Choose, which related nodes to fetch as well
|
|
107933
|
+
*/
|
|
107934
|
+
include?: SequenceOutboundReplyEmailIncludeCreateManyAndReturn<ExtArgs> | null
|
|
107935
|
+
}
|
|
107936
|
+
|
|
107937
|
+
/**
|
|
107938
|
+
* SequenceOutboundReplyEmail update
|
|
107939
|
+
*/
|
|
107940
|
+
export type SequenceOutboundReplyEmailUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107941
|
+
/**
|
|
107942
|
+
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
107943
|
+
*/
|
|
107944
|
+
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
107945
|
+
/**
|
|
107946
|
+
* Choose, which related nodes to fetch as well
|
|
107947
|
+
*/
|
|
107948
|
+
include?: SequenceOutboundReplyEmailInclude<ExtArgs> | null
|
|
107949
|
+
/**
|
|
107950
|
+
* The data needed to update a SequenceOutboundReplyEmail.
|
|
107951
|
+
*/
|
|
107952
|
+
data: XOR<SequenceOutboundReplyEmailUpdateInput, SequenceOutboundReplyEmailUncheckedUpdateInput>
|
|
107953
|
+
/**
|
|
107954
|
+
* Choose, which SequenceOutboundReplyEmail to update.
|
|
107955
|
+
*/
|
|
107956
|
+
where: SequenceOutboundReplyEmailWhereUniqueInput
|
|
107957
|
+
}
|
|
107958
|
+
|
|
107959
|
+
/**
|
|
107960
|
+
* SequenceOutboundReplyEmail updateMany
|
|
107961
|
+
*/
|
|
107962
|
+
export type SequenceOutboundReplyEmailUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107963
|
+
/**
|
|
107964
|
+
* The data used to update SequenceOutboundReplyEmails.
|
|
107965
|
+
*/
|
|
107966
|
+
data: XOR<SequenceOutboundReplyEmailUpdateManyMutationInput, SequenceOutboundReplyEmailUncheckedUpdateManyInput>
|
|
107967
|
+
/**
|
|
107968
|
+
* Filter which SequenceOutboundReplyEmails to update
|
|
107969
|
+
*/
|
|
107970
|
+
where?: SequenceOutboundReplyEmailWhereInput
|
|
107971
|
+
}
|
|
107972
|
+
|
|
107973
|
+
/**
|
|
107974
|
+
* SequenceOutboundReplyEmail upsert
|
|
107975
|
+
*/
|
|
107976
|
+
export type SequenceOutboundReplyEmailUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107977
|
+
/**
|
|
107978
|
+
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
107979
|
+
*/
|
|
107980
|
+
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
107981
|
+
/**
|
|
107982
|
+
* Choose, which related nodes to fetch as well
|
|
107983
|
+
*/
|
|
107984
|
+
include?: SequenceOutboundReplyEmailInclude<ExtArgs> | null
|
|
107985
|
+
/**
|
|
107986
|
+
* The filter to search for the SequenceOutboundReplyEmail to update in case it exists.
|
|
107987
|
+
*/
|
|
107988
|
+
where: SequenceOutboundReplyEmailWhereUniqueInput
|
|
107989
|
+
/**
|
|
107990
|
+
* In case the SequenceOutboundReplyEmail found by the `where` argument doesn't exist, create a new SequenceOutboundReplyEmail with this data.
|
|
107991
|
+
*/
|
|
107992
|
+
create: XOR<SequenceOutboundReplyEmailCreateInput, SequenceOutboundReplyEmailUncheckedCreateInput>
|
|
107993
|
+
/**
|
|
107994
|
+
* In case the SequenceOutboundReplyEmail was found with the provided `where` argument, update it with this data.
|
|
107995
|
+
*/
|
|
107996
|
+
update: XOR<SequenceOutboundReplyEmailUpdateInput, SequenceOutboundReplyEmailUncheckedUpdateInput>
|
|
107997
|
+
}
|
|
107998
|
+
|
|
107999
|
+
/**
|
|
108000
|
+
* SequenceOutboundReplyEmail delete
|
|
108001
|
+
*/
|
|
108002
|
+
export type SequenceOutboundReplyEmailDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
108003
|
+
/**
|
|
108004
|
+
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
108005
|
+
*/
|
|
108006
|
+
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
108007
|
+
/**
|
|
108008
|
+
* Choose, which related nodes to fetch as well
|
|
108009
|
+
*/
|
|
108010
|
+
include?: SequenceOutboundReplyEmailInclude<ExtArgs> | null
|
|
108011
|
+
/**
|
|
108012
|
+
* Filter which SequenceOutboundReplyEmail to delete.
|
|
108013
|
+
*/
|
|
108014
|
+
where: SequenceOutboundReplyEmailWhereUniqueInput
|
|
108015
|
+
}
|
|
108016
|
+
|
|
108017
|
+
/**
|
|
108018
|
+
* SequenceOutboundReplyEmail deleteMany
|
|
108019
|
+
*/
|
|
108020
|
+
export type SequenceOutboundReplyEmailDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
108021
|
+
/**
|
|
108022
|
+
* Filter which SequenceOutboundReplyEmails to delete
|
|
108023
|
+
*/
|
|
108024
|
+
where?: SequenceOutboundReplyEmailWhereInput
|
|
108025
|
+
}
|
|
108026
|
+
|
|
108027
|
+
/**
|
|
108028
|
+
* SequenceOutboundReplyEmail.creatorListItem
|
|
108029
|
+
*/
|
|
108030
|
+
export type SequenceOutboundReplyEmail$creatorListItemArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
108031
|
+
/**
|
|
108032
|
+
* Select specific fields to fetch from the CreatorListItem
|
|
108033
|
+
*/
|
|
108034
|
+
select?: CreatorListItemSelect<ExtArgs> | null
|
|
108035
|
+
/**
|
|
108036
|
+
* Choose, which related nodes to fetch as well
|
|
108037
|
+
*/
|
|
108038
|
+
include?: CreatorListItemInclude<ExtArgs> | null
|
|
108039
|
+
where?: CreatorListItemWhereInput
|
|
108040
|
+
}
|
|
108041
|
+
|
|
108042
|
+
/**
|
|
108043
|
+
* SequenceOutboundReplyEmail without action
|
|
108044
|
+
*/
|
|
108045
|
+
export type SequenceOutboundReplyEmailDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
108046
|
+
/**
|
|
108047
|
+
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
108048
|
+
*/
|
|
108049
|
+
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
108050
|
+
/**
|
|
108051
|
+
* Choose, which related nodes to fetch as well
|
|
108052
|
+
*/
|
|
108053
|
+
include?: SequenceOutboundReplyEmailInclude<ExtArgs> | null
|
|
108054
|
+
}
|
|
108055
|
+
|
|
108056
|
+
|
|
108057
|
+
/**
|
|
108058
|
+
* Model LLMPrompt
|
|
108059
|
+
*/
|
|
108060
|
+
|
|
108061
|
+
export type AggregateLLMPrompt = {
|
|
108062
|
+
_count: LLMPromptCountAggregateOutputType | null
|
|
108063
|
+
_avg: LLMPromptAvgAggregateOutputType | null
|
|
108064
|
+
_sum: LLMPromptSumAggregateOutputType | null
|
|
108065
|
+
_min: LLMPromptMinAggregateOutputType | null
|
|
108066
|
+
_max: LLMPromptMaxAggregateOutputType | null
|
|
108067
|
+
}
|
|
108068
|
+
|
|
108069
|
+
export type LLMPromptAvgAggregateOutputType = {
|
|
108070
|
+
version: number | null
|
|
108071
|
+
editorUserId: number | null
|
|
108072
|
+
}
|
|
108073
|
+
|
|
108074
|
+
export type LLMPromptSumAggregateOutputType = {
|
|
108075
|
+
version: number | null
|
|
108076
|
+
editorUserId: number | null
|
|
108077
|
+
}
|
|
108078
|
+
|
|
108079
|
+
export type LLMPromptMinAggregateOutputType = {
|
|
108080
|
+
id: string | null
|
|
108081
|
+
collectionName: string | null
|
|
108082
|
+
version: number | null
|
|
108083
|
+
published: boolean | null
|
|
108084
|
+
editorUserId: number | null
|
|
108085
|
+
createdAt: Date | null
|
|
108086
|
+
updatedAt: Date | null
|
|
108087
|
+
}
|
|
108088
|
+
|
|
108089
|
+
export type LLMPromptMaxAggregateOutputType = {
|
|
108090
|
+
id: string | null
|
|
108091
|
+
collectionName: string | null
|
|
108092
|
+
version: number | null
|
|
108093
|
+
published: boolean | null
|
|
108094
|
+
editorUserId: number | null
|
|
108095
|
+
createdAt: Date | null
|
|
108096
|
+
updatedAt: Date | null
|
|
108097
|
+
}
|
|
108098
|
+
|
|
108099
|
+
export type LLMPromptCountAggregateOutputType = {
|
|
108100
|
+
id: number
|
|
108101
|
+
collectionName: number
|
|
108102
|
+
version: number
|
|
108103
|
+
steps: number
|
|
108104
|
+
published: number
|
|
108105
|
+
extraData: number
|
|
108106
|
+
editorUserId: number
|
|
108107
|
+
createdAt: number
|
|
108108
|
+
updatedAt: number
|
|
108109
|
+
_all: number
|
|
108110
|
+
}
|
|
108111
|
+
|
|
108112
|
+
|
|
108113
|
+
export type LLMPromptAvgAggregateInputType = {
|
|
108114
|
+
version?: true
|
|
108115
|
+
editorUserId?: true
|
|
108116
|
+
}
|
|
108117
|
+
|
|
108118
|
+
export type LLMPromptSumAggregateInputType = {
|
|
108119
|
+
version?: true
|
|
108120
|
+
editorUserId?: true
|
|
108121
|
+
}
|
|
108122
|
+
|
|
108123
|
+
export type LLMPromptMinAggregateInputType = {
|
|
108124
|
+
id?: true
|
|
108125
|
+
collectionName?: true
|
|
108126
|
+
version?: true
|
|
108127
|
+
published?: true
|
|
108128
|
+
editorUserId?: true
|
|
108129
|
+
createdAt?: true
|
|
108130
|
+
updatedAt?: true
|
|
108131
|
+
}
|
|
108132
|
+
|
|
108133
|
+
export type LLMPromptMaxAggregateInputType = {
|
|
108134
|
+
id?: true
|
|
108135
|
+
collectionName?: true
|
|
108136
|
+
version?: true
|
|
108137
|
+
published?: true
|
|
108138
|
+
editorUserId?: true
|
|
108139
|
+
createdAt?: true
|
|
108140
|
+
updatedAt?: true
|
|
108141
|
+
}
|
|
108142
|
+
|
|
108143
|
+
export type LLMPromptCountAggregateInputType = {
|
|
108144
|
+
id?: true
|
|
108145
|
+
collectionName?: true
|
|
108146
|
+
version?: true
|
|
108147
|
+
steps?: true
|
|
108148
|
+
published?: true
|
|
108149
|
+
extraData?: true
|
|
108150
|
+
editorUserId?: true
|
|
108151
|
+
createdAt?: true
|
|
108152
|
+
updatedAt?: true
|
|
108153
|
+
_all?: true
|
|
108154
|
+
}
|
|
108155
|
+
|
|
108156
|
+
export type LLMPromptAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
108157
|
+
/**
|
|
108158
|
+
* Filter which LLMPrompt to aggregate.
|
|
108159
|
+
*/
|
|
108160
|
+
where?: LLMPromptWhereInput
|
|
108161
|
+
/**
|
|
108162
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
108163
|
+
*
|
|
108164
|
+
* Determine the order of LLMPrompts to fetch.
|
|
108165
|
+
*/
|
|
108166
|
+
orderBy?: LLMPromptOrderByWithRelationInput | LLMPromptOrderByWithRelationInput[]
|
|
108167
|
+
/**
|
|
108168
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
108169
|
+
*
|
|
108170
|
+
* Sets the start position
|
|
108171
|
+
*/
|
|
108172
|
+
cursor?: LLMPromptWhereUniqueInput
|
|
108173
|
+
/**
|
|
108174
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
108175
|
+
*
|
|
108176
|
+
* Take `±n` LLMPrompts from the position of the cursor.
|
|
108177
|
+
*/
|
|
108178
|
+
take?: number
|
|
108179
|
+
/**
|
|
108180
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
108181
|
+
*
|
|
108182
|
+
* Skip the first `n` LLMPrompts.
|
|
108183
|
+
*/
|
|
108184
|
+
skip?: number
|
|
108185
|
+
/**
|
|
108186
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
108187
|
+
*
|
|
108188
|
+
* Count returned LLMPrompts
|
|
108189
|
+
**/
|
|
108190
|
+
_count?: true | LLMPromptCountAggregateInputType
|
|
108191
|
+
/**
|
|
108192
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
108193
|
+
*
|
|
108194
|
+
* Select which fields to average
|
|
108195
|
+
**/
|
|
108196
|
+
_avg?: LLMPromptAvgAggregateInputType
|
|
108197
|
+
/**
|
|
108198
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
108199
|
+
*
|
|
108200
|
+
* Select which fields to sum
|
|
108201
|
+
**/
|
|
108202
|
+
_sum?: LLMPromptSumAggregateInputType
|
|
108203
|
+
/**
|
|
108204
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
108205
|
+
*
|
|
108206
|
+
* Select which fields to find the minimum value
|
|
108207
|
+
**/
|
|
108208
|
+
_min?: LLMPromptMinAggregateInputType
|
|
108209
|
+
/**
|
|
108210
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
108211
|
+
*
|
|
108212
|
+
* Select which fields to find the maximum value
|
|
108213
|
+
**/
|
|
108214
|
+
_max?: LLMPromptMaxAggregateInputType
|
|
108215
|
+
}
|
|
108216
|
+
|
|
108217
|
+
export type GetLLMPromptAggregateType<T extends LLMPromptAggregateArgs> = {
|
|
108218
|
+
[P in keyof T & keyof AggregateLLMPrompt]: P extends '_count' | 'count'
|
|
108219
|
+
? T[P] extends true
|
|
108220
|
+
? number
|
|
108221
|
+
: GetScalarType<T[P], AggregateLLMPrompt[P]>
|
|
108222
|
+
: GetScalarType<T[P], AggregateLLMPrompt[P]>
|
|
108223
|
+
}
|
|
108224
|
+
|
|
108225
|
+
|
|
108226
|
+
|
|
108227
|
+
|
|
108228
|
+
export type LLMPromptGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
108229
|
+
where?: LLMPromptWhereInput
|
|
108230
|
+
orderBy?: LLMPromptOrderByWithAggregationInput | LLMPromptOrderByWithAggregationInput[]
|
|
108231
|
+
by: LLMPromptScalarFieldEnum[] | LLMPromptScalarFieldEnum
|
|
108232
|
+
having?: LLMPromptScalarWhereWithAggregatesInput
|
|
108233
|
+
take?: number
|
|
108234
|
+
skip?: number
|
|
108235
|
+
_count?: LLMPromptCountAggregateInputType | true
|
|
108236
|
+
_avg?: LLMPromptAvgAggregateInputType
|
|
108237
|
+
_sum?: LLMPromptSumAggregateInputType
|
|
108238
|
+
_min?: LLMPromptMinAggregateInputType
|
|
108239
|
+
_max?: LLMPromptMaxAggregateInputType
|
|
108240
|
+
}
|
|
108241
|
+
|
|
108242
|
+
export type LLMPromptGroupByOutputType = {
|
|
108243
|
+
id: string
|
|
108244
|
+
collectionName: string
|
|
108245
|
+
version: number
|
|
108246
|
+
steps: JsonValue
|
|
108247
|
+
published: boolean
|
|
108248
|
+
extraData: JsonValue
|
|
108249
|
+
editorUserId: number | null
|
|
108250
|
+
createdAt: Date
|
|
108251
|
+
updatedAt: Date
|
|
108252
|
+
_count: LLMPromptCountAggregateOutputType | null
|
|
108253
|
+
_avg: LLMPromptAvgAggregateOutputType | null
|
|
108254
|
+
_sum: LLMPromptSumAggregateOutputType | null
|
|
108255
|
+
_min: LLMPromptMinAggregateOutputType | null
|
|
108256
|
+
_max: LLMPromptMaxAggregateOutputType | null
|
|
108257
|
+
}
|
|
108258
|
+
|
|
108259
|
+
type GetLLMPromptGroupByPayload<T extends LLMPromptGroupByArgs> = Prisma.PrismaPromise<
|
|
108260
|
+
Array<
|
|
108261
|
+
PickEnumerable<LLMPromptGroupByOutputType, T['by']> &
|
|
108262
|
+
{
|
|
108263
|
+
[P in ((keyof T) & (keyof LLMPromptGroupByOutputType))]: P extends '_count'
|
|
108264
|
+
? T[P] extends boolean
|
|
108265
|
+
? number
|
|
108266
|
+
: GetScalarType<T[P], LLMPromptGroupByOutputType[P]>
|
|
108267
|
+
: GetScalarType<T[P], LLMPromptGroupByOutputType[P]>
|
|
108268
|
+
}
|
|
108269
|
+
>
|
|
108270
|
+
>
|
|
108271
|
+
|
|
108272
|
+
|
|
108273
|
+
export type LLMPromptSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
108274
|
+
id?: boolean
|
|
108275
|
+
collectionName?: boolean
|
|
108276
|
+
version?: boolean
|
|
108277
|
+
steps?: boolean
|
|
108278
|
+
published?: boolean
|
|
108279
|
+
extraData?: boolean
|
|
108280
|
+
editorUserId?: boolean
|
|
108281
|
+
createdAt?: boolean
|
|
108282
|
+
updatedAt?: boolean
|
|
108283
|
+
}, ExtArgs["result"]["lLMPrompt"]>
|
|
108284
|
+
|
|
108285
|
+
export type LLMPromptSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
108286
|
+
id?: boolean
|
|
108287
|
+
collectionName?: boolean
|
|
108288
|
+
version?: boolean
|
|
108289
|
+
steps?: boolean
|
|
108290
|
+
published?: boolean
|
|
108291
|
+
extraData?: boolean
|
|
108292
|
+
editorUserId?: boolean
|
|
108293
|
+
createdAt?: boolean
|
|
108294
|
+
updatedAt?: boolean
|
|
108295
|
+
}, ExtArgs["result"]["lLMPrompt"]>
|
|
108296
|
+
|
|
108297
|
+
export type LLMPromptSelectScalar = {
|
|
108298
|
+
id?: boolean
|
|
108299
|
+
collectionName?: boolean
|
|
108300
|
+
version?: boolean
|
|
108301
|
+
steps?: boolean
|
|
108302
|
+
published?: boolean
|
|
108303
|
+
extraData?: boolean
|
|
108304
|
+
editorUserId?: boolean
|
|
108305
|
+
createdAt?: boolean
|
|
108306
|
+
updatedAt?: boolean
|
|
108307
|
+
}
|
|
108308
|
+
|
|
108309
|
+
|
|
108310
|
+
export type $LLMPromptPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
108311
|
+
name: "LLMPrompt"
|
|
108312
|
+
objects: {}
|
|
108313
|
+
scalars: $Extensions.GetPayloadResult<{
|
|
108314
|
+
id: string
|
|
108315
|
+
collectionName: string
|
|
108316
|
+
version: number
|
|
108317
|
+
steps: Prisma.JsonValue
|
|
108318
|
+
published: boolean
|
|
108319
|
+
extraData: Prisma.JsonValue
|
|
108320
|
+
editorUserId: number | null
|
|
108321
|
+
createdAt: Date
|
|
108322
|
+
updatedAt: Date
|
|
108323
|
+
}, ExtArgs["result"]["lLMPrompt"]>
|
|
108324
|
+
composites: {}
|
|
108325
|
+
}
|
|
108326
|
+
|
|
108327
|
+
type LLMPromptGetPayload<S extends boolean | null | undefined | LLMPromptDefaultArgs> = $Result.GetResult<Prisma.$LLMPromptPayload, S>
|
|
108328
|
+
|
|
108329
|
+
type LLMPromptCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
108330
|
+
Omit<LLMPromptFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
108331
|
+
select?: LLMPromptCountAggregateInputType | true
|
|
108332
|
+
}
|
|
108333
|
+
|
|
108334
|
+
export interface LLMPromptDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
108335
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['LLMPrompt'], meta: { name: 'LLMPrompt' } }
|
|
108336
|
+
/**
|
|
108337
|
+
* Find zero or one LLMPrompt that matches the filter.
|
|
108338
|
+
* @param {LLMPromptFindUniqueArgs} args - Arguments to find a LLMPrompt
|
|
108339
|
+
* @example
|
|
108340
|
+
* // Get one LLMPrompt
|
|
108341
|
+
* const lLMPrompt = await prisma.lLMPrompt.findUnique({
|
|
108342
|
+
* where: {
|
|
108343
|
+
* // ... provide filter here
|
|
108344
|
+
* }
|
|
108345
|
+
* })
|
|
108346
|
+
*/
|
|
108347
|
+
findUnique<T extends LLMPromptFindUniqueArgs>(args: SelectSubset<T, LLMPromptFindUniqueArgs<ExtArgs>>): Prisma__LLMPromptClient<$Result.GetResult<Prisma.$LLMPromptPayload<ExtArgs>, T, "findUnique"> | null, null, ExtArgs>
|
|
108348
|
+
|
|
108349
|
+
/**
|
|
108350
|
+
* Find one LLMPrompt that matches the filter or throw an error with `error.code='P2025'`
|
|
108351
|
+
* if no matches were found.
|
|
108352
|
+
* @param {LLMPromptFindUniqueOrThrowArgs} args - Arguments to find a LLMPrompt
|
|
108353
|
+
* @example
|
|
108354
|
+
* // Get one LLMPrompt
|
|
108355
|
+
* const lLMPrompt = await prisma.lLMPrompt.findUniqueOrThrow({
|
|
108356
|
+
* where: {
|
|
108357
|
+
* // ... provide filter here
|
|
108358
|
+
* }
|
|
108359
|
+
* })
|
|
108360
|
+
*/
|
|
108361
|
+
findUniqueOrThrow<T extends LLMPromptFindUniqueOrThrowArgs>(args: SelectSubset<T, LLMPromptFindUniqueOrThrowArgs<ExtArgs>>): Prisma__LLMPromptClient<$Result.GetResult<Prisma.$LLMPromptPayload<ExtArgs>, T, "findUniqueOrThrow">, never, ExtArgs>
|
|
108362
|
+
|
|
108363
|
+
/**
|
|
108364
|
+
* Find the first LLMPrompt that matches the filter.
|
|
108365
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
108366
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
108367
|
+
* @param {LLMPromptFindFirstArgs} args - Arguments to find a LLMPrompt
|
|
108368
|
+
* @example
|
|
108369
|
+
* // Get one LLMPrompt
|
|
108370
|
+
* const lLMPrompt = await prisma.lLMPrompt.findFirst({
|
|
108371
|
+
* where: {
|
|
108372
|
+
* // ... provide filter here
|
|
108373
|
+
* }
|
|
108374
|
+
* })
|
|
108375
|
+
*/
|
|
108376
|
+
findFirst<T extends LLMPromptFindFirstArgs>(args?: SelectSubset<T, LLMPromptFindFirstArgs<ExtArgs>>): Prisma__LLMPromptClient<$Result.GetResult<Prisma.$LLMPromptPayload<ExtArgs>, T, "findFirst"> | null, null, ExtArgs>
|
|
108377
|
+
|
|
108378
|
+
/**
|
|
108379
|
+
* Find the first LLMPrompt that matches the filter or
|
|
108380
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
108381
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
108382
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
108383
|
+
* @param {LLMPromptFindFirstOrThrowArgs} args - Arguments to find a LLMPrompt
|
|
108384
|
+
* @example
|
|
108385
|
+
* // Get one LLMPrompt
|
|
108386
|
+
* const lLMPrompt = await prisma.lLMPrompt.findFirstOrThrow({
|
|
108387
|
+
* where: {
|
|
108388
|
+
* // ... provide filter here
|
|
108389
|
+
* }
|
|
108390
|
+
* })
|
|
108391
|
+
*/
|
|
108392
|
+
findFirstOrThrow<T extends LLMPromptFindFirstOrThrowArgs>(args?: SelectSubset<T, LLMPromptFindFirstOrThrowArgs<ExtArgs>>): Prisma__LLMPromptClient<$Result.GetResult<Prisma.$LLMPromptPayload<ExtArgs>, T, "findFirstOrThrow">, never, ExtArgs>
|
|
108393
|
+
|
|
108394
|
+
/**
|
|
108395
|
+
* Find zero or more LLMPrompts that matches the filter.
|
|
108396
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
108397
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
108398
|
+
* @param {LLMPromptFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
108399
|
+
* @example
|
|
108400
|
+
* // Get all LLMPrompts
|
|
108401
|
+
* const lLMPrompts = await prisma.lLMPrompt.findMany()
|
|
108402
|
+
*
|
|
108403
|
+
* // Get first 10 LLMPrompts
|
|
108404
|
+
* const lLMPrompts = await prisma.lLMPrompt.findMany({ take: 10 })
|
|
108405
|
+
*
|
|
108406
|
+
* // Only select the `id`
|
|
108407
|
+
* const lLMPromptWithIdOnly = await prisma.lLMPrompt.findMany({ select: { id: true } })
|
|
108408
|
+
*
|
|
108409
|
+
*/
|
|
108410
|
+
findMany<T extends LLMPromptFindManyArgs>(args?: SelectSubset<T, LLMPromptFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$LLMPromptPayload<ExtArgs>, T, "findMany">>
|
|
108411
|
+
|
|
108412
|
+
/**
|
|
108413
|
+
* Create a LLMPrompt.
|
|
108414
|
+
* @param {LLMPromptCreateArgs} args - Arguments to create a LLMPrompt.
|
|
108415
|
+
* @example
|
|
108416
|
+
* // Create one LLMPrompt
|
|
108417
|
+
* const LLMPrompt = await prisma.lLMPrompt.create({
|
|
108418
|
+
* data: {
|
|
108419
|
+
* // ... data to create a LLMPrompt
|
|
108420
|
+
* }
|
|
108421
|
+
* })
|
|
108422
|
+
*
|
|
108423
|
+
*/
|
|
108424
|
+
create<T extends LLMPromptCreateArgs>(args: SelectSubset<T, LLMPromptCreateArgs<ExtArgs>>): Prisma__LLMPromptClient<$Result.GetResult<Prisma.$LLMPromptPayload<ExtArgs>, T, "create">, never, ExtArgs>
|
|
108425
|
+
|
|
108426
|
+
/**
|
|
108427
|
+
* Create many LLMPrompts.
|
|
108428
|
+
* @param {LLMPromptCreateManyArgs} args - Arguments to create many LLMPrompts.
|
|
108429
|
+
* @example
|
|
108430
|
+
* // Create many LLMPrompts
|
|
108431
|
+
* const lLMPrompt = await prisma.lLMPrompt.createMany({
|
|
108432
|
+
* data: [
|
|
108433
|
+
* // ... provide data here
|
|
108434
|
+
* ]
|
|
108435
|
+
* })
|
|
108436
|
+
*
|
|
108437
|
+
*/
|
|
108438
|
+
createMany<T extends LLMPromptCreateManyArgs>(args?: SelectSubset<T, LLMPromptCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
108439
|
+
|
|
108440
|
+
/**
|
|
108441
|
+
* Create many LLMPrompts and returns the data saved in the database.
|
|
108442
|
+
* @param {LLMPromptCreateManyAndReturnArgs} args - Arguments to create many LLMPrompts.
|
|
108443
|
+
* @example
|
|
108444
|
+
* // Create many LLMPrompts
|
|
108445
|
+
* const lLMPrompt = await prisma.lLMPrompt.createManyAndReturn({
|
|
108446
|
+
* data: [
|
|
108447
|
+
* // ... provide data here
|
|
108448
|
+
* ]
|
|
108449
|
+
* })
|
|
108450
|
+
*
|
|
108451
|
+
* // Create many LLMPrompts and only return the `id`
|
|
108452
|
+
* const lLMPromptWithIdOnly = await prisma.lLMPrompt.createManyAndReturn({
|
|
108453
|
+
* select: { id: true },
|
|
108454
|
+
* data: [
|
|
108455
|
+
* // ... provide data here
|
|
108456
|
+
* ]
|
|
108457
|
+
* })
|
|
108458
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
108459
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
108460
|
+
*
|
|
108461
|
+
*/
|
|
108462
|
+
createManyAndReturn<T extends LLMPromptCreateManyAndReturnArgs>(args?: SelectSubset<T, LLMPromptCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$LLMPromptPayload<ExtArgs>, T, "createManyAndReturn">>
|
|
108463
|
+
|
|
108464
|
+
/**
|
|
108465
|
+
* Delete a LLMPrompt.
|
|
108466
|
+
* @param {LLMPromptDeleteArgs} args - Arguments to delete one LLMPrompt.
|
|
108467
|
+
* @example
|
|
108468
|
+
* // Delete one LLMPrompt
|
|
108469
|
+
* const LLMPrompt = await prisma.lLMPrompt.delete({
|
|
108470
|
+
* where: {
|
|
108471
|
+
* // ... filter to delete one LLMPrompt
|
|
108472
|
+
* }
|
|
108473
|
+
* })
|
|
108474
|
+
*
|
|
108475
|
+
*/
|
|
108476
|
+
delete<T extends LLMPromptDeleteArgs>(args: SelectSubset<T, LLMPromptDeleteArgs<ExtArgs>>): Prisma__LLMPromptClient<$Result.GetResult<Prisma.$LLMPromptPayload<ExtArgs>, T, "delete">, never, ExtArgs>
|
|
108477
|
+
|
|
108478
|
+
/**
|
|
108479
|
+
* Update one LLMPrompt.
|
|
108480
|
+
* @param {LLMPromptUpdateArgs} args - Arguments to update one LLMPrompt.
|
|
108481
|
+
* @example
|
|
108482
|
+
* // Update one LLMPrompt
|
|
108483
|
+
* const lLMPrompt = await prisma.lLMPrompt.update({
|
|
108484
|
+
* where: {
|
|
108485
|
+
* // ... provide filter here
|
|
108486
|
+
* },
|
|
108487
|
+
* data: {
|
|
108488
|
+
* // ... provide data here
|
|
108489
|
+
* }
|
|
108490
|
+
* })
|
|
108491
|
+
*
|
|
108492
|
+
*/
|
|
108493
|
+
update<T extends LLMPromptUpdateArgs>(args: SelectSubset<T, LLMPromptUpdateArgs<ExtArgs>>): Prisma__LLMPromptClient<$Result.GetResult<Prisma.$LLMPromptPayload<ExtArgs>, T, "update">, never, ExtArgs>
|
|
108494
|
+
|
|
108495
|
+
/**
|
|
108496
|
+
* Delete zero or more LLMPrompts.
|
|
108497
|
+
* @param {LLMPromptDeleteManyArgs} args - Arguments to filter LLMPrompts to delete.
|
|
108498
|
+
* @example
|
|
108499
|
+
* // Delete a few LLMPrompts
|
|
108500
|
+
* const { count } = await prisma.lLMPrompt.deleteMany({
|
|
108501
|
+
* where: {
|
|
108502
|
+
* // ... provide filter here
|
|
108503
|
+
* }
|
|
108504
|
+
* })
|
|
108505
|
+
*
|
|
108506
|
+
*/
|
|
108507
|
+
deleteMany<T extends LLMPromptDeleteManyArgs>(args?: SelectSubset<T, LLMPromptDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
108508
|
+
|
|
108509
|
+
/**
|
|
108510
|
+
* Update zero or more LLMPrompts.
|
|
108511
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
108512
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
108513
|
+
* @param {LLMPromptUpdateManyArgs} args - Arguments to update one or more rows.
|
|
108514
|
+
* @example
|
|
108515
|
+
* // Update many LLMPrompts
|
|
108516
|
+
* const lLMPrompt = await prisma.lLMPrompt.updateMany({
|
|
108517
|
+
* where: {
|
|
108518
|
+
* // ... provide filter here
|
|
108519
|
+
* },
|
|
108520
|
+
* data: {
|
|
108521
|
+
* // ... provide data here
|
|
108522
|
+
* }
|
|
108523
|
+
* })
|
|
108524
|
+
*
|
|
108525
|
+
*/
|
|
108526
|
+
updateMany<T extends LLMPromptUpdateManyArgs>(args: SelectSubset<T, LLMPromptUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
108527
|
+
|
|
108528
|
+
/**
|
|
108529
|
+
* Create or update one LLMPrompt.
|
|
108530
|
+
* @param {LLMPromptUpsertArgs} args - Arguments to update or create a LLMPrompt.
|
|
108531
|
+
* @example
|
|
108532
|
+
* // Update or create a LLMPrompt
|
|
108533
|
+
* const lLMPrompt = await prisma.lLMPrompt.upsert({
|
|
108534
|
+
* create: {
|
|
108535
|
+
* // ... data to create a LLMPrompt
|
|
108536
|
+
* },
|
|
108537
|
+
* update: {
|
|
108538
|
+
* // ... in case it already exists, update
|
|
108539
|
+
* },
|
|
108540
|
+
* where: {
|
|
108541
|
+
* // ... the filter for the LLMPrompt we want to update
|
|
108542
|
+
* }
|
|
108543
|
+
* })
|
|
108544
|
+
*/
|
|
108545
|
+
upsert<T extends LLMPromptUpsertArgs>(args: SelectSubset<T, LLMPromptUpsertArgs<ExtArgs>>): Prisma__LLMPromptClient<$Result.GetResult<Prisma.$LLMPromptPayload<ExtArgs>, T, "upsert">, never, ExtArgs>
|
|
108546
|
+
|
|
108547
|
+
|
|
108548
|
+
/**
|
|
108549
|
+
* Count the number of LLMPrompts.
|
|
108550
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
108551
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
108552
|
+
* @param {LLMPromptCountArgs} args - Arguments to filter LLMPrompts to count.
|
|
108553
|
+
* @example
|
|
108554
|
+
* // Count the number of LLMPrompts
|
|
108555
|
+
* const count = await prisma.lLMPrompt.count({
|
|
108556
|
+
* where: {
|
|
108557
|
+
* // ... the filter for the LLMPrompts we want to count
|
|
108558
|
+
* }
|
|
108559
|
+
* })
|
|
108560
|
+
**/
|
|
108561
|
+
count<T extends LLMPromptCountArgs>(
|
|
108562
|
+
args?: Subset<T, LLMPromptCountArgs>,
|
|
108563
|
+
): Prisma.PrismaPromise<
|
|
108564
|
+
T extends $Utils.Record<'select', any>
|
|
108565
|
+
? T['select'] extends true
|
|
108566
|
+
? number
|
|
108567
|
+
: GetScalarType<T['select'], LLMPromptCountAggregateOutputType>
|
|
108568
|
+
: number
|
|
108569
|
+
>
|
|
108570
|
+
|
|
108571
|
+
/**
|
|
108572
|
+
* Allows you to perform aggregations operations on a LLMPrompt.
|
|
108573
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
108574
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
108575
|
+
* @param {LLMPromptAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
108576
|
+
* @example
|
|
108577
|
+
* // Ordered by age ascending
|
|
108578
|
+
* // Where email contains prisma.io
|
|
108579
|
+
* // Limited to the 10 users
|
|
108580
|
+
* const aggregations = await prisma.user.aggregate({
|
|
108581
|
+
* _avg: {
|
|
108582
|
+
* age: true,
|
|
108583
|
+
* },
|
|
108584
|
+
* where: {
|
|
108585
|
+
* email: {
|
|
108586
|
+
* contains: "prisma.io",
|
|
108587
|
+
* },
|
|
108588
|
+
* },
|
|
108589
|
+
* orderBy: {
|
|
108590
|
+
* age: "asc",
|
|
108591
|
+
* },
|
|
108592
|
+
* take: 10,
|
|
108593
|
+
* })
|
|
108594
|
+
**/
|
|
108595
|
+
aggregate<T extends LLMPromptAggregateArgs>(args: Subset<T, LLMPromptAggregateArgs>): Prisma.PrismaPromise<GetLLMPromptAggregateType<T>>
|
|
108596
|
+
|
|
108597
|
+
/**
|
|
108598
|
+
* Group by LLMPrompt.
|
|
108599
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
108600
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
108601
|
+
* @param {LLMPromptGroupByArgs} args - Group by arguments.
|
|
108602
|
+
* @example
|
|
108603
|
+
* // Group by city, order by createdAt, get count
|
|
108604
|
+
* const result = await prisma.user.groupBy({
|
|
108605
|
+
* by: ['city', 'createdAt'],
|
|
108606
|
+
* orderBy: {
|
|
108607
|
+
* createdAt: true
|
|
108608
|
+
* },
|
|
108609
|
+
* _count: {
|
|
108610
|
+
* _all: true
|
|
108611
|
+
* },
|
|
108612
|
+
* })
|
|
108613
|
+
*
|
|
108614
|
+
**/
|
|
108615
|
+
groupBy<
|
|
108616
|
+
T extends LLMPromptGroupByArgs,
|
|
108617
|
+
HasSelectOrTake extends Or<
|
|
108618
|
+
Extends<'skip', Keys<T>>,
|
|
108619
|
+
Extends<'take', Keys<T>>
|
|
108620
|
+
>,
|
|
108621
|
+
OrderByArg extends True extends HasSelectOrTake
|
|
108622
|
+
? { orderBy: LLMPromptGroupByArgs['orderBy'] }
|
|
108623
|
+
: { orderBy?: LLMPromptGroupByArgs['orderBy'] },
|
|
108624
|
+
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
108625
|
+
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
108626
|
+
ByValid extends Has<ByFields, OrderFields>,
|
|
108627
|
+
HavingFields extends GetHavingFields<T['having']>,
|
|
108628
|
+
HavingValid extends Has<ByFields, HavingFields>,
|
|
108629
|
+
ByEmpty extends T['by'] extends never[] ? True : False,
|
|
108630
|
+
InputErrors extends ByEmpty extends True
|
|
108631
|
+
? `Error: "by" must not be empty.`
|
|
108632
|
+
: HavingValid extends False
|
|
108633
|
+
? {
|
|
108634
|
+
[P in HavingFields]: P extends ByFields
|
|
108635
|
+
? never
|
|
108636
|
+
: P extends string
|
|
108637
|
+
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
|
108638
|
+
: [
|
|
108639
|
+
Error,
|
|
108640
|
+
'Field ',
|
|
108641
|
+
P,
|
|
108642
|
+
` in "having" needs to be provided in "by"`,
|
|
108643
|
+
]
|
|
108644
|
+
}[HavingFields]
|
|
108645
|
+
: 'take' extends Keys<T>
|
|
108646
|
+
? 'orderBy' extends Keys<T>
|
|
108647
|
+
? ByValid extends True
|
|
108648
|
+
? {}
|
|
108649
|
+
: {
|
|
108650
|
+
[P in OrderFields]: P extends ByFields
|
|
108651
|
+
? never
|
|
108652
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
108653
|
+
}[OrderFields]
|
|
108654
|
+
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
|
108655
|
+
: 'skip' extends Keys<T>
|
|
108656
|
+
? 'orderBy' extends Keys<T>
|
|
108657
|
+
? ByValid extends True
|
|
108658
|
+
? {}
|
|
108659
|
+
: {
|
|
108660
|
+
[P in OrderFields]: P extends ByFields
|
|
108661
|
+
? never
|
|
108662
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
108663
|
+
}[OrderFields]
|
|
108664
|
+
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
|
108665
|
+
: ByValid extends True
|
|
108666
|
+
? {}
|
|
108667
|
+
: {
|
|
108668
|
+
[P in OrderFields]: P extends ByFields
|
|
108669
|
+
? never
|
|
108670
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
108671
|
+
}[OrderFields]
|
|
108672
|
+
>(args: SubsetIntersection<T, LLMPromptGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetLLMPromptGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
108673
|
+
/**
|
|
108674
|
+
* Fields of the LLMPrompt model
|
|
108675
|
+
*/
|
|
108676
|
+
readonly fields: LLMPromptFieldRefs;
|
|
108677
|
+
}
|
|
108678
|
+
|
|
108679
|
+
/**
|
|
108680
|
+
* The delegate class that acts as a "Promise-like" for LLMPrompt.
|
|
108681
|
+
* Why is this prefixed with `Prisma__`?
|
|
108682
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
108683
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
108684
|
+
*/
|
|
108685
|
+
export interface Prisma__LLMPromptClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
108686
|
+
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
108687
|
+
/**
|
|
108688
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
108689
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
108690
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
108691
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
108692
|
+
*/
|
|
108693
|
+
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>
|
|
108694
|
+
/**
|
|
108695
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
108696
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
108697
|
+
* @returns A Promise for the completion of the callback.
|
|
108698
|
+
*/
|
|
108699
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>
|
|
108700
|
+
/**
|
|
108701
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
108702
|
+
* resolved value cannot be modified from the callback.
|
|
108703
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
108704
|
+
* @returns A Promise for the completion of the callback.
|
|
108705
|
+
*/
|
|
108706
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>
|
|
108707
|
+
}
|
|
108708
|
+
|
|
108709
|
+
|
|
108710
|
+
|
|
108711
|
+
|
|
108712
|
+
/**
|
|
108713
|
+
* Fields of the LLMPrompt model
|
|
107606
108714
|
*/
|
|
107607
|
-
interface
|
|
107608
|
-
readonly id: FieldRef<"
|
|
107609
|
-
readonly
|
|
107610
|
-
readonly
|
|
107611
|
-
readonly
|
|
107612
|
-
readonly
|
|
107613
|
-
readonly
|
|
107614
|
-
readonly
|
|
107615
|
-
readonly
|
|
108715
|
+
interface LLMPromptFieldRefs {
|
|
108716
|
+
readonly id: FieldRef<"LLMPrompt", 'String'>
|
|
108717
|
+
readonly collectionName: FieldRef<"LLMPrompt", 'String'>
|
|
108718
|
+
readonly version: FieldRef<"LLMPrompt", 'Int'>
|
|
108719
|
+
readonly steps: FieldRef<"LLMPrompt", 'Json'>
|
|
108720
|
+
readonly published: FieldRef<"LLMPrompt", 'Boolean'>
|
|
108721
|
+
readonly extraData: FieldRef<"LLMPrompt", 'Json'>
|
|
108722
|
+
readonly editorUserId: FieldRef<"LLMPrompt", 'Int'>
|
|
108723
|
+
readonly createdAt: FieldRef<"LLMPrompt", 'DateTime'>
|
|
108724
|
+
readonly updatedAt: FieldRef<"LLMPrompt", 'DateTime'>
|
|
107616
108725
|
}
|
|
107617
108726
|
|
|
107618
108727
|
|
|
107619
108728
|
// Custom InputTypes
|
|
107620
108729
|
/**
|
|
107621
|
-
*
|
|
108730
|
+
* LLMPrompt findUnique
|
|
107622
108731
|
*/
|
|
107623
|
-
export type
|
|
108732
|
+
export type LLMPromptFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107624
108733
|
/**
|
|
107625
|
-
* Select specific fields to fetch from the
|
|
108734
|
+
* Select specific fields to fetch from the LLMPrompt
|
|
107626
108735
|
*/
|
|
107627
|
-
select?:
|
|
108736
|
+
select?: LLMPromptSelect<ExtArgs> | null
|
|
107628
108737
|
/**
|
|
107629
|
-
*
|
|
107630
|
-
*/
|
|
107631
|
-
include?: SequenceOutboundReplyEmailInclude<ExtArgs> | null
|
|
107632
|
-
/**
|
|
107633
|
-
* Filter, which SequenceOutboundReplyEmail to fetch.
|
|
108738
|
+
* Filter, which LLMPrompt to fetch.
|
|
107634
108739
|
*/
|
|
107635
|
-
where:
|
|
108740
|
+
where: LLMPromptWhereUniqueInput
|
|
107636
108741
|
}
|
|
107637
108742
|
|
|
107638
108743
|
/**
|
|
107639
|
-
*
|
|
108744
|
+
* LLMPrompt findUniqueOrThrow
|
|
107640
108745
|
*/
|
|
107641
|
-
export type
|
|
108746
|
+
export type LLMPromptFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107642
108747
|
/**
|
|
107643
|
-
* Select specific fields to fetch from the
|
|
108748
|
+
* Select specific fields to fetch from the LLMPrompt
|
|
107644
108749
|
*/
|
|
107645
|
-
select?:
|
|
107646
|
-
/**
|
|
107647
|
-
* Choose, which related nodes to fetch as well
|
|
107648
|
-
*/
|
|
107649
|
-
include?: SequenceOutboundReplyEmailInclude<ExtArgs> | null
|
|
108750
|
+
select?: LLMPromptSelect<ExtArgs> | null
|
|
107650
108751
|
/**
|
|
107651
|
-
* Filter, which
|
|
108752
|
+
* Filter, which LLMPrompt to fetch.
|
|
107652
108753
|
*/
|
|
107653
|
-
where:
|
|
108754
|
+
where: LLMPromptWhereUniqueInput
|
|
107654
108755
|
}
|
|
107655
108756
|
|
|
107656
108757
|
/**
|
|
107657
|
-
*
|
|
108758
|
+
* LLMPrompt findFirst
|
|
107658
108759
|
*/
|
|
107659
|
-
export type
|
|
108760
|
+
export type LLMPromptFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107660
108761
|
/**
|
|
107661
|
-
* Select specific fields to fetch from the
|
|
107662
|
-
*/
|
|
107663
|
-
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
107664
|
-
/**
|
|
107665
|
-
* Choose, which related nodes to fetch as well
|
|
108762
|
+
* Select specific fields to fetch from the LLMPrompt
|
|
107666
108763
|
*/
|
|
107667
|
-
|
|
108764
|
+
select?: LLMPromptSelect<ExtArgs> | null
|
|
107668
108765
|
/**
|
|
107669
|
-
* Filter, which
|
|
108766
|
+
* Filter, which LLMPrompt to fetch.
|
|
107670
108767
|
*/
|
|
107671
|
-
where?:
|
|
108768
|
+
where?: LLMPromptWhereInput
|
|
107672
108769
|
/**
|
|
107673
108770
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
107674
108771
|
*
|
|
107675
|
-
* Determine the order of
|
|
108772
|
+
* Determine the order of LLMPrompts to fetch.
|
|
107676
108773
|
*/
|
|
107677
|
-
orderBy?:
|
|
108774
|
+
orderBy?: LLMPromptOrderByWithRelationInput | LLMPromptOrderByWithRelationInput[]
|
|
107678
108775
|
/**
|
|
107679
108776
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
107680
108777
|
*
|
|
107681
|
-
* Sets the position for searching for
|
|
108778
|
+
* Sets the position for searching for LLMPrompts.
|
|
107682
108779
|
*/
|
|
107683
|
-
cursor?:
|
|
108780
|
+
cursor?: LLMPromptWhereUniqueInput
|
|
107684
108781
|
/**
|
|
107685
108782
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
107686
108783
|
*
|
|
107687
|
-
* Take `±n`
|
|
108784
|
+
* Take `±n` LLMPrompts from the position of the cursor.
|
|
107688
108785
|
*/
|
|
107689
108786
|
take?: number
|
|
107690
108787
|
/**
|
|
107691
108788
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
107692
108789
|
*
|
|
107693
|
-
* Skip the first `n`
|
|
108790
|
+
* Skip the first `n` LLMPrompts.
|
|
107694
108791
|
*/
|
|
107695
108792
|
skip?: number
|
|
107696
108793
|
/**
|
|
107697
108794
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
107698
108795
|
*
|
|
107699
|
-
* Filter by unique combinations of
|
|
108796
|
+
* Filter by unique combinations of LLMPrompts.
|
|
107700
108797
|
*/
|
|
107701
|
-
distinct?:
|
|
108798
|
+
distinct?: LLMPromptScalarFieldEnum | LLMPromptScalarFieldEnum[]
|
|
107702
108799
|
}
|
|
107703
108800
|
|
|
107704
108801
|
/**
|
|
107705
|
-
*
|
|
108802
|
+
* LLMPrompt findFirstOrThrow
|
|
107706
108803
|
*/
|
|
107707
|
-
export type
|
|
108804
|
+
export type LLMPromptFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107708
108805
|
/**
|
|
107709
|
-
* Select specific fields to fetch from the
|
|
108806
|
+
* Select specific fields to fetch from the LLMPrompt
|
|
107710
108807
|
*/
|
|
107711
|
-
select?:
|
|
108808
|
+
select?: LLMPromptSelect<ExtArgs> | null
|
|
107712
108809
|
/**
|
|
107713
|
-
*
|
|
108810
|
+
* Filter, which LLMPrompt to fetch.
|
|
107714
108811
|
*/
|
|
107715
|
-
|
|
107716
|
-
/**
|
|
107717
|
-
* Filter, which SequenceOutboundReplyEmail to fetch.
|
|
107718
|
-
*/
|
|
107719
|
-
where?: SequenceOutboundReplyEmailWhereInput
|
|
108812
|
+
where?: LLMPromptWhereInput
|
|
107720
108813
|
/**
|
|
107721
108814
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
107722
108815
|
*
|
|
107723
|
-
* Determine the order of
|
|
108816
|
+
* Determine the order of LLMPrompts to fetch.
|
|
107724
108817
|
*/
|
|
107725
|
-
orderBy?:
|
|
108818
|
+
orderBy?: LLMPromptOrderByWithRelationInput | LLMPromptOrderByWithRelationInput[]
|
|
107726
108819
|
/**
|
|
107727
108820
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
107728
108821
|
*
|
|
107729
|
-
* Sets the position for searching for
|
|
108822
|
+
* Sets the position for searching for LLMPrompts.
|
|
107730
108823
|
*/
|
|
107731
|
-
cursor?:
|
|
108824
|
+
cursor?: LLMPromptWhereUniqueInput
|
|
107732
108825
|
/**
|
|
107733
108826
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
107734
108827
|
*
|
|
107735
|
-
* Take `±n`
|
|
108828
|
+
* Take `±n` LLMPrompts from the position of the cursor.
|
|
107736
108829
|
*/
|
|
107737
108830
|
take?: number
|
|
107738
108831
|
/**
|
|
107739
108832
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
107740
108833
|
*
|
|
107741
|
-
* Skip the first `n`
|
|
108834
|
+
* Skip the first `n` LLMPrompts.
|
|
107742
108835
|
*/
|
|
107743
108836
|
skip?: number
|
|
107744
108837
|
/**
|
|
107745
108838
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
107746
108839
|
*
|
|
107747
|
-
* Filter by unique combinations of
|
|
108840
|
+
* Filter by unique combinations of LLMPrompts.
|
|
107748
108841
|
*/
|
|
107749
|
-
distinct?:
|
|
108842
|
+
distinct?: LLMPromptScalarFieldEnum | LLMPromptScalarFieldEnum[]
|
|
107750
108843
|
}
|
|
107751
108844
|
|
|
107752
108845
|
/**
|
|
107753
|
-
*
|
|
108846
|
+
* LLMPrompt findMany
|
|
107754
108847
|
*/
|
|
107755
|
-
export type
|
|
108848
|
+
export type LLMPromptFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107756
108849
|
/**
|
|
107757
|
-
* Select specific fields to fetch from the
|
|
108850
|
+
* Select specific fields to fetch from the LLMPrompt
|
|
107758
108851
|
*/
|
|
107759
|
-
select?:
|
|
107760
|
-
/**
|
|
107761
|
-
* Choose, which related nodes to fetch as well
|
|
107762
|
-
*/
|
|
107763
|
-
include?: SequenceOutboundReplyEmailInclude<ExtArgs> | null
|
|
108852
|
+
select?: LLMPromptSelect<ExtArgs> | null
|
|
107764
108853
|
/**
|
|
107765
|
-
* Filter, which
|
|
108854
|
+
* Filter, which LLMPrompts to fetch.
|
|
107766
108855
|
*/
|
|
107767
|
-
where?:
|
|
108856
|
+
where?: LLMPromptWhereInput
|
|
107768
108857
|
/**
|
|
107769
108858
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
107770
108859
|
*
|
|
107771
|
-
* Determine the order of
|
|
108860
|
+
* Determine the order of LLMPrompts to fetch.
|
|
107772
108861
|
*/
|
|
107773
|
-
orderBy?:
|
|
108862
|
+
orderBy?: LLMPromptOrderByWithRelationInput | LLMPromptOrderByWithRelationInput[]
|
|
107774
108863
|
/**
|
|
107775
108864
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
107776
108865
|
*
|
|
107777
|
-
* Sets the position for listing
|
|
108866
|
+
* Sets the position for listing LLMPrompts.
|
|
107778
108867
|
*/
|
|
107779
|
-
cursor?:
|
|
108868
|
+
cursor?: LLMPromptWhereUniqueInput
|
|
107780
108869
|
/**
|
|
107781
108870
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
107782
108871
|
*
|
|
107783
|
-
* Take `±n`
|
|
108872
|
+
* Take `±n` LLMPrompts from the position of the cursor.
|
|
107784
108873
|
*/
|
|
107785
108874
|
take?: number
|
|
107786
108875
|
/**
|
|
107787
108876
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
107788
108877
|
*
|
|
107789
|
-
* Skip the first `n`
|
|
108878
|
+
* Skip the first `n` LLMPrompts.
|
|
107790
108879
|
*/
|
|
107791
108880
|
skip?: number
|
|
107792
|
-
distinct?:
|
|
108881
|
+
distinct?: LLMPromptScalarFieldEnum | LLMPromptScalarFieldEnum[]
|
|
107793
108882
|
}
|
|
107794
108883
|
|
|
107795
108884
|
/**
|
|
107796
|
-
*
|
|
108885
|
+
* LLMPrompt create
|
|
107797
108886
|
*/
|
|
107798
|
-
export type
|
|
108887
|
+
export type LLMPromptCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107799
108888
|
/**
|
|
107800
|
-
* Select specific fields to fetch from the
|
|
108889
|
+
* Select specific fields to fetch from the LLMPrompt
|
|
107801
108890
|
*/
|
|
107802
|
-
select?:
|
|
108891
|
+
select?: LLMPromptSelect<ExtArgs> | null
|
|
107803
108892
|
/**
|
|
107804
|
-
*
|
|
108893
|
+
* The data needed to create a LLMPrompt.
|
|
107805
108894
|
*/
|
|
107806
|
-
|
|
107807
|
-
/**
|
|
107808
|
-
* The data needed to create a SequenceOutboundReplyEmail.
|
|
107809
|
-
*/
|
|
107810
|
-
data: XOR<SequenceOutboundReplyEmailCreateInput, SequenceOutboundReplyEmailUncheckedCreateInput>
|
|
108895
|
+
data: XOR<LLMPromptCreateInput, LLMPromptUncheckedCreateInput>
|
|
107811
108896
|
}
|
|
107812
108897
|
|
|
107813
108898
|
/**
|
|
107814
|
-
*
|
|
108899
|
+
* LLMPrompt createMany
|
|
107815
108900
|
*/
|
|
107816
|
-
export type
|
|
108901
|
+
export type LLMPromptCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107817
108902
|
/**
|
|
107818
|
-
* The data used to create many
|
|
108903
|
+
* The data used to create many LLMPrompts.
|
|
107819
108904
|
*/
|
|
107820
|
-
data:
|
|
108905
|
+
data: LLMPromptCreateManyInput | LLMPromptCreateManyInput[]
|
|
107821
108906
|
skipDuplicates?: boolean
|
|
107822
108907
|
}
|
|
107823
108908
|
|
|
107824
108909
|
/**
|
|
107825
|
-
*
|
|
108910
|
+
* LLMPrompt createManyAndReturn
|
|
107826
108911
|
*/
|
|
107827
|
-
export type
|
|
108912
|
+
export type LLMPromptCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107828
108913
|
/**
|
|
107829
|
-
* Select specific fields to fetch from the
|
|
108914
|
+
* Select specific fields to fetch from the LLMPrompt
|
|
107830
108915
|
*/
|
|
107831
|
-
select?:
|
|
108916
|
+
select?: LLMPromptSelectCreateManyAndReturn<ExtArgs> | null
|
|
107832
108917
|
/**
|
|
107833
|
-
* The data used to create many
|
|
108918
|
+
* The data used to create many LLMPrompts.
|
|
107834
108919
|
*/
|
|
107835
|
-
data:
|
|
108920
|
+
data: LLMPromptCreateManyInput | LLMPromptCreateManyInput[]
|
|
107836
108921
|
skipDuplicates?: boolean
|
|
107837
|
-
/**
|
|
107838
|
-
* Choose, which related nodes to fetch as well
|
|
107839
|
-
*/
|
|
107840
|
-
include?: SequenceOutboundReplyEmailIncludeCreateManyAndReturn<ExtArgs> | null
|
|
107841
108922
|
}
|
|
107842
108923
|
|
|
107843
108924
|
/**
|
|
107844
|
-
*
|
|
108925
|
+
* LLMPrompt update
|
|
107845
108926
|
*/
|
|
107846
|
-
export type
|
|
107847
|
-
/**
|
|
107848
|
-
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
107849
|
-
*/
|
|
107850
|
-
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
108927
|
+
export type LLMPromptUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107851
108928
|
/**
|
|
107852
|
-
*
|
|
108929
|
+
* Select specific fields to fetch from the LLMPrompt
|
|
107853
108930
|
*/
|
|
107854
|
-
|
|
108931
|
+
select?: LLMPromptSelect<ExtArgs> | null
|
|
107855
108932
|
/**
|
|
107856
|
-
* The data needed to update a
|
|
108933
|
+
* The data needed to update a LLMPrompt.
|
|
107857
108934
|
*/
|
|
107858
|
-
data: XOR<
|
|
108935
|
+
data: XOR<LLMPromptUpdateInput, LLMPromptUncheckedUpdateInput>
|
|
107859
108936
|
/**
|
|
107860
|
-
* Choose, which
|
|
108937
|
+
* Choose, which LLMPrompt to update.
|
|
107861
108938
|
*/
|
|
107862
|
-
where:
|
|
108939
|
+
where: LLMPromptWhereUniqueInput
|
|
107863
108940
|
}
|
|
107864
108941
|
|
|
107865
108942
|
/**
|
|
107866
|
-
*
|
|
108943
|
+
* LLMPrompt updateMany
|
|
107867
108944
|
*/
|
|
107868
|
-
export type
|
|
108945
|
+
export type LLMPromptUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107869
108946
|
/**
|
|
107870
|
-
* The data used to update
|
|
108947
|
+
* The data used to update LLMPrompts.
|
|
107871
108948
|
*/
|
|
107872
|
-
data: XOR<
|
|
108949
|
+
data: XOR<LLMPromptUpdateManyMutationInput, LLMPromptUncheckedUpdateManyInput>
|
|
107873
108950
|
/**
|
|
107874
|
-
* Filter which
|
|
108951
|
+
* Filter which LLMPrompts to update
|
|
107875
108952
|
*/
|
|
107876
|
-
where?:
|
|
108953
|
+
where?: LLMPromptWhereInput
|
|
107877
108954
|
}
|
|
107878
108955
|
|
|
107879
108956
|
/**
|
|
107880
|
-
*
|
|
108957
|
+
* LLMPrompt upsert
|
|
107881
108958
|
*/
|
|
107882
|
-
export type
|
|
108959
|
+
export type LLMPromptUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107883
108960
|
/**
|
|
107884
|
-
* Select specific fields to fetch from the
|
|
108961
|
+
* Select specific fields to fetch from the LLMPrompt
|
|
107885
108962
|
*/
|
|
107886
|
-
select?:
|
|
108963
|
+
select?: LLMPromptSelect<ExtArgs> | null
|
|
107887
108964
|
/**
|
|
107888
|
-
*
|
|
108965
|
+
* The filter to search for the LLMPrompt to update in case it exists.
|
|
107889
108966
|
*/
|
|
107890
|
-
|
|
108967
|
+
where: LLMPromptWhereUniqueInput
|
|
107891
108968
|
/**
|
|
107892
|
-
*
|
|
108969
|
+
* In case the LLMPrompt found by the `where` argument doesn't exist, create a new LLMPrompt with this data.
|
|
107893
108970
|
*/
|
|
107894
|
-
|
|
108971
|
+
create: XOR<LLMPromptCreateInput, LLMPromptUncheckedCreateInput>
|
|
107895
108972
|
/**
|
|
107896
|
-
* In case the
|
|
108973
|
+
* In case the LLMPrompt was found with the provided `where` argument, update it with this data.
|
|
107897
108974
|
*/
|
|
107898
|
-
|
|
107899
|
-
/**
|
|
107900
|
-
* In case the SequenceOutboundReplyEmail was found with the provided `where` argument, update it with this data.
|
|
107901
|
-
*/
|
|
107902
|
-
update: XOR<SequenceOutboundReplyEmailUpdateInput, SequenceOutboundReplyEmailUncheckedUpdateInput>
|
|
108975
|
+
update: XOR<LLMPromptUpdateInput, LLMPromptUncheckedUpdateInput>
|
|
107903
108976
|
}
|
|
107904
108977
|
|
|
107905
108978
|
/**
|
|
107906
|
-
*
|
|
108979
|
+
* LLMPrompt delete
|
|
107907
108980
|
*/
|
|
107908
|
-
export type
|
|
107909
|
-
/**
|
|
107910
|
-
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
107911
|
-
*/
|
|
107912
|
-
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
107913
|
-
/**
|
|
107914
|
-
* Choose, which related nodes to fetch as well
|
|
107915
|
-
*/
|
|
107916
|
-
include?: SequenceOutboundReplyEmailInclude<ExtArgs> | null
|
|
108981
|
+
export type LLMPromptDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107917
108982
|
/**
|
|
107918
|
-
*
|
|
108983
|
+
* Select specific fields to fetch from the LLMPrompt
|
|
107919
108984
|
*/
|
|
107920
|
-
|
|
107921
|
-
}
|
|
107922
|
-
|
|
107923
|
-
/**
|
|
107924
|
-
* SequenceOutboundReplyEmail deleteMany
|
|
107925
|
-
*/
|
|
107926
|
-
export type SequenceOutboundReplyEmailDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
108985
|
+
select?: LLMPromptSelect<ExtArgs> | null
|
|
107927
108986
|
/**
|
|
107928
|
-
* Filter which
|
|
108987
|
+
* Filter which LLMPrompt to delete.
|
|
107929
108988
|
*/
|
|
107930
|
-
where
|
|
108989
|
+
where: LLMPromptWhereUniqueInput
|
|
107931
108990
|
}
|
|
107932
108991
|
|
|
107933
108992
|
/**
|
|
107934
|
-
*
|
|
108993
|
+
* LLMPrompt deleteMany
|
|
107935
108994
|
*/
|
|
107936
|
-
export type
|
|
108995
|
+
export type LLMPromptDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107937
108996
|
/**
|
|
107938
|
-
*
|
|
108997
|
+
* Filter which LLMPrompts to delete
|
|
107939
108998
|
*/
|
|
107940
|
-
|
|
107941
|
-
/**
|
|
107942
|
-
* Choose, which related nodes to fetch as well
|
|
107943
|
-
*/
|
|
107944
|
-
include?: CreatorListItemInclude<ExtArgs> | null
|
|
107945
|
-
where?: CreatorListItemWhereInput
|
|
108999
|
+
where?: LLMPromptWhereInput
|
|
107946
109000
|
}
|
|
107947
109001
|
|
|
107948
109002
|
/**
|
|
107949
|
-
*
|
|
109003
|
+
* LLMPrompt without action
|
|
107950
109004
|
*/
|
|
107951
|
-
export type
|
|
109005
|
+
export type LLMPromptDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107952
109006
|
/**
|
|
107953
|
-
* Select specific fields to fetch from the
|
|
109007
|
+
* Select specific fields to fetch from the LLMPrompt
|
|
107954
109008
|
*/
|
|
107955
|
-
select?:
|
|
107956
|
-
/**
|
|
107957
|
-
* Choose, which related nodes to fetch as well
|
|
107958
|
-
*/
|
|
107959
|
-
include?: SequenceOutboundReplyEmailInclude<ExtArgs> | null
|
|
109009
|
+
select?: LLMPromptSelect<ExtArgs> | null
|
|
107960
109010
|
}
|
|
107961
109011
|
|
|
107962
109012
|
|
|
@@ -110965,6 +112015,7 @@ export namespace Prisma {
|
|
|
110965
112015
|
type: 'type',
|
|
110966
112016
|
value: 'value',
|
|
110967
112017
|
source: 'source',
|
|
112018
|
+
unsubscribe: 'unsubscribe',
|
|
110968
112019
|
metaData: 'metaData',
|
|
110969
112020
|
createdAt: 'createdAt',
|
|
110970
112021
|
updatedAt: 'updatedAt',
|
|
@@ -111365,6 +112416,21 @@ export namespace Prisma {
|
|
|
111365
112416
|
export type SequenceOutboundReplyEmailScalarFieldEnum = (typeof SequenceOutboundReplyEmailScalarFieldEnum)[keyof typeof SequenceOutboundReplyEmailScalarFieldEnum]
|
|
111366
112417
|
|
|
111367
112418
|
|
|
112419
|
+
export const LLMPromptScalarFieldEnum: {
|
|
112420
|
+
id: 'id',
|
|
112421
|
+
collectionName: 'collectionName',
|
|
112422
|
+
version: 'version',
|
|
112423
|
+
steps: 'steps',
|
|
112424
|
+
published: 'published',
|
|
112425
|
+
extraData: 'extraData',
|
|
112426
|
+
editorUserId: 'editorUserId',
|
|
112427
|
+
createdAt: 'createdAt',
|
|
112428
|
+
updatedAt: 'updatedAt'
|
|
112429
|
+
};
|
|
112430
|
+
|
|
112431
|
+
export type LLMPromptScalarFieldEnum = (typeof LLMPromptScalarFieldEnum)[keyof typeof LLMPromptScalarFieldEnum]
|
|
112432
|
+
|
|
112433
|
+
|
|
111368
112434
|
export const LatestCreatorPaymentTransactionScalarFieldEnum: {
|
|
111369
112435
|
id: 'id',
|
|
111370
112436
|
balance: 'balance',
|
|
@@ -111899,7 +112965,8 @@ export namespace Prisma {
|
|
|
111899
112965
|
|
|
111900
112966
|
export const SocialProfileContactOrderByRelevanceFieldEnum: {
|
|
111901
112967
|
type: 'type',
|
|
111902
|
-
value: 'value'
|
|
112968
|
+
value: 'value',
|
|
112969
|
+
unsubscribe: 'unsubscribe'
|
|
111903
112970
|
};
|
|
111904
112971
|
|
|
111905
112972
|
export type SocialProfileContactOrderByRelevanceFieldEnum = (typeof SocialProfileContactOrderByRelevanceFieldEnum)[keyof typeof SocialProfileContactOrderByRelevanceFieldEnum]
|
|
@@ -112093,6 +113160,14 @@ export namespace Prisma {
|
|
|
112093
113160
|
export type SequenceOutboundReplyEmailOrderByRelevanceFieldEnum = (typeof SequenceOutboundReplyEmailOrderByRelevanceFieldEnum)[keyof typeof SequenceOutboundReplyEmailOrderByRelevanceFieldEnum]
|
|
112094
113161
|
|
|
112095
113162
|
|
|
113163
|
+
export const LLMPromptOrderByRelevanceFieldEnum: {
|
|
113164
|
+
id: 'id',
|
|
113165
|
+
collectionName: 'collectionName'
|
|
113166
|
+
};
|
|
113167
|
+
|
|
113168
|
+
export type LLMPromptOrderByRelevanceFieldEnum = (typeof LLMPromptOrderByRelevanceFieldEnum)[keyof typeof LLMPromptOrderByRelevanceFieldEnum]
|
|
113169
|
+
|
|
113170
|
+
|
|
112096
113171
|
export const LatestCreatorPaymentTransactionOrderByRelevanceFieldEnum: {
|
|
112097
113172
|
type: 'type',
|
|
112098
113173
|
notes: 'notes'
|
|
@@ -117890,6 +118965,7 @@ export namespace Prisma {
|
|
|
117890
118965
|
type?: StringFilter<"SocialProfileContact"> | string
|
|
117891
118966
|
value?: StringFilter<"SocialProfileContact"> | string
|
|
117892
118967
|
source?: EnumSocialProfileContactSourceFilter<"SocialProfileContact"> | $Enums.SocialProfileContactSource
|
|
118968
|
+
unsubscribe?: StringNullableListFilter<"SocialProfileContact">
|
|
117893
118969
|
metaData?: JsonNullableFilter<"SocialProfileContact">
|
|
117894
118970
|
createdAt?: DateTimeNullableFilter<"SocialProfileContact"> | Date | string | null
|
|
117895
118971
|
updatedAt?: DateTimeNullableFilter<"SocialProfileContact"> | Date | string | null
|
|
@@ -117901,6 +118977,7 @@ export namespace Prisma {
|
|
|
117901
118977
|
type?: SortOrder
|
|
117902
118978
|
value?: SortOrder
|
|
117903
118979
|
source?: SortOrder
|
|
118980
|
+
unsubscribe?: SortOrder
|
|
117904
118981
|
metaData?: SortOrderInput | SortOrder
|
|
117905
118982
|
createdAt?: SortOrderInput | SortOrder
|
|
117906
118983
|
updatedAt?: SortOrderInput | SortOrder
|
|
@@ -117917,6 +118994,7 @@ export namespace Prisma {
|
|
|
117917
118994
|
type?: StringFilter<"SocialProfileContact"> | string
|
|
117918
118995
|
value?: StringFilter<"SocialProfileContact"> | string
|
|
117919
118996
|
source?: EnumSocialProfileContactSourceFilter<"SocialProfileContact"> | $Enums.SocialProfileContactSource
|
|
118997
|
+
unsubscribe?: StringNullableListFilter<"SocialProfileContact">
|
|
117920
118998
|
metaData?: JsonNullableFilter<"SocialProfileContact">
|
|
117921
118999
|
createdAt?: DateTimeNullableFilter<"SocialProfileContact"> | Date | string | null
|
|
117922
119000
|
updatedAt?: DateTimeNullableFilter<"SocialProfileContact"> | Date | string | null
|
|
@@ -117928,6 +119006,7 @@ export namespace Prisma {
|
|
|
117928
119006
|
type?: SortOrder
|
|
117929
119007
|
value?: SortOrder
|
|
117930
119008
|
source?: SortOrder
|
|
119009
|
+
unsubscribe?: SortOrder
|
|
117931
119010
|
metaData?: SortOrderInput | SortOrder
|
|
117932
119011
|
createdAt?: SortOrderInput | SortOrder
|
|
117933
119012
|
updatedAt?: SortOrderInput | SortOrder
|
|
@@ -117946,6 +119025,7 @@ export namespace Prisma {
|
|
|
117946
119025
|
type?: StringWithAggregatesFilter<"SocialProfileContact"> | string
|
|
117947
119026
|
value?: StringWithAggregatesFilter<"SocialProfileContact"> | string
|
|
117948
119027
|
source?: EnumSocialProfileContactSourceWithAggregatesFilter<"SocialProfileContact"> | $Enums.SocialProfileContactSource
|
|
119028
|
+
unsubscribe?: StringNullableListFilter<"SocialProfileContact">
|
|
117949
119029
|
metaData?: JsonNullableWithAggregatesFilter<"SocialProfileContact">
|
|
117950
119030
|
createdAt?: DateTimeNullableWithAggregatesFilter<"SocialProfileContact"> | Date | string | null
|
|
117951
119031
|
updatedAt?: DateTimeNullableWithAggregatesFilter<"SocialProfileContact"> | Date | string | null
|
|
@@ -120106,6 +121186,82 @@ export namespace Prisma {
|
|
|
120106
121186
|
updatedAt?: DateTimeWithAggregatesFilter<"SequenceOutboundReplyEmail"> | Date | string
|
|
120107
121187
|
}
|
|
120108
121188
|
|
|
121189
|
+
export type LLMPromptWhereInput = {
|
|
121190
|
+
AND?: LLMPromptWhereInput | LLMPromptWhereInput[]
|
|
121191
|
+
OR?: LLMPromptWhereInput[]
|
|
121192
|
+
NOT?: LLMPromptWhereInput | LLMPromptWhereInput[]
|
|
121193
|
+
id?: StringFilter<"LLMPrompt"> | string
|
|
121194
|
+
collectionName?: StringFilter<"LLMPrompt"> | string
|
|
121195
|
+
version?: IntFilter<"LLMPrompt"> | number
|
|
121196
|
+
steps?: JsonFilter<"LLMPrompt">
|
|
121197
|
+
published?: BoolFilter<"LLMPrompt"> | boolean
|
|
121198
|
+
extraData?: JsonFilter<"LLMPrompt">
|
|
121199
|
+
editorUserId?: IntNullableFilter<"LLMPrompt"> | number | null
|
|
121200
|
+
createdAt?: DateTimeFilter<"LLMPrompt"> | Date | string
|
|
121201
|
+
updatedAt?: DateTimeFilter<"LLMPrompt"> | Date | string
|
|
121202
|
+
}
|
|
121203
|
+
|
|
121204
|
+
export type LLMPromptOrderByWithRelationInput = {
|
|
121205
|
+
id?: SortOrder
|
|
121206
|
+
collectionName?: SortOrder
|
|
121207
|
+
version?: SortOrder
|
|
121208
|
+
steps?: SortOrder
|
|
121209
|
+
published?: SortOrder
|
|
121210
|
+
extraData?: SortOrder
|
|
121211
|
+
editorUserId?: SortOrderInput | SortOrder
|
|
121212
|
+
createdAt?: SortOrder
|
|
121213
|
+
updatedAt?: SortOrder
|
|
121214
|
+
_relevance?: LLMPromptOrderByRelevanceInput
|
|
121215
|
+
}
|
|
121216
|
+
|
|
121217
|
+
export type LLMPromptWhereUniqueInput = Prisma.AtLeast<{
|
|
121218
|
+
id?: string
|
|
121219
|
+
collectionName_version?: LLMPromptCollectionNameVersionCompoundUniqueInput
|
|
121220
|
+
AND?: LLMPromptWhereInput | LLMPromptWhereInput[]
|
|
121221
|
+
OR?: LLMPromptWhereInput[]
|
|
121222
|
+
NOT?: LLMPromptWhereInput | LLMPromptWhereInput[]
|
|
121223
|
+
collectionName?: StringFilter<"LLMPrompt"> | string
|
|
121224
|
+
version?: IntFilter<"LLMPrompt"> | number
|
|
121225
|
+
steps?: JsonFilter<"LLMPrompt">
|
|
121226
|
+
published?: BoolFilter<"LLMPrompt"> | boolean
|
|
121227
|
+
extraData?: JsonFilter<"LLMPrompt">
|
|
121228
|
+
editorUserId?: IntNullableFilter<"LLMPrompt"> | number | null
|
|
121229
|
+
createdAt?: DateTimeFilter<"LLMPrompt"> | Date | string
|
|
121230
|
+
updatedAt?: DateTimeFilter<"LLMPrompt"> | Date | string
|
|
121231
|
+
}, "id" | "collectionName_version">
|
|
121232
|
+
|
|
121233
|
+
export type LLMPromptOrderByWithAggregationInput = {
|
|
121234
|
+
id?: SortOrder
|
|
121235
|
+
collectionName?: SortOrder
|
|
121236
|
+
version?: SortOrder
|
|
121237
|
+
steps?: SortOrder
|
|
121238
|
+
published?: SortOrder
|
|
121239
|
+
extraData?: SortOrder
|
|
121240
|
+
editorUserId?: SortOrderInput | SortOrder
|
|
121241
|
+
createdAt?: SortOrder
|
|
121242
|
+
updatedAt?: SortOrder
|
|
121243
|
+
_count?: LLMPromptCountOrderByAggregateInput
|
|
121244
|
+
_avg?: LLMPromptAvgOrderByAggregateInput
|
|
121245
|
+
_max?: LLMPromptMaxOrderByAggregateInput
|
|
121246
|
+
_min?: LLMPromptMinOrderByAggregateInput
|
|
121247
|
+
_sum?: LLMPromptSumOrderByAggregateInput
|
|
121248
|
+
}
|
|
121249
|
+
|
|
121250
|
+
export type LLMPromptScalarWhereWithAggregatesInput = {
|
|
121251
|
+
AND?: LLMPromptScalarWhereWithAggregatesInput | LLMPromptScalarWhereWithAggregatesInput[]
|
|
121252
|
+
OR?: LLMPromptScalarWhereWithAggregatesInput[]
|
|
121253
|
+
NOT?: LLMPromptScalarWhereWithAggregatesInput | LLMPromptScalarWhereWithAggregatesInput[]
|
|
121254
|
+
id?: StringWithAggregatesFilter<"LLMPrompt"> | string
|
|
121255
|
+
collectionName?: StringWithAggregatesFilter<"LLMPrompt"> | string
|
|
121256
|
+
version?: IntWithAggregatesFilter<"LLMPrompt"> | number
|
|
121257
|
+
steps?: JsonWithAggregatesFilter<"LLMPrompt">
|
|
121258
|
+
published?: BoolWithAggregatesFilter<"LLMPrompt"> | boolean
|
|
121259
|
+
extraData?: JsonWithAggregatesFilter<"LLMPrompt">
|
|
121260
|
+
editorUserId?: IntNullableWithAggregatesFilter<"LLMPrompt"> | number | null
|
|
121261
|
+
createdAt?: DateTimeWithAggregatesFilter<"LLMPrompt"> | Date | string
|
|
121262
|
+
updatedAt?: DateTimeWithAggregatesFilter<"LLMPrompt"> | Date | string
|
|
121263
|
+
}
|
|
121264
|
+
|
|
120109
121265
|
export type LatestCreatorPaymentTransactionWhereInput = {
|
|
120110
121266
|
AND?: LatestCreatorPaymentTransactionWhereInput | LatestCreatorPaymentTransactionWhereInput[]
|
|
120111
121267
|
OR?: LatestCreatorPaymentTransactionWhereInput[]
|
|
@@ -126064,6 +127220,7 @@ export namespace Prisma {
|
|
|
126064
127220
|
type: string
|
|
126065
127221
|
value: string
|
|
126066
127222
|
source?: $Enums.SocialProfileContactSource
|
|
127223
|
+
unsubscribe?: SocialProfileContactCreateunsubscribeInput | string[]
|
|
126067
127224
|
metaData?: NullableJsonNullValueInput | InputJsonValue
|
|
126068
127225
|
createdAt?: Date | string | null
|
|
126069
127226
|
updatedAt?: Date | string | null
|
|
@@ -126074,6 +127231,7 @@ export namespace Prisma {
|
|
|
126074
127231
|
type: string
|
|
126075
127232
|
value: string
|
|
126076
127233
|
source?: $Enums.SocialProfileContactSource
|
|
127234
|
+
unsubscribe?: SocialProfileContactCreateunsubscribeInput | string[]
|
|
126077
127235
|
metaData?: NullableJsonNullValueInput | InputJsonValue
|
|
126078
127236
|
createdAt?: Date | string | null
|
|
126079
127237
|
updatedAt?: Date | string | null
|
|
@@ -126084,6 +127242,7 @@ export namespace Prisma {
|
|
|
126084
127242
|
type?: StringFieldUpdateOperationsInput | string
|
|
126085
127243
|
value?: StringFieldUpdateOperationsInput | string
|
|
126086
127244
|
source?: EnumSocialProfileContactSourceFieldUpdateOperationsInput | $Enums.SocialProfileContactSource
|
|
127245
|
+
unsubscribe?: SocialProfileContactUpdateunsubscribeInput | string[]
|
|
126087
127246
|
metaData?: NullableJsonNullValueInput | InputJsonValue
|
|
126088
127247
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
126089
127248
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -126094,6 +127253,7 @@ export namespace Prisma {
|
|
|
126094
127253
|
type?: StringFieldUpdateOperationsInput | string
|
|
126095
127254
|
value?: StringFieldUpdateOperationsInput | string
|
|
126096
127255
|
source?: EnumSocialProfileContactSourceFieldUpdateOperationsInput | $Enums.SocialProfileContactSource
|
|
127256
|
+
unsubscribe?: SocialProfileContactUpdateunsubscribeInput | string[]
|
|
126097
127257
|
metaData?: NullableJsonNullValueInput | InputJsonValue
|
|
126098
127258
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
126099
127259
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -126104,6 +127264,7 @@ export namespace Prisma {
|
|
|
126104
127264
|
type: string
|
|
126105
127265
|
value: string
|
|
126106
127266
|
source?: $Enums.SocialProfileContactSource
|
|
127267
|
+
unsubscribe?: SocialProfileContactCreateunsubscribeInput | string[]
|
|
126107
127268
|
metaData?: NullableJsonNullValueInput | InputJsonValue
|
|
126108
127269
|
createdAt?: Date | string | null
|
|
126109
127270
|
updatedAt?: Date | string | null
|
|
@@ -126114,6 +127275,7 @@ export namespace Prisma {
|
|
|
126114
127275
|
type?: StringFieldUpdateOperationsInput | string
|
|
126115
127276
|
value?: StringFieldUpdateOperationsInput | string
|
|
126116
127277
|
source?: EnumSocialProfileContactSourceFieldUpdateOperationsInput | $Enums.SocialProfileContactSource
|
|
127278
|
+
unsubscribe?: SocialProfileContactUpdateunsubscribeInput | string[]
|
|
126117
127279
|
metaData?: NullableJsonNullValueInput | InputJsonValue
|
|
126118
127280
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
126119
127281
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -126123,6 +127285,7 @@ export namespace Prisma {
|
|
|
126123
127285
|
type?: StringFieldUpdateOperationsInput | string
|
|
126124
127286
|
value?: StringFieldUpdateOperationsInput | string
|
|
126125
127287
|
source?: EnumSocialProfileContactSourceFieldUpdateOperationsInput | $Enums.SocialProfileContactSource
|
|
127288
|
+
unsubscribe?: SocialProfileContactUpdateunsubscribeInput | string[]
|
|
126126
127289
|
metaData?: NullableJsonNullValueInput | InputJsonValue
|
|
126127
127290
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
126128
127291
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -128223,6 +129386,90 @@ export namespace Prisma {
|
|
|
128223
129386
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
128224
129387
|
}
|
|
128225
129388
|
|
|
129389
|
+
export type LLMPromptCreateInput = {
|
|
129390
|
+
id?: string
|
|
129391
|
+
collectionName: string
|
|
129392
|
+
version: number
|
|
129393
|
+
steps: JsonNullValueInput | InputJsonValue
|
|
129394
|
+
published?: boolean
|
|
129395
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
129396
|
+
editorUserId?: number | null
|
|
129397
|
+
createdAt?: Date | string
|
|
129398
|
+
updatedAt?: Date | string
|
|
129399
|
+
}
|
|
129400
|
+
|
|
129401
|
+
export type LLMPromptUncheckedCreateInput = {
|
|
129402
|
+
id?: string
|
|
129403
|
+
collectionName: string
|
|
129404
|
+
version: number
|
|
129405
|
+
steps: JsonNullValueInput | InputJsonValue
|
|
129406
|
+
published?: boolean
|
|
129407
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
129408
|
+
editorUserId?: number | null
|
|
129409
|
+
createdAt?: Date | string
|
|
129410
|
+
updatedAt?: Date | string
|
|
129411
|
+
}
|
|
129412
|
+
|
|
129413
|
+
export type LLMPromptUpdateInput = {
|
|
129414
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
129415
|
+
collectionName?: StringFieldUpdateOperationsInput | string
|
|
129416
|
+
version?: IntFieldUpdateOperationsInput | number
|
|
129417
|
+
steps?: JsonNullValueInput | InputJsonValue
|
|
129418
|
+
published?: BoolFieldUpdateOperationsInput | boolean
|
|
129419
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
129420
|
+
editorUserId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
129421
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
129422
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
129423
|
+
}
|
|
129424
|
+
|
|
129425
|
+
export type LLMPromptUncheckedUpdateInput = {
|
|
129426
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
129427
|
+
collectionName?: StringFieldUpdateOperationsInput | string
|
|
129428
|
+
version?: IntFieldUpdateOperationsInput | number
|
|
129429
|
+
steps?: JsonNullValueInput | InputJsonValue
|
|
129430
|
+
published?: BoolFieldUpdateOperationsInput | boolean
|
|
129431
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
129432
|
+
editorUserId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
129433
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
129434
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
129435
|
+
}
|
|
129436
|
+
|
|
129437
|
+
export type LLMPromptCreateManyInput = {
|
|
129438
|
+
id?: string
|
|
129439
|
+
collectionName: string
|
|
129440
|
+
version: number
|
|
129441
|
+
steps: JsonNullValueInput | InputJsonValue
|
|
129442
|
+
published?: boolean
|
|
129443
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
129444
|
+
editorUserId?: number | null
|
|
129445
|
+
createdAt?: Date | string
|
|
129446
|
+
updatedAt?: Date | string
|
|
129447
|
+
}
|
|
129448
|
+
|
|
129449
|
+
export type LLMPromptUpdateManyMutationInput = {
|
|
129450
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
129451
|
+
collectionName?: StringFieldUpdateOperationsInput | string
|
|
129452
|
+
version?: IntFieldUpdateOperationsInput | number
|
|
129453
|
+
steps?: JsonNullValueInput | InputJsonValue
|
|
129454
|
+
published?: BoolFieldUpdateOperationsInput | boolean
|
|
129455
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
129456
|
+
editorUserId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
129457
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
129458
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
129459
|
+
}
|
|
129460
|
+
|
|
129461
|
+
export type LLMPromptUncheckedUpdateManyInput = {
|
|
129462
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
129463
|
+
collectionName?: StringFieldUpdateOperationsInput | string
|
|
129464
|
+
version?: IntFieldUpdateOperationsInput | number
|
|
129465
|
+
steps?: JsonNullValueInput | InputJsonValue
|
|
129466
|
+
published?: BoolFieldUpdateOperationsInput | boolean
|
|
129467
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
129468
|
+
editorUserId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
129469
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
129470
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
129471
|
+
}
|
|
129472
|
+
|
|
128226
129473
|
export type LatestCreatorPaymentTransactionCreateInput = {
|
|
128227
129474
|
id: number
|
|
128228
129475
|
balance: number
|
|
@@ -133262,6 +134509,14 @@ export namespace Prisma {
|
|
|
133262
134509
|
not?: NestedEnumSocialProfileContactSourceFilter<$PrismaModel> | $Enums.SocialProfileContactSource
|
|
133263
134510
|
}
|
|
133264
134511
|
|
|
134512
|
+
export type StringNullableListFilter<$PrismaModel = never> = {
|
|
134513
|
+
equals?: string[] | ListStringFieldRefInput<$PrismaModel> | null
|
|
134514
|
+
has?: string | StringFieldRefInput<$PrismaModel> | null
|
|
134515
|
+
hasEvery?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
134516
|
+
hasSome?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
134517
|
+
isEmpty?: boolean
|
|
134518
|
+
}
|
|
134519
|
+
|
|
133265
134520
|
export type SocialProfileRelationFilter = {
|
|
133266
134521
|
is?: SocialProfileWhereInput
|
|
133267
134522
|
isNot?: SocialProfileWhereInput
|
|
@@ -133283,6 +134538,7 @@ export namespace Prisma {
|
|
|
133283
134538
|
type?: SortOrder
|
|
133284
134539
|
value?: SortOrder
|
|
133285
134540
|
source?: SortOrder
|
|
134541
|
+
unsubscribe?: SortOrder
|
|
133286
134542
|
metaData?: SortOrder
|
|
133287
134543
|
createdAt?: SortOrder
|
|
133288
134544
|
updatedAt?: SortOrder
|
|
@@ -134927,6 +136183,59 @@ export namespace Prisma {
|
|
|
134927
136183
|
replyCount?: SortOrder
|
|
134928
136184
|
}
|
|
134929
136185
|
|
|
136186
|
+
export type LLMPromptOrderByRelevanceInput = {
|
|
136187
|
+
fields: LLMPromptOrderByRelevanceFieldEnum | LLMPromptOrderByRelevanceFieldEnum[]
|
|
136188
|
+
sort: SortOrder
|
|
136189
|
+
search: string
|
|
136190
|
+
}
|
|
136191
|
+
|
|
136192
|
+
export type LLMPromptCollectionNameVersionCompoundUniqueInput = {
|
|
136193
|
+
collectionName: string
|
|
136194
|
+
version: number
|
|
136195
|
+
}
|
|
136196
|
+
|
|
136197
|
+
export type LLMPromptCountOrderByAggregateInput = {
|
|
136198
|
+
id?: SortOrder
|
|
136199
|
+
collectionName?: SortOrder
|
|
136200
|
+
version?: SortOrder
|
|
136201
|
+
steps?: SortOrder
|
|
136202
|
+
published?: SortOrder
|
|
136203
|
+
extraData?: SortOrder
|
|
136204
|
+
editorUserId?: SortOrder
|
|
136205
|
+
createdAt?: SortOrder
|
|
136206
|
+
updatedAt?: SortOrder
|
|
136207
|
+
}
|
|
136208
|
+
|
|
136209
|
+
export type LLMPromptAvgOrderByAggregateInput = {
|
|
136210
|
+
version?: SortOrder
|
|
136211
|
+
editorUserId?: SortOrder
|
|
136212
|
+
}
|
|
136213
|
+
|
|
136214
|
+
export type LLMPromptMaxOrderByAggregateInput = {
|
|
136215
|
+
id?: SortOrder
|
|
136216
|
+
collectionName?: SortOrder
|
|
136217
|
+
version?: SortOrder
|
|
136218
|
+
published?: SortOrder
|
|
136219
|
+
editorUserId?: SortOrder
|
|
136220
|
+
createdAt?: SortOrder
|
|
136221
|
+
updatedAt?: SortOrder
|
|
136222
|
+
}
|
|
136223
|
+
|
|
136224
|
+
export type LLMPromptMinOrderByAggregateInput = {
|
|
136225
|
+
id?: SortOrder
|
|
136226
|
+
collectionName?: SortOrder
|
|
136227
|
+
version?: SortOrder
|
|
136228
|
+
published?: SortOrder
|
|
136229
|
+
editorUserId?: SortOrder
|
|
136230
|
+
createdAt?: SortOrder
|
|
136231
|
+
updatedAt?: SortOrder
|
|
136232
|
+
}
|
|
136233
|
+
|
|
136234
|
+
export type LLMPromptSumOrderByAggregateInput = {
|
|
136235
|
+
version?: SortOrder
|
|
136236
|
+
editorUserId?: SortOrder
|
|
136237
|
+
}
|
|
136238
|
+
|
|
134930
136239
|
export type LatestCreatorPaymentTransactionOrderByRelevanceInput = {
|
|
134931
136240
|
fields: LatestCreatorPaymentTransactionOrderByRelevanceFieldEnum | LatestCreatorPaymentTransactionOrderByRelevanceFieldEnum[]
|
|
134932
136241
|
sort: SortOrder
|
|
@@ -142131,6 +143440,10 @@ export namespace Prisma {
|
|
|
142131
143440
|
deleteMany?: SocialProfileContactScalarWhereInput | SocialProfileContactScalarWhereInput[]
|
|
142132
143441
|
}
|
|
142133
143442
|
|
|
143443
|
+
export type SocialProfileContactCreateunsubscribeInput = {
|
|
143444
|
+
set: string[]
|
|
143445
|
+
}
|
|
143446
|
+
|
|
142134
143447
|
export type SocialProfileCreateNestedOneWithoutSocialProfileContactsInput = {
|
|
142135
143448
|
create?: XOR<SocialProfileCreateWithoutSocialProfileContactsInput, SocialProfileUncheckedCreateWithoutSocialProfileContactsInput>
|
|
142136
143449
|
connectOrCreate?: SocialProfileCreateOrConnectWithoutSocialProfileContactsInput
|
|
@@ -142141,6 +143454,11 @@ export namespace Prisma {
|
|
|
142141
143454
|
set?: $Enums.SocialProfileContactSource
|
|
142142
143455
|
}
|
|
142143
143456
|
|
|
143457
|
+
export type SocialProfileContactUpdateunsubscribeInput = {
|
|
143458
|
+
set?: string[]
|
|
143459
|
+
push?: string | string[]
|
|
143460
|
+
}
|
|
143461
|
+
|
|
142144
143462
|
export type SocialProfileUpdateOneRequiredWithoutSocialProfileContactsNestedInput = {
|
|
142145
143463
|
create?: XOR<SocialProfileCreateWithoutSocialProfileContactsInput, SocialProfileUncheckedCreateWithoutSocialProfileContactsInput>
|
|
142146
143464
|
connectOrCreate?: SocialProfileCreateOrConnectWithoutSocialProfileContactsInput
|
|
@@ -169475,6 +170793,7 @@ export namespace Prisma {
|
|
|
169475
170793
|
type: string
|
|
169476
170794
|
value: string
|
|
169477
170795
|
source?: $Enums.SocialProfileContactSource
|
|
170796
|
+
unsubscribe?: SocialProfileContactCreateunsubscribeInput | string[]
|
|
169478
170797
|
metaData?: NullableJsonNullValueInput | InputJsonValue
|
|
169479
170798
|
createdAt?: Date | string | null
|
|
169480
170799
|
updatedAt?: Date | string | null
|
|
@@ -169484,6 +170803,7 @@ export namespace Prisma {
|
|
|
169484
170803
|
type: string
|
|
169485
170804
|
value: string
|
|
169486
170805
|
source?: $Enums.SocialProfileContactSource
|
|
170806
|
+
unsubscribe?: SocialProfileContactCreateunsubscribeInput | string[]
|
|
169487
170807
|
metaData?: NullableJsonNullValueInput | InputJsonValue
|
|
169488
170808
|
createdAt?: Date | string | null
|
|
169489
170809
|
updatedAt?: Date | string | null
|
|
@@ -169692,6 +171012,7 @@ export namespace Prisma {
|
|
|
169692
171012
|
type?: StringFilter<"SocialProfileContact"> | string
|
|
169693
171013
|
value?: StringFilter<"SocialProfileContact"> | string
|
|
169694
171014
|
source?: EnumSocialProfileContactSourceFilter<"SocialProfileContact"> | $Enums.SocialProfileContactSource
|
|
171015
|
+
unsubscribe?: StringNullableListFilter<"SocialProfileContact">
|
|
169695
171016
|
metaData?: JsonNullableFilter<"SocialProfileContact">
|
|
169696
171017
|
createdAt?: DateTimeNullableFilter<"SocialProfileContact"> | Date | string | null
|
|
169697
171018
|
updatedAt?: DateTimeNullableFilter<"SocialProfileContact"> | Date | string | null
|
|
@@ -184691,6 +186012,7 @@ export namespace Prisma {
|
|
|
184691
186012
|
type: string
|
|
184692
186013
|
value: string
|
|
184693
186014
|
source?: $Enums.SocialProfileContactSource
|
|
186015
|
+
unsubscribe?: SocialProfileContactCreateunsubscribeInput | string[]
|
|
184694
186016
|
metaData?: NullableJsonNullValueInput | InputJsonValue
|
|
184695
186017
|
createdAt?: Date | string | null
|
|
184696
186018
|
updatedAt?: Date | string | null
|
|
@@ -184795,6 +186117,7 @@ export namespace Prisma {
|
|
|
184795
186117
|
type?: StringFieldUpdateOperationsInput | string
|
|
184796
186118
|
value?: StringFieldUpdateOperationsInput | string
|
|
184797
186119
|
source?: EnumSocialProfileContactSourceFieldUpdateOperationsInput | $Enums.SocialProfileContactSource
|
|
186120
|
+
unsubscribe?: SocialProfileContactUpdateunsubscribeInput | string[]
|
|
184798
186121
|
metaData?: NullableJsonNullValueInput | InputJsonValue
|
|
184799
186122
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
184800
186123
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -184804,6 +186127,7 @@ export namespace Prisma {
|
|
|
184804
186127
|
type?: StringFieldUpdateOperationsInput | string
|
|
184805
186128
|
value?: StringFieldUpdateOperationsInput | string
|
|
184806
186129
|
source?: EnumSocialProfileContactSourceFieldUpdateOperationsInput | $Enums.SocialProfileContactSource
|
|
186130
|
+
unsubscribe?: SocialProfileContactUpdateunsubscribeInput | string[]
|
|
184807
186131
|
metaData?: NullableJsonNullValueInput | InputJsonValue
|
|
184808
186132
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
184809
186133
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -184813,6 +186137,7 @@ export namespace Prisma {
|
|
|
184813
186137
|
type?: StringFieldUpdateOperationsInput | string
|
|
184814
186138
|
value?: StringFieldUpdateOperationsInput | string
|
|
184815
186139
|
source?: EnumSocialProfileContactSourceFieldUpdateOperationsInput | $Enums.SocialProfileContactSource
|
|
186140
|
+
unsubscribe?: SocialProfileContactUpdateunsubscribeInput | string[]
|
|
184816
186141
|
metaData?: NullableJsonNullValueInput | InputJsonValue
|
|
184817
186142
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
184818
186143
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -185804,6 +187129,10 @@ export namespace Prisma {
|
|
|
185804
187129
|
* @deprecated Use SequenceOutboundReplyEmailDefaultArgs instead
|
|
185805
187130
|
*/
|
|
185806
187131
|
export type SequenceOutboundReplyEmailArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = SequenceOutboundReplyEmailDefaultArgs<ExtArgs>
|
|
187132
|
+
/**
|
|
187133
|
+
* @deprecated Use LLMPromptDefaultArgs instead
|
|
187134
|
+
*/
|
|
187135
|
+
export type LLMPromptArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = LLMPromptDefaultArgs<ExtArgs>
|
|
185807
187136
|
/**
|
|
185808
187137
|
* @deprecated Use LatestCreatorPaymentTransactionDefaultArgs instead
|
|
185809
187138
|
*/
|