@creator.co/creatorco-prisma-client 1.0.89 → 1.0.90
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 +23 -5
- package/index-browser.js +18 -0
- package/index.d.ts +1459 -177
- package/index.js +23 -5
- package/package.json +1 -1
- package/schema.prisma +16 -0
- package/wasm.js +18 -0
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
|
|
@@ -107602,361 +107688,1317 @@ export namespace Prisma {
|
|
|
107602
107688
|
|
|
107603
107689
|
|
|
107604
107690
|
/**
|
|
107605
|
-
* Fields of the SequenceOutboundReplyEmail model
|
|
107691
|
+
* Fields of the SequenceOutboundReplyEmail model
|
|
107692
|
+
*/
|
|
107693
|
+
interface SequenceOutboundReplyEmailFieldRefs {
|
|
107694
|
+
readonly id: FieldRef<"SequenceOutboundReplyEmail", 'Int'>
|
|
107695
|
+
readonly sequenceId: FieldRef<"SequenceOutboundReplyEmail", 'Int'>
|
|
107696
|
+
readonly listItemId: FieldRef<"SequenceOutboundReplyEmail", 'Int'>
|
|
107697
|
+
readonly type: FieldRef<"SequenceOutboundReplyEmail", 'Int'>
|
|
107698
|
+
readonly typeId: FieldRef<"SequenceOutboundReplyEmail", 'String'>
|
|
107699
|
+
readonly replyCount: FieldRef<"SequenceOutboundReplyEmail", 'Int'>
|
|
107700
|
+
readonly createdAt: FieldRef<"SequenceOutboundReplyEmail", 'DateTime'>
|
|
107701
|
+
readonly updatedAt: FieldRef<"SequenceOutboundReplyEmail", 'DateTime'>
|
|
107702
|
+
}
|
|
107703
|
+
|
|
107704
|
+
|
|
107705
|
+
// Custom InputTypes
|
|
107706
|
+
/**
|
|
107707
|
+
* SequenceOutboundReplyEmail findUnique
|
|
107708
|
+
*/
|
|
107709
|
+
export type SequenceOutboundReplyEmailFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107710
|
+
/**
|
|
107711
|
+
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
107712
|
+
*/
|
|
107713
|
+
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
107714
|
+
/**
|
|
107715
|
+
* Choose, which related nodes to fetch as well
|
|
107716
|
+
*/
|
|
107717
|
+
include?: SequenceOutboundReplyEmailInclude<ExtArgs> | null
|
|
107718
|
+
/**
|
|
107719
|
+
* Filter, which SequenceOutboundReplyEmail to fetch.
|
|
107720
|
+
*/
|
|
107721
|
+
where: SequenceOutboundReplyEmailWhereUniqueInput
|
|
107722
|
+
}
|
|
107723
|
+
|
|
107724
|
+
/**
|
|
107725
|
+
* SequenceOutboundReplyEmail findUniqueOrThrow
|
|
107726
|
+
*/
|
|
107727
|
+
export type SequenceOutboundReplyEmailFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107728
|
+
/**
|
|
107729
|
+
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
107730
|
+
*/
|
|
107731
|
+
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
107732
|
+
/**
|
|
107733
|
+
* Choose, which related nodes to fetch as well
|
|
107734
|
+
*/
|
|
107735
|
+
include?: SequenceOutboundReplyEmailInclude<ExtArgs> | null
|
|
107736
|
+
/**
|
|
107737
|
+
* Filter, which SequenceOutboundReplyEmail to fetch.
|
|
107738
|
+
*/
|
|
107739
|
+
where: SequenceOutboundReplyEmailWhereUniqueInput
|
|
107740
|
+
}
|
|
107741
|
+
|
|
107742
|
+
/**
|
|
107743
|
+
* SequenceOutboundReplyEmail findFirst
|
|
107744
|
+
*/
|
|
107745
|
+
export type SequenceOutboundReplyEmailFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107746
|
+
/**
|
|
107747
|
+
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
107748
|
+
*/
|
|
107749
|
+
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
107750
|
+
/**
|
|
107751
|
+
* Choose, which related nodes to fetch as well
|
|
107752
|
+
*/
|
|
107753
|
+
include?: SequenceOutboundReplyEmailInclude<ExtArgs> | null
|
|
107754
|
+
/**
|
|
107755
|
+
* Filter, which SequenceOutboundReplyEmail to fetch.
|
|
107756
|
+
*/
|
|
107757
|
+
where?: SequenceOutboundReplyEmailWhereInput
|
|
107758
|
+
/**
|
|
107759
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
107760
|
+
*
|
|
107761
|
+
* Determine the order of SequenceOutboundReplyEmails to fetch.
|
|
107762
|
+
*/
|
|
107763
|
+
orderBy?: SequenceOutboundReplyEmailOrderByWithRelationInput | SequenceOutboundReplyEmailOrderByWithRelationInput[]
|
|
107764
|
+
/**
|
|
107765
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
107766
|
+
*
|
|
107767
|
+
* Sets the position for searching for SequenceOutboundReplyEmails.
|
|
107768
|
+
*/
|
|
107769
|
+
cursor?: SequenceOutboundReplyEmailWhereUniqueInput
|
|
107770
|
+
/**
|
|
107771
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
107772
|
+
*
|
|
107773
|
+
* Take `±n` SequenceOutboundReplyEmails from the position of the cursor.
|
|
107774
|
+
*/
|
|
107775
|
+
take?: number
|
|
107776
|
+
/**
|
|
107777
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
107778
|
+
*
|
|
107779
|
+
* Skip the first `n` SequenceOutboundReplyEmails.
|
|
107780
|
+
*/
|
|
107781
|
+
skip?: number
|
|
107782
|
+
/**
|
|
107783
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
107784
|
+
*
|
|
107785
|
+
* Filter by unique combinations of SequenceOutboundReplyEmails.
|
|
107786
|
+
*/
|
|
107787
|
+
distinct?: SequenceOutboundReplyEmailScalarFieldEnum | SequenceOutboundReplyEmailScalarFieldEnum[]
|
|
107788
|
+
}
|
|
107789
|
+
|
|
107790
|
+
/**
|
|
107791
|
+
* SequenceOutboundReplyEmail findFirstOrThrow
|
|
107792
|
+
*/
|
|
107793
|
+
export type SequenceOutboundReplyEmailFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107794
|
+
/**
|
|
107795
|
+
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
107796
|
+
*/
|
|
107797
|
+
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
107798
|
+
/**
|
|
107799
|
+
* Choose, which related nodes to fetch as well
|
|
107800
|
+
*/
|
|
107801
|
+
include?: SequenceOutboundReplyEmailInclude<ExtArgs> | null
|
|
107802
|
+
/**
|
|
107803
|
+
* Filter, which SequenceOutboundReplyEmail to fetch.
|
|
107804
|
+
*/
|
|
107805
|
+
where?: SequenceOutboundReplyEmailWhereInput
|
|
107806
|
+
/**
|
|
107807
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
107808
|
+
*
|
|
107809
|
+
* Determine the order of SequenceOutboundReplyEmails to fetch.
|
|
107810
|
+
*/
|
|
107811
|
+
orderBy?: SequenceOutboundReplyEmailOrderByWithRelationInput | SequenceOutboundReplyEmailOrderByWithRelationInput[]
|
|
107812
|
+
/**
|
|
107813
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
107814
|
+
*
|
|
107815
|
+
* Sets the position for searching for SequenceOutboundReplyEmails.
|
|
107816
|
+
*/
|
|
107817
|
+
cursor?: SequenceOutboundReplyEmailWhereUniqueInput
|
|
107818
|
+
/**
|
|
107819
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
107820
|
+
*
|
|
107821
|
+
* Take `±n` SequenceOutboundReplyEmails from the position of the cursor.
|
|
107822
|
+
*/
|
|
107823
|
+
take?: number
|
|
107824
|
+
/**
|
|
107825
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
107826
|
+
*
|
|
107827
|
+
* Skip the first `n` SequenceOutboundReplyEmails.
|
|
107828
|
+
*/
|
|
107829
|
+
skip?: number
|
|
107830
|
+
/**
|
|
107831
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
107832
|
+
*
|
|
107833
|
+
* Filter by unique combinations of SequenceOutboundReplyEmails.
|
|
107834
|
+
*/
|
|
107835
|
+
distinct?: SequenceOutboundReplyEmailScalarFieldEnum | SequenceOutboundReplyEmailScalarFieldEnum[]
|
|
107836
|
+
}
|
|
107837
|
+
|
|
107838
|
+
/**
|
|
107839
|
+
* SequenceOutboundReplyEmail findMany
|
|
107840
|
+
*/
|
|
107841
|
+
export type SequenceOutboundReplyEmailFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107842
|
+
/**
|
|
107843
|
+
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
107844
|
+
*/
|
|
107845
|
+
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
107846
|
+
/**
|
|
107847
|
+
* Choose, which related nodes to fetch as well
|
|
107848
|
+
*/
|
|
107849
|
+
include?: SequenceOutboundReplyEmailInclude<ExtArgs> | null
|
|
107850
|
+
/**
|
|
107851
|
+
* Filter, which SequenceOutboundReplyEmails to fetch.
|
|
107852
|
+
*/
|
|
107853
|
+
where?: SequenceOutboundReplyEmailWhereInput
|
|
107854
|
+
/**
|
|
107855
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
107856
|
+
*
|
|
107857
|
+
* Determine the order of SequenceOutboundReplyEmails to fetch.
|
|
107858
|
+
*/
|
|
107859
|
+
orderBy?: SequenceOutboundReplyEmailOrderByWithRelationInput | SequenceOutboundReplyEmailOrderByWithRelationInput[]
|
|
107860
|
+
/**
|
|
107861
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
107862
|
+
*
|
|
107863
|
+
* Sets the position for listing SequenceOutboundReplyEmails.
|
|
107864
|
+
*/
|
|
107865
|
+
cursor?: SequenceOutboundReplyEmailWhereUniqueInput
|
|
107866
|
+
/**
|
|
107867
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
107868
|
+
*
|
|
107869
|
+
* Take `±n` SequenceOutboundReplyEmails from the position of the cursor.
|
|
107870
|
+
*/
|
|
107871
|
+
take?: number
|
|
107872
|
+
/**
|
|
107873
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
107874
|
+
*
|
|
107875
|
+
* Skip the first `n` SequenceOutboundReplyEmails.
|
|
107876
|
+
*/
|
|
107877
|
+
skip?: number
|
|
107878
|
+
distinct?: SequenceOutboundReplyEmailScalarFieldEnum | SequenceOutboundReplyEmailScalarFieldEnum[]
|
|
107879
|
+
}
|
|
107880
|
+
|
|
107881
|
+
/**
|
|
107882
|
+
* SequenceOutboundReplyEmail create
|
|
107883
|
+
*/
|
|
107884
|
+
export type SequenceOutboundReplyEmailCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107885
|
+
/**
|
|
107886
|
+
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
107887
|
+
*/
|
|
107888
|
+
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
107889
|
+
/**
|
|
107890
|
+
* Choose, which related nodes to fetch as well
|
|
107891
|
+
*/
|
|
107892
|
+
include?: SequenceOutboundReplyEmailInclude<ExtArgs> | null
|
|
107893
|
+
/**
|
|
107894
|
+
* The data needed to create a SequenceOutboundReplyEmail.
|
|
107895
|
+
*/
|
|
107896
|
+
data: XOR<SequenceOutboundReplyEmailCreateInput, SequenceOutboundReplyEmailUncheckedCreateInput>
|
|
107897
|
+
}
|
|
107898
|
+
|
|
107899
|
+
/**
|
|
107900
|
+
* SequenceOutboundReplyEmail createMany
|
|
107901
|
+
*/
|
|
107902
|
+
export type SequenceOutboundReplyEmailCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107903
|
+
/**
|
|
107904
|
+
* The data used to create many SequenceOutboundReplyEmails.
|
|
107905
|
+
*/
|
|
107906
|
+
data: SequenceOutboundReplyEmailCreateManyInput | SequenceOutboundReplyEmailCreateManyInput[]
|
|
107907
|
+
skipDuplicates?: boolean
|
|
107908
|
+
}
|
|
107909
|
+
|
|
107910
|
+
/**
|
|
107911
|
+
* SequenceOutboundReplyEmail createManyAndReturn
|
|
107912
|
+
*/
|
|
107913
|
+
export type SequenceOutboundReplyEmailCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107914
|
+
/**
|
|
107915
|
+
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
107916
|
+
*/
|
|
107917
|
+
select?: SequenceOutboundReplyEmailSelectCreateManyAndReturn<ExtArgs> | null
|
|
107918
|
+
/**
|
|
107919
|
+
* The data used to create many SequenceOutboundReplyEmails.
|
|
107920
|
+
*/
|
|
107921
|
+
data: SequenceOutboundReplyEmailCreateManyInput | SequenceOutboundReplyEmailCreateManyInput[]
|
|
107922
|
+
skipDuplicates?: boolean
|
|
107923
|
+
/**
|
|
107924
|
+
* Choose, which related nodes to fetch as well
|
|
107925
|
+
*/
|
|
107926
|
+
include?: SequenceOutboundReplyEmailIncludeCreateManyAndReturn<ExtArgs> | null
|
|
107927
|
+
}
|
|
107928
|
+
|
|
107929
|
+
/**
|
|
107930
|
+
* SequenceOutboundReplyEmail update
|
|
107931
|
+
*/
|
|
107932
|
+
export type SequenceOutboundReplyEmailUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107933
|
+
/**
|
|
107934
|
+
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
107935
|
+
*/
|
|
107936
|
+
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
107937
|
+
/**
|
|
107938
|
+
* Choose, which related nodes to fetch as well
|
|
107939
|
+
*/
|
|
107940
|
+
include?: SequenceOutboundReplyEmailInclude<ExtArgs> | null
|
|
107941
|
+
/**
|
|
107942
|
+
* The data needed to update a SequenceOutboundReplyEmail.
|
|
107943
|
+
*/
|
|
107944
|
+
data: XOR<SequenceOutboundReplyEmailUpdateInput, SequenceOutboundReplyEmailUncheckedUpdateInput>
|
|
107945
|
+
/**
|
|
107946
|
+
* Choose, which SequenceOutboundReplyEmail to update.
|
|
107947
|
+
*/
|
|
107948
|
+
where: SequenceOutboundReplyEmailWhereUniqueInput
|
|
107949
|
+
}
|
|
107950
|
+
|
|
107951
|
+
/**
|
|
107952
|
+
* SequenceOutboundReplyEmail updateMany
|
|
107953
|
+
*/
|
|
107954
|
+
export type SequenceOutboundReplyEmailUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107955
|
+
/**
|
|
107956
|
+
* The data used to update SequenceOutboundReplyEmails.
|
|
107957
|
+
*/
|
|
107958
|
+
data: XOR<SequenceOutboundReplyEmailUpdateManyMutationInput, SequenceOutboundReplyEmailUncheckedUpdateManyInput>
|
|
107959
|
+
/**
|
|
107960
|
+
* Filter which SequenceOutboundReplyEmails to update
|
|
107961
|
+
*/
|
|
107962
|
+
where?: SequenceOutboundReplyEmailWhereInput
|
|
107963
|
+
}
|
|
107964
|
+
|
|
107965
|
+
/**
|
|
107966
|
+
* SequenceOutboundReplyEmail upsert
|
|
107967
|
+
*/
|
|
107968
|
+
export type SequenceOutboundReplyEmailUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107969
|
+
/**
|
|
107970
|
+
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
107971
|
+
*/
|
|
107972
|
+
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
107973
|
+
/**
|
|
107974
|
+
* Choose, which related nodes to fetch as well
|
|
107975
|
+
*/
|
|
107976
|
+
include?: SequenceOutboundReplyEmailInclude<ExtArgs> | null
|
|
107977
|
+
/**
|
|
107978
|
+
* The filter to search for the SequenceOutboundReplyEmail to update in case it exists.
|
|
107979
|
+
*/
|
|
107980
|
+
where: SequenceOutboundReplyEmailWhereUniqueInput
|
|
107981
|
+
/**
|
|
107982
|
+
* In case the SequenceOutboundReplyEmail found by the `where` argument doesn't exist, create a new SequenceOutboundReplyEmail with this data.
|
|
107983
|
+
*/
|
|
107984
|
+
create: XOR<SequenceOutboundReplyEmailCreateInput, SequenceOutboundReplyEmailUncheckedCreateInput>
|
|
107985
|
+
/**
|
|
107986
|
+
* In case the SequenceOutboundReplyEmail was found with the provided `where` argument, update it with this data.
|
|
107987
|
+
*/
|
|
107988
|
+
update: XOR<SequenceOutboundReplyEmailUpdateInput, SequenceOutboundReplyEmailUncheckedUpdateInput>
|
|
107989
|
+
}
|
|
107990
|
+
|
|
107991
|
+
/**
|
|
107992
|
+
* SequenceOutboundReplyEmail delete
|
|
107993
|
+
*/
|
|
107994
|
+
export type SequenceOutboundReplyEmailDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107995
|
+
/**
|
|
107996
|
+
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
107997
|
+
*/
|
|
107998
|
+
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
107999
|
+
/**
|
|
108000
|
+
* Choose, which related nodes to fetch as well
|
|
108001
|
+
*/
|
|
108002
|
+
include?: SequenceOutboundReplyEmailInclude<ExtArgs> | null
|
|
108003
|
+
/**
|
|
108004
|
+
* Filter which SequenceOutboundReplyEmail to delete.
|
|
108005
|
+
*/
|
|
108006
|
+
where: SequenceOutboundReplyEmailWhereUniqueInput
|
|
108007
|
+
}
|
|
108008
|
+
|
|
108009
|
+
/**
|
|
108010
|
+
* SequenceOutboundReplyEmail deleteMany
|
|
108011
|
+
*/
|
|
108012
|
+
export type SequenceOutboundReplyEmailDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
108013
|
+
/**
|
|
108014
|
+
* Filter which SequenceOutboundReplyEmails to delete
|
|
108015
|
+
*/
|
|
108016
|
+
where?: SequenceOutboundReplyEmailWhereInput
|
|
108017
|
+
}
|
|
108018
|
+
|
|
108019
|
+
/**
|
|
108020
|
+
* SequenceOutboundReplyEmail.creatorListItem
|
|
108021
|
+
*/
|
|
108022
|
+
export type SequenceOutboundReplyEmail$creatorListItemArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
108023
|
+
/**
|
|
108024
|
+
* Select specific fields to fetch from the CreatorListItem
|
|
108025
|
+
*/
|
|
108026
|
+
select?: CreatorListItemSelect<ExtArgs> | null
|
|
108027
|
+
/**
|
|
108028
|
+
* Choose, which related nodes to fetch as well
|
|
108029
|
+
*/
|
|
108030
|
+
include?: CreatorListItemInclude<ExtArgs> | null
|
|
108031
|
+
where?: CreatorListItemWhereInput
|
|
108032
|
+
}
|
|
108033
|
+
|
|
108034
|
+
/**
|
|
108035
|
+
* SequenceOutboundReplyEmail without action
|
|
108036
|
+
*/
|
|
108037
|
+
export type SequenceOutboundReplyEmailDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
108038
|
+
/**
|
|
108039
|
+
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
108040
|
+
*/
|
|
108041
|
+
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
108042
|
+
/**
|
|
108043
|
+
* Choose, which related nodes to fetch as well
|
|
108044
|
+
*/
|
|
108045
|
+
include?: SequenceOutboundReplyEmailInclude<ExtArgs> | null
|
|
108046
|
+
}
|
|
108047
|
+
|
|
108048
|
+
|
|
108049
|
+
/**
|
|
108050
|
+
* Model LLMPrompt
|
|
108051
|
+
*/
|
|
108052
|
+
|
|
108053
|
+
export type AggregateLLMPrompt = {
|
|
108054
|
+
_count: LLMPromptCountAggregateOutputType | null
|
|
108055
|
+
_avg: LLMPromptAvgAggregateOutputType | null
|
|
108056
|
+
_sum: LLMPromptSumAggregateOutputType | null
|
|
108057
|
+
_min: LLMPromptMinAggregateOutputType | null
|
|
108058
|
+
_max: LLMPromptMaxAggregateOutputType | null
|
|
108059
|
+
}
|
|
108060
|
+
|
|
108061
|
+
export type LLMPromptAvgAggregateOutputType = {
|
|
108062
|
+
version: number | null
|
|
108063
|
+
editorUserId: number | null
|
|
108064
|
+
}
|
|
108065
|
+
|
|
108066
|
+
export type LLMPromptSumAggregateOutputType = {
|
|
108067
|
+
version: number | null
|
|
108068
|
+
editorUserId: number | null
|
|
108069
|
+
}
|
|
108070
|
+
|
|
108071
|
+
export type LLMPromptMinAggregateOutputType = {
|
|
108072
|
+
id: string | null
|
|
108073
|
+
collectionName: string | null
|
|
108074
|
+
version: number | null
|
|
108075
|
+
published: boolean | null
|
|
108076
|
+
editorUserId: number | null
|
|
108077
|
+
createdAt: Date | null
|
|
108078
|
+
updatedAt: Date | null
|
|
108079
|
+
}
|
|
108080
|
+
|
|
108081
|
+
export type LLMPromptMaxAggregateOutputType = {
|
|
108082
|
+
id: string | null
|
|
108083
|
+
collectionName: string | null
|
|
108084
|
+
version: number | null
|
|
108085
|
+
published: boolean | null
|
|
108086
|
+
editorUserId: number | null
|
|
108087
|
+
createdAt: Date | null
|
|
108088
|
+
updatedAt: Date | null
|
|
108089
|
+
}
|
|
108090
|
+
|
|
108091
|
+
export type LLMPromptCountAggregateOutputType = {
|
|
108092
|
+
id: number
|
|
108093
|
+
collectionName: number
|
|
108094
|
+
version: number
|
|
108095
|
+
steps: number
|
|
108096
|
+
published: number
|
|
108097
|
+
extraData: number
|
|
108098
|
+
editorUserId: number
|
|
108099
|
+
createdAt: number
|
|
108100
|
+
updatedAt: number
|
|
108101
|
+
_all: number
|
|
108102
|
+
}
|
|
108103
|
+
|
|
108104
|
+
|
|
108105
|
+
export type LLMPromptAvgAggregateInputType = {
|
|
108106
|
+
version?: true
|
|
108107
|
+
editorUserId?: true
|
|
108108
|
+
}
|
|
108109
|
+
|
|
108110
|
+
export type LLMPromptSumAggregateInputType = {
|
|
108111
|
+
version?: true
|
|
108112
|
+
editorUserId?: true
|
|
108113
|
+
}
|
|
108114
|
+
|
|
108115
|
+
export type LLMPromptMinAggregateInputType = {
|
|
108116
|
+
id?: true
|
|
108117
|
+
collectionName?: true
|
|
108118
|
+
version?: true
|
|
108119
|
+
published?: true
|
|
108120
|
+
editorUserId?: true
|
|
108121
|
+
createdAt?: true
|
|
108122
|
+
updatedAt?: true
|
|
108123
|
+
}
|
|
108124
|
+
|
|
108125
|
+
export type LLMPromptMaxAggregateInputType = {
|
|
108126
|
+
id?: true
|
|
108127
|
+
collectionName?: true
|
|
108128
|
+
version?: true
|
|
108129
|
+
published?: true
|
|
108130
|
+
editorUserId?: true
|
|
108131
|
+
createdAt?: true
|
|
108132
|
+
updatedAt?: true
|
|
108133
|
+
}
|
|
108134
|
+
|
|
108135
|
+
export type LLMPromptCountAggregateInputType = {
|
|
108136
|
+
id?: true
|
|
108137
|
+
collectionName?: true
|
|
108138
|
+
version?: true
|
|
108139
|
+
steps?: true
|
|
108140
|
+
published?: true
|
|
108141
|
+
extraData?: true
|
|
108142
|
+
editorUserId?: true
|
|
108143
|
+
createdAt?: true
|
|
108144
|
+
updatedAt?: true
|
|
108145
|
+
_all?: true
|
|
108146
|
+
}
|
|
108147
|
+
|
|
108148
|
+
export type LLMPromptAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
108149
|
+
/**
|
|
108150
|
+
* Filter which LLMPrompt to aggregate.
|
|
108151
|
+
*/
|
|
108152
|
+
where?: LLMPromptWhereInput
|
|
108153
|
+
/**
|
|
108154
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
108155
|
+
*
|
|
108156
|
+
* Determine the order of LLMPrompts to fetch.
|
|
108157
|
+
*/
|
|
108158
|
+
orderBy?: LLMPromptOrderByWithRelationInput | LLMPromptOrderByWithRelationInput[]
|
|
108159
|
+
/**
|
|
108160
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
108161
|
+
*
|
|
108162
|
+
* Sets the start position
|
|
108163
|
+
*/
|
|
108164
|
+
cursor?: LLMPromptWhereUniqueInput
|
|
108165
|
+
/**
|
|
108166
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
108167
|
+
*
|
|
108168
|
+
* Take `±n` LLMPrompts from the position of the cursor.
|
|
108169
|
+
*/
|
|
108170
|
+
take?: number
|
|
108171
|
+
/**
|
|
108172
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
108173
|
+
*
|
|
108174
|
+
* Skip the first `n` LLMPrompts.
|
|
108175
|
+
*/
|
|
108176
|
+
skip?: number
|
|
108177
|
+
/**
|
|
108178
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
108179
|
+
*
|
|
108180
|
+
* Count returned LLMPrompts
|
|
108181
|
+
**/
|
|
108182
|
+
_count?: true | LLMPromptCountAggregateInputType
|
|
108183
|
+
/**
|
|
108184
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
108185
|
+
*
|
|
108186
|
+
* Select which fields to average
|
|
108187
|
+
**/
|
|
108188
|
+
_avg?: LLMPromptAvgAggregateInputType
|
|
108189
|
+
/**
|
|
108190
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
108191
|
+
*
|
|
108192
|
+
* Select which fields to sum
|
|
108193
|
+
**/
|
|
108194
|
+
_sum?: LLMPromptSumAggregateInputType
|
|
108195
|
+
/**
|
|
108196
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
108197
|
+
*
|
|
108198
|
+
* Select which fields to find the minimum value
|
|
108199
|
+
**/
|
|
108200
|
+
_min?: LLMPromptMinAggregateInputType
|
|
108201
|
+
/**
|
|
108202
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
108203
|
+
*
|
|
108204
|
+
* Select which fields to find the maximum value
|
|
108205
|
+
**/
|
|
108206
|
+
_max?: LLMPromptMaxAggregateInputType
|
|
108207
|
+
}
|
|
108208
|
+
|
|
108209
|
+
export type GetLLMPromptAggregateType<T extends LLMPromptAggregateArgs> = {
|
|
108210
|
+
[P in keyof T & keyof AggregateLLMPrompt]: P extends '_count' | 'count'
|
|
108211
|
+
? T[P] extends true
|
|
108212
|
+
? number
|
|
108213
|
+
: GetScalarType<T[P], AggregateLLMPrompt[P]>
|
|
108214
|
+
: GetScalarType<T[P], AggregateLLMPrompt[P]>
|
|
108215
|
+
}
|
|
108216
|
+
|
|
108217
|
+
|
|
108218
|
+
|
|
108219
|
+
|
|
108220
|
+
export type LLMPromptGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
108221
|
+
where?: LLMPromptWhereInput
|
|
108222
|
+
orderBy?: LLMPromptOrderByWithAggregationInput | LLMPromptOrderByWithAggregationInput[]
|
|
108223
|
+
by: LLMPromptScalarFieldEnum[] | LLMPromptScalarFieldEnum
|
|
108224
|
+
having?: LLMPromptScalarWhereWithAggregatesInput
|
|
108225
|
+
take?: number
|
|
108226
|
+
skip?: number
|
|
108227
|
+
_count?: LLMPromptCountAggregateInputType | true
|
|
108228
|
+
_avg?: LLMPromptAvgAggregateInputType
|
|
108229
|
+
_sum?: LLMPromptSumAggregateInputType
|
|
108230
|
+
_min?: LLMPromptMinAggregateInputType
|
|
108231
|
+
_max?: LLMPromptMaxAggregateInputType
|
|
108232
|
+
}
|
|
108233
|
+
|
|
108234
|
+
export type LLMPromptGroupByOutputType = {
|
|
108235
|
+
id: string
|
|
108236
|
+
collectionName: string
|
|
108237
|
+
version: number
|
|
108238
|
+
steps: JsonValue
|
|
108239
|
+
published: boolean
|
|
108240
|
+
extraData: JsonValue
|
|
108241
|
+
editorUserId: number | null
|
|
108242
|
+
createdAt: Date
|
|
108243
|
+
updatedAt: Date
|
|
108244
|
+
_count: LLMPromptCountAggregateOutputType | null
|
|
108245
|
+
_avg: LLMPromptAvgAggregateOutputType | null
|
|
108246
|
+
_sum: LLMPromptSumAggregateOutputType | null
|
|
108247
|
+
_min: LLMPromptMinAggregateOutputType | null
|
|
108248
|
+
_max: LLMPromptMaxAggregateOutputType | null
|
|
108249
|
+
}
|
|
108250
|
+
|
|
108251
|
+
type GetLLMPromptGroupByPayload<T extends LLMPromptGroupByArgs> = Prisma.PrismaPromise<
|
|
108252
|
+
Array<
|
|
108253
|
+
PickEnumerable<LLMPromptGroupByOutputType, T['by']> &
|
|
108254
|
+
{
|
|
108255
|
+
[P in ((keyof T) & (keyof LLMPromptGroupByOutputType))]: P extends '_count'
|
|
108256
|
+
? T[P] extends boolean
|
|
108257
|
+
? number
|
|
108258
|
+
: GetScalarType<T[P], LLMPromptGroupByOutputType[P]>
|
|
108259
|
+
: GetScalarType<T[P], LLMPromptGroupByOutputType[P]>
|
|
108260
|
+
}
|
|
108261
|
+
>
|
|
108262
|
+
>
|
|
108263
|
+
|
|
108264
|
+
|
|
108265
|
+
export type LLMPromptSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
108266
|
+
id?: boolean
|
|
108267
|
+
collectionName?: boolean
|
|
108268
|
+
version?: boolean
|
|
108269
|
+
steps?: boolean
|
|
108270
|
+
published?: boolean
|
|
108271
|
+
extraData?: boolean
|
|
108272
|
+
editorUserId?: boolean
|
|
108273
|
+
createdAt?: boolean
|
|
108274
|
+
updatedAt?: boolean
|
|
108275
|
+
}, ExtArgs["result"]["lLMPrompt"]>
|
|
108276
|
+
|
|
108277
|
+
export type LLMPromptSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
108278
|
+
id?: boolean
|
|
108279
|
+
collectionName?: boolean
|
|
108280
|
+
version?: boolean
|
|
108281
|
+
steps?: boolean
|
|
108282
|
+
published?: boolean
|
|
108283
|
+
extraData?: boolean
|
|
108284
|
+
editorUserId?: boolean
|
|
108285
|
+
createdAt?: boolean
|
|
108286
|
+
updatedAt?: boolean
|
|
108287
|
+
}, ExtArgs["result"]["lLMPrompt"]>
|
|
108288
|
+
|
|
108289
|
+
export type LLMPromptSelectScalar = {
|
|
108290
|
+
id?: boolean
|
|
108291
|
+
collectionName?: boolean
|
|
108292
|
+
version?: boolean
|
|
108293
|
+
steps?: boolean
|
|
108294
|
+
published?: boolean
|
|
108295
|
+
extraData?: boolean
|
|
108296
|
+
editorUserId?: boolean
|
|
108297
|
+
createdAt?: boolean
|
|
108298
|
+
updatedAt?: boolean
|
|
108299
|
+
}
|
|
108300
|
+
|
|
108301
|
+
|
|
108302
|
+
export type $LLMPromptPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
108303
|
+
name: "LLMPrompt"
|
|
108304
|
+
objects: {}
|
|
108305
|
+
scalars: $Extensions.GetPayloadResult<{
|
|
108306
|
+
id: string
|
|
108307
|
+
collectionName: string
|
|
108308
|
+
version: number
|
|
108309
|
+
steps: Prisma.JsonValue
|
|
108310
|
+
published: boolean
|
|
108311
|
+
extraData: Prisma.JsonValue
|
|
108312
|
+
editorUserId: number | null
|
|
108313
|
+
createdAt: Date
|
|
108314
|
+
updatedAt: Date
|
|
108315
|
+
}, ExtArgs["result"]["lLMPrompt"]>
|
|
108316
|
+
composites: {}
|
|
108317
|
+
}
|
|
108318
|
+
|
|
108319
|
+
type LLMPromptGetPayload<S extends boolean | null | undefined | LLMPromptDefaultArgs> = $Result.GetResult<Prisma.$LLMPromptPayload, S>
|
|
108320
|
+
|
|
108321
|
+
type LLMPromptCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
108322
|
+
Omit<LLMPromptFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
108323
|
+
select?: LLMPromptCountAggregateInputType | true
|
|
108324
|
+
}
|
|
108325
|
+
|
|
108326
|
+
export interface LLMPromptDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
108327
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['LLMPrompt'], meta: { name: 'LLMPrompt' } }
|
|
108328
|
+
/**
|
|
108329
|
+
* Find zero or one LLMPrompt that matches the filter.
|
|
108330
|
+
* @param {LLMPromptFindUniqueArgs} args - Arguments to find a LLMPrompt
|
|
108331
|
+
* @example
|
|
108332
|
+
* // Get one LLMPrompt
|
|
108333
|
+
* const lLMPrompt = await prisma.lLMPrompt.findUnique({
|
|
108334
|
+
* where: {
|
|
108335
|
+
* // ... provide filter here
|
|
108336
|
+
* }
|
|
108337
|
+
* })
|
|
108338
|
+
*/
|
|
108339
|
+
findUnique<T extends LLMPromptFindUniqueArgs>(args: SelectSubset<T, LLMPromptFindUniqueArgs<ExtArgs>>): Prisma__LLMPromptClient<$Result.GetResult<Prisma.$LLMPromptPayload<ExtArgs>, T, "findUnique"> | null, null, ExtArgs>
|
|
108340
|
+
|
|
108341
|
+
/**
|
|
108342
|
+
* Find one LLMPrompt that matches the filter or throw an error with `error.code='P2025'`
|
|
108343
|
+
* if no matches were found.
|
|
108344
|
+
* @param {LLMPromptFindUniqueOrThrowArgs} args - Arguments to find a LLMPrompt
|
|
108345
|
+
* @example
|
|
108346
|
+
* // Get one LLMPrompt
|
|
108347
|
+
* const lLMPrompt = await prisma.lLMPrompt.findUniqueOrThrow({
|
|
108348
|
+
* where: {
|
|
108349
|
+
* // ... provide filter here
|
|
108350
|
+
* }
|
|
108351
|
+
* })
|
|
108352
|
+
*/
|
|
108353
|
+
findUniqueOrThrow<T extends LLMPromptFindUniqueOrThrowArgs>(args: SelectSubset<T, LLMPromptFindUniqueOrThrowArgs<ExtArgs>>): Prisma__LLMPromptClient<$Result.GetResult<Prisma.$LLMPromptPayload<ExtArgs>, T, "findUniqueOrThrow">, never, ExtArgs>
|
|
108354
|
+
|
|
108355
|
+
/**
|
|
108356
|
+
* Find the first LLMPrompt that matches the filter.
|
|
108357
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
108358
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
108359
|
+
* @param {LLMPromptFindFirstArgs} args - Arguments to find a LLMPrompt
|
|
108360
|
+
* @example
|
|
108361
|
+
* // Get one LLMPrompt
|
|
108362
|
+
* const lLMPrompt = await prisma.lLMPrompt.findFirst({
|
|
108363
|
+
* where: {
|
|
108364
|
+
* // ... provide filter here
|
|
108365
|
+
* }
|
|
108366
|
+
* })
|
|
108367
|
+
*/
|
|
108368
|
+
findFirst<T extends LLMPromptFindFirstArgs>(args?: SelectSubset<T, LLMPromptFindFirstArgs<ExtArgs>>): Prisma__LLMPromptClient<$Result.GetResult<Prisma.$LLMPromptPayload<ExtArgs>, T, "findFirst"> | null, null, ExtArgs>
|
|
108369
|
+
|
|
108370
|
+
/**
|
|
108371
|
+
* Find the first LLMPrompt that matches the filter or
|
|
108372
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
108373
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
108374
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
108375
|
+
* @param {LLMPromptFindFirstOrThrowArgs} args - Arguments to find a LLMPrompt
|
|
108376
|
+
* @example
|
|
108377
|
+
* // Get one LLMPrompt
|
|
108378
|
+
* const lLMPrompt = await prisma.lLMPrompt.findFirstOrThrow({
|
|
108379
|
+
* where: {
|
|
108380
|
+
* // ... provide filter here
|
|
108381
|
+
* }
|
|
108382
|
+
* })
|
|
108383
|
+
*/
|
|
108384
|
+
findFirstOrThrow<T extends LLMPromptFindFirstOrThrowArgs>(args?: SelectSubset<T, LLMPromptFindFirstOrThrowArgs<ExtArgs>>): Prisma__LLMPromptClient<$Result.GetResult<Prisma.$LLMPromptPayload<ExtArgs>, T, "findFirstOrThrow">, never, ExtArgs>
|
|
108385
|
+
|
|
108386
|
+
/**
|
|
108387
|
+
* Find zero or more LLMPrompts that matches the filter.
|
|
108388
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
108389
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
108390
|
+
* @param {LLMPromptFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
108391
|
+
* @example
|
|
108392
|
+
* // Get all LLMPrompts
|
|
108393
|
+
* const lLMPrompts = await prisma.lLMPrompt.findMany()
|
|
108394
|
+
*
|
|
108395
|
+
* // Get first 10 LLMPrompts
|
|
108396
|
+
* const lLMPrompts = await prisma.lLMPrompt.findMany({ take: 10 })
|
|
108397
|
+
*
|
|
108398
|
+
* // Only select the `id`
|
|
108399
|
+
* const lLMPromptWithIdOnly = await prisma.lLMPrompt.findMany({ select: { id: true } })
|
|
108400
|
+
*
|
|
108401
|
+
*/
|
|
108402
|
+
findMany<T extends LLMPromptFindManyArgs>(args?: SelectSubset<T, LLMPromptFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$LLMPromptPayload<ExtArgs>, T, "findMany">>
|
|
108403
|
+
|
|
108404
|
+
/**
|
|
108405
|
+
* Create a LLMPrompt.
|
|
108406
|
+
* @param {LLMPromptCreateArgs} args - Arguments to create a LLMPrompt.
|
|
108407
|
+
* @example
|
|
108408
|
+
* // Create one LLMPrompt
|
|
108409
|
+
* const LLMPrompt = await prisma.lLMPrompt.create({
|
|
108410
|
+
* data: {
|
|
108411
|
+
* // ... data to create a LLMPrompt
|
|
108412
|
+
* }
|
|
108413
|
+
* })
|
|
108414
|
+
*
|
|
108415
|
+
*/
|
|
108416
|
+
create<T extends LLMPromptCreateArgs>(args: SelectSubset<T, LLMPromptCreateArgs<ExtArgs>>): Prisma__LLMPromptClient<$Result.GetResult<Prisma.$LLMPromptPayload<ExtArgs>, T, "create">, never, ExtArgs>
|
|
108417
|
+
|
|
108418
|
+
/**
|
|
108419
|
+
* Create many LLMPrompts.
|
|
108420
|
+
* @param {LLMPromptCreateManyArgs} args - Arguments to create many LLMPrompts.
|
|
108421
|
+
* @example
|
|
108422
|
+
* // Create many LLMPrompts
|
|
108423
|
+
* const lLMPrompt = await prisma.lLMPrompt.createMany({
|
|
108424
|
+
* data: [
|
|
108425
|
+
* // ... provide data here
|
|
108426
|
+
* ]
|
|
108427
|
+
* })
|
|
108428
|
+
*
|
|
108429
|
+
*/
|
|
108430
|
+
createMany<T extends LLMPromptCreateManyArgs>(args?: SelectSubset<T, LLMPromptCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
108431
|
+
|
|
108432
|
+
/**
|
|
108433
|
+
* Create many LLMPrompts and returns the data saved in the database.
|
|
108434
|
+
* @param {LLMPromptCreateManyAndReturnArgs} args - Arguments to create many LLMPrompts.
|
|
108435
|
+
* @example
|
|
108436
|
+
* // Create many LLMPrompts
|
|
108437
|
+
* const lLMPrompt = await prisma.lLMPrompt.createManyAndReturn({
|
|
108438
|
+
* data: [
|
|
108439
|
+
* // ... provide data here
|
|
108440
|
+
* ]
|
|
108441
|
+
* })
|
|
108442
|
+
*
|
|
108443
|
+
* // Create many LLMPrompts and only return the `id`
|
|
108444
|
+
* const lLMPromptWithIdOnly = await prisma.lLMPrompt.createManyAndReturn({
|
|
108445
|
+
* select: { id: true },
|
|
108446
|
+
* data: [
|
|
108447
|
+
* // ... provide data here
|
|
108448
|
+
* ]
|
|
108449
|
+
* })
|
|
108450
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
108451
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
108452
|
+
*
|
|
108453
|
+
*/
|
|
108454
|
+
createManyAndReturn<T extends LLMPromptCreateManyAndReturnArgs>(args?: SelectSubset<T, LLMPromptCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$LLMPromptPayload<ExtArgs>, T, "createManyAndReturn">>
|
|
108455
|
+
|
|
108456
|
+
/**
|
|
108457
|
+
* Delete a LLMPrompt.
|
|
108458
|
+
* @param {LLMPromptDeleteArgs} args - Arguments to delete one LLMPrompt.
|
|
108459
|
+
* @example
|
|
108460
|
+
* // Delete one LLMPrompt
|
|
108461
|
+
* const LLMPrompt = await prisma.lLMPrompt.delete({
|
|
108462
|
+
* where: {
|
|
108463
|
+
* // ... filter to delete one LLMPrompt
|
|
108464
|
+
* }
|
|
108465
|
+
* })
|
|
108466
|
+
*
|
|
108467
|
+
*/
|
|
108468
|
+
delete<T extends LLMPromptDeleteArgs>(args: SelectSubset<T, LLMPromptDeleteArgs<ExtArgs>>): Prisma__LLMPromptClient<$Result.GetResult<Prisma.$LLMPromptPayload<ExtArgs>, T, "delete">, never, ExtArgs>
|
|
108469
|
+
|
|
108470
|
+
/**
|
|
108471
|
+
* Update one LLMPrompt.
|
|
108472
|
+
* @param {LLMPromptUpdateArgs} args - Arguments to update one LLMPrompt.
|
|
108473
|
+
* @example
|
|
108474
|
+
* // Update one LLMPrompt
|
|
108475
|
+
* const lLMPrompt = await prisma.lLMPrompt.update({
|
|
108476
|
+
* where: {
|
|
108477
|
+
* // ... provide filter here
|
|
108478
|
+
* },
|
|
108479
|
+
* data: {
|
|
108480
|
+
* // ... provide data here
|
|
108481
|
+
* }
|
|
108482
|
+
* })
|
|
108483
|
+
*
|
|
108484
|
+
*/
|
|
108485
|
+
update<T extends LLMPromptUpdateArgs>(args: SelectSubset<T, LLMPromptUpdateArgs<ExtArgs>>): Prisma__LLMPromptClient<$Result.GetResult<Prisma.$LLMPromptPayload<ExtArgs>, T, "update">, never, ExtArgs>
|
|
108486
|
+
|
|
108487
|
+
/**
|
|
108488
|
+
* Delete zero or more LLMPrompts.
|
|
108489
|
+
* @param {LLMPromptDeleteManyArgs} args - Arguments to filter LLMPrompts to delete.
|
|
108490
|
+
* @example
|
|
108491
|
+
* // Delete a few LLMPrompts
|
|
108492
|
+
* const { count } = await prisma.lLMPrompt.deleteMany({
|
|
108493
|
+
* where: {
|
|
108494
|
+
* // ... provide filter here
|
|
108495
|
+
* }
|
|
108496
|
+
* })
|
|
108497
|
+
*
|
|
108498
|
+
*/
|
|
108499
|
+
deleteMany<T extends LLMPromptDeleteManyArgs>(args?: SelectSubset<T, LLMPromptDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
108500
|
+
|
|
108501
|
+
/**
|
|
108502
|
+
* Update zero or more LLMPrompts.
|
|
108503
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
108504
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
108505
|
+
* @param {LLMPromptUpdateManyArgs} args - Arguments to update one or more rows.
|
|
108506
|
+
* @example
|
|
108507
|
+
* // Update many LLMPrompts
|
|
108508
|
+
* const lLMPrompt = await prisma.lLMPrompt.updateMany({
|
|
108509
|
+
* where: {
|
|
108510
|
+
* // ... provide filter here
|
|
108511
|
+
* },
|
|
108512
|
+
* data: {
|
|
108513
|
+
* // ... provide data here
|
|
108514
|
+
* }
|
|
108515
|
+
* })
|
|
108516
|
+
*
|
|
108517
|
+
*/
|
|
108518
|
+
updateMany<T extends LLMPromptUpdateManyArgs>(args: SelectSubset<T, LLMPromptUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
108519
|
+
|
|
108520
|
+
/**
|
|
108521
|
+
* Create or update one LLMPrompt.
|
|
108522
|
+
* @param {LLMPromptUpsertArgs} args - Arguments to update or create a LLMPrompt.
|
|
108523
|
+
* @example
|
|
108524
|
+
* // Update or create a LLMPrompt
|
|
108525
|
+
* const lLMPrompt = await prisma.lLMPrompt.upsert({
|
|
108526
|
+
* create: {
|
|
108527
|
+
* // ... data to create a LLMPrompt
|
|
108528
|
+
* },
|
|
108529
|
+
* update: {
|
|
108530
|
+
* // ... in case it already exists, update
|
|
108531
|
+
* },
|
|
108532
|
+
* where: {
|
|
108533
|
+
* // ... the filter for the LLMPrompt we want to update
|
|
108534
|
+
* }
|
|
108535
|
+
* })
|
|
108536
|
+
*/
|
|
108537
|
+
upsert<T extends LLMPromptUpsertArgs>(args: SelectSubset<T, LLMPromptUpsertArgs<ExtArgs>>): Prisma__LLMPromptClient<$Result.GetResult<Prisma.$LLMPromptPayload<ExtArgs>, T, "upsert">, never, ExtArgs>
|
|
108538
|
+
|
|
108539
|
+
|
|
108540
|
+
/**
|
|
108541
|
+
* Count the number of LLMPrompts.
|
|
108542
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
108543
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
108544
|
+
* @param {LLMPromptCountArgs} args - Arguments to filter LLMPrompts to count.
|
|
108545
|
+
* @example
|
|
108546
|
+
* // Count the number of LLMPrompts
|
|
108547
|
+
* const count = await prisma.lLMPrompt.count({
|
|
108548
|
+
* where: {
|
|
108549
|
+
* // ... the filter for the LLMPrompts we want to count
|
|
108550
|
+
* }
|
|
108551
|
+
* })
|
|
108552
|
+
**/
|
|
108553
|
+
count<T extends LLMPromptCountArgs>(
|
|
108554
|
+
args?: Subset<T, LLMPromptCountArgs>,
|
|
108555
|
+
): Prisma.PrismaPromise<
|
|
108556
|
+
T extends $Utils.Record<'select', any>
|
|
108557
|
+
? T['select'] extends true
|
|
108558
|
+
? number
|
|
108559
|
+
: GetScalarType<T['select'], LLMPromptCountAggregateOutputType>
|
|
108560
|
+
: number
|
|
108561
|
+
>
|
|
108562
|
+
|
|
108563
|
+
/**
|
|
108564
|
+
* Allows you to perform aggregations operations on a LLMPrompt.
|
|
108565
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
108566
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
108567
|
+
* @param {LLMPromptAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
108568
|
+
* @example
|
|
108569
|
+
* // Ordered by age ascending
|
|
108570
|
+
* // Where email contains prisma.io
|
|
108571
|
+
* // Limited to the 10 users
|
|
108572
|
+
* const aggregations = await prisma.user.aggregate({
|
|
108573
|
+
* _avg: {
|
|
108574
|
+
* age: true,
|
|
108575
|
+
* },
|
|
108576
|
+
* where: {
|
|
108577
|
+
* email: {
|
|
108578
|
+
* contains: "prisma.io",
|
|
108579
|
+
* },
|
|
108580
|
+
* },
|
|
108581
|
+
* orderBy: {
|
|
108582
|
+
* age: "asc",
|
|
108583
|
+
* },
|
|
108584
|
+
* take: 10,
|
|
108585
|
+
* })
|
|
108586
|
+
**/
|
|
108587
|
+
aggregate<T extends LLMPromptAggregateArgs>(args: Subset<T, LLMPromptAggregateArgs>): Prisma.PrismaPromise<GetLLMPromptAggregateType<T>>
|
|
108588
|
+
|
|
108589
|
+
/**
|
|
108590
|
+
* Group by LLMPrompt.
|
|
108591
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
108592
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
108593
|
+
* @param {LLMPromptGroupByArgs} args - Group by arguments.
|
|
108594
|
+
* @example
|
|
108595
|
+
* // Group by city, order by createdAt, get count
|
|
108596
|
+
* const result = await prisma.user.groupBy({
|
|
108597
|
+
* by: ['city', 'createdAt'],
|
|
108598
|
+
* orderBy: {
|
|
108599
|
+
* createdAt: true
|
|
108600
|
+
* },
|
|
108601
|
+
* _count: {
|
|
108602
|
+
* _all: true
|
|
108603
|
+
* },
|
|
108604
|
+
* })
|
|
108605
|
+
*
|
|
108606
|
+
**/
|
|
108607
|
+
groupBy<
|
|
108608
|
+
T extends LLMPromptGroupByArgs,
|
|
108609
|
+
HasSelectOrTake extends Or<
|
|
108610
|
+
Extends<'skip', Keys<T>>,
|
|
108611
|
+
Extends<'take', Keys<T>>
|
|
108612
|
+
>,
|
|
108613
|
+
OrderByArg extends True extends HasSelectOrTake
|
|
108614
|
+
? { orderBy: LLMPromptGroupByArgs['orderBy'] }
|
|
108615
|
+
: { orderBy?: LLMPromptGroupByArgs['orderBy'] },
|
|
108616
|
+
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
108617
|
+
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
108618
|
+
ByValid extends Has<ByFields, OrderFields>,
|
|
108619
|
+
HavingFields extends GetHavingFields<T['having']>,
|
|
108620
|
+
HavingValid extends Has<ByFields, HavingFields>,
|
|
108621
|
+
ByEmpty extends T['by'] extends never[] ? True : False,
|
|
108622
|
+
InputErrors extends ByEmpty extends True
|
|
108623
|
+
? `Error: "by" must not be empty.`
|
|
108624
|
+
: HavingValid extends False
|
|
108625
|
+
? {
|
|
108626
|
+
[P in HavingFields]: P extends ByFields
|
|
108627
|
+
? never
|
|
108628
|
+
: P extends string
|
|
108629
|
+
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
|
108630
|
+
: [
|
|
108631
|
+
Error,
|
|
108632
|
+
'Field ',
|
|
108633
|
+
P,
|
|
108634
|
+
` in "having" needs to be provided in "by"`,
|
|
108635
|
+
]
|
|
108636
|
+
}[HavingFields]
|
|
108637
|
+
: 'take' extends Keys<T>
|
|
108638
|
+
? 'orderBy' extends Keys<T>
|
|
108639
|
+
? ByValid extends True
|
|
108640
|
+
? {}
|
|
108641
|
+
: {
|
|
108642
|
+
[P in OrderFields]: P extends ByFields
|
|
108643
|
+
? never
|
|
108644
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
108645
|
+
}[OrderFields]
|
|
108646
|
+
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
|
108647
|
+
: 'skip' extends Keys<T>
|
|
108648
|
+
? 'orderBy' extends Keys<T>
|
|
108649
|
+
? ByValid extends True
|
|
108650
|
+
? {}
|
|
108651
|
+
: {
|
|
108652
|
+
[P in OrderFields]: P extends ByFields
|
|
108653
|
+
? never
|
|
108654
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
108655
|
+
}[OrderFields]
|
|
108656
|
+
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
|
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
|
+
>(args: SubsetIntersection<T, LLMPromptGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetLLMPromptGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
108665
|
+
/**
|
|
108666
|
+
* Fields of the LLMPrompt model
|
|
108667
|
+
*/
|
|
108668
|
+
readonly fields: LLMPromptFieldRefs;
|
|
108669
|
+
}
|
|
108670
|
+
|
|
108671
|
+
/**
|
|
108672
|
+
* The delegate class that acts as a "Promise-like" for LLMPrompt.
|
|
108673
|
+
* Why is this prefixed with `Prisma__`?
|
|
108674
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
108675
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
108676
|
+
*/
|
|
108677
|
+
export interface Prisma__LLMPromptClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
108678
|
+
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
108679
|
+
/**
|
|
108680
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
108681
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
108682
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
108683
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
108684
|
+
*/
|
|
108685
|
+
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>
|
|
108686
|
+
/**
|
|
108687
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
108688
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
108689
|
+
* @returns A Promise for the completion of the callback.
|
|
108690
|
+
*/
|
|
108691
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>
|
|
108692
|
+
/**
|
|
108693
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
108694
|
+
* resolved value cannot be modified from the callback.
|
|
108695
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
108696
|
+
* @returns A Promise for the completion of the callback.
|
|
108697
|
+
*/
|
|
108698
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>
|
|
108699
|
+
}
|
|
108700
|
+
|
|
108701
|
+
|
|
108702
|
+
|
|
108703
|
+
|
|
108704
|
+
/**
|
|
108705
|
+
* Fields of the LLMPrompt model
|
|
107606
108706
|
*/
|
|
107607
|
-
interface
|
|
107608
|
-
readonly id: FieldRef<"
|
|
107609
|
-
readonly
|
|
107610
|
-
readonly
|
|
107611
|
-
readonly
|
|
107612
|
-
readonly
|
|
107613
|
-
readonly
|
|
107614
|
-
readonly
|
|
107615
|
-
readonly
|
|
108707
|
+
interface LLMPromptFieldRefs {
|
|
108708
|
+
readonly id: FieldRef<"LLMPrompt", 'String'>
|
|
108709
|
+
readonly collectionName: FieldRef<"LLMPrompt", 'String'>
|
|
108710
|
+
readonly version: FieldRef<"LLMPrompt", 'Int'>
|
|
108711
|
+
readonly steps: FieldRef<"LLMPrompt", 'Json'>
|
|
108712
|
+
readonly published: FieldRef<"LLMPrompt", 'Boolean'>
|
|
108713
|
+
readonly extraData: FieldRef<"LLMPrompt", 'Json'>
|
|
108714
|
+
readonly editorUserId: FieldRef<"LLMPrompt", 'Int'>
|
|
108715
|
+
readonly createdAt: FieldRef<"LLMPrompt", 'DateTime'>
|
|
108716
|
+
readonly updatedAt: FieldRef<"LLMPrompt", 'DateTime'>
|
|
107616
108717
|
}
|
|
107617
108718
|
|
|
107618
108719
|
|
|
107619
108720
|
// Custom InputTypes
|
|
107620
108721
|
/**
|
|
107621
|
-
*
|
|
108722
|
+
* LLMPrompt findUnique
|
|
107622
108723
|
*/
|
|
107623
|
-
export type
|
|
108724
|
+
export type LLMPromptFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107624
108725
|
/**
|
|
107625
|
-
* Select specific fields to fetch from the
|
|
108726
|
+
* Select specific fields to fetch from the LLMPrompt
|
|
107626
108727
|
*/
|
|
107627
|
-
select?:
|
|
107628
|
-
/**
|
|
107629
|
-
* Choose, which related nodes to fetch as well
|
|
107630
|
-
*/
|
|
107631
|
-
include?: SequenceOutboundReplyEmailInclude<ExtArgs> | null
|
|
108728
|
+
select?: LLMPromptSelect<ExtArgs> | null
|
|
107632
108729
|
/**
|
|
107633
|
-
* Filter, which
|
|
108730
|
+
* Filter, which LLMPrompt to fetch.
|
|
107634
108731
|
*/
|
|
107635
|
-
where:
|
|
108732
|
+
where: LLMPromptWhereUniqueInput
|
|
107636
108733
|
}
|
|
107637
108734
|
|
|
107638
108735
|
/**
|
|
107639
|
-
*
|
|
108736
|
+
* LLMPrompt findUniqueOrThrow
|
|
107640
108737
|
*/
|
|
107641
|
-
export type
|
|
108738
|
+
export type LLMPromptFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107642
108739
|
/**
|
|
107643
|
-
* Select specific fields to fetch from the
|
|
107644
|
-
*/
|
|
107645
|
-
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
107646
|
-
/**
|
|
107647
|
-
* Choose, which related nodes to fetch as well
|
|
108740
|
+
* Select specific fields to fetch from the LLMPrompt
|
|
107648
108741
|
*/
|
|
107649
|
-
|
|
108742
|
+
select?: LLMPromptSelect<ExtArgs> | null
|
|
107650
108743
|
/**
|
|
107651
|
-
* Filter, which
|
|
108744
|
+
* Filter, which LLMPrompt to fetch.
|
|
107652
108745
|
*/
|
|
107653
|
-
where:
|
|
108746
|
+
where: LLMPromptWhereUniqueInput
|
|
107654
108747
|
}
|
|
107655
108748
|
|
|
107656
108749
|
/**
|
|
107657
|
-
*
|
|
108750
|
+
* LLMPrompt findFirst
|
|
107658
108751
|
*/
|
|
107659
|
-
export type
|
|
107660
|
-
/**
|
|
107661
|
-
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
107662
|
-
*/
|
|
107663
|
-
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
108752
|
+
export type LLMPromptFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107664
108753
|
/**
|
|
107665
|
-
*
|
|
108754
|
+
* Select specific fields to fetch from the LLMPrompt
|
|
107666
108755
|
*/
|
|
107667
|
-
|
|
108756
|
+
select?: LLMPromptSelect<ExtArgs> | null
|
|
107668
108757
|
/**
|
|
107669
|
-
* Filter, which
|
|
108758
|
+
* Filter, which LLMPrompt to fetch.
|
|
107670
108759
|
*/
|
|
107671
|
-
where?:
|
|
108760
|
+
where?: LLMPromptWhereInput
|
|
107672
108761
|
/**
|
|
107673
108762
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
107674
108763
|
*
|
|
107675
|
-
* Determine the order of
|
|
108764
|
+
* Determine the order of LLMPrompts to fetch.
|
|
107676
108765
|
*/
|
|
107677
|
-
orderBy?:
|
|
108766
|
+
orderBy?: LLMPromptOrderByWithRelationInput | LLMPromptOrderByWithRelationInput[]
|
|
107678
108767
|
/**
|
|
107679
108768
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
107680
108769
|
*
|
|
107681
|
-
* Sets the position for searching for
|
|
108770
|
+
* Sets the position for searching for LLMPrompts.
|
|
107682
108771
|
*/
|
|
107683
|
-
cursor?:
|
|
108772
|
+
cursor?: LLMPromptWhereUniqueInput
|
|
107684
108773
|
/**
|
|
107685
108774
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
107686
108775
|
*
|
|
107687
|
-
* Take `±n`
|
|
108776
|
+
* Take `±n` LLMPrompts from the position of the cursor.
|
|
107688
108777
|
*/
|
|
107689
108778
|
take?: number
|
|
107690
108779
|
/**
|
|
107691
108780
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
107692
108781
|
*
|
|
107693
|
-
* Skip the first `n`
|
|
108782
|
+
* Skip the first `n` LLMPrompts.
|
|
107694
108783
|
*/
|
|
107695
108784
|
skip?: number
|
|
107696
108785
|
/**
|
|
107697
108786
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
107698
108787
|
*
|
|
107699
|
-
* Filter by unique combinations of
|
|
108788
|
+
* Filter by unique combinations of LLMPrompts.
|
|
107700
108789
|
*/
|
|
107701
|
-
distinct?:
|
|
108790
|
+
distinct?: LLMPromptScalarFieldEnum | LLMPromptScalarFieldEnum[]
|
|
107702
108791
|
}
|
|
107703
108792
|
|
|
107704
108793
|
/**
|
|
107705
|
-
*
|
|
108794
|
+
* LLMPrompt findFirstOrThrow
|
|
107706
108795
|
*/
|
|
107707
|
-
export type
|
|
107708
|
-
/**
|
|
107709
|
-
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
107710
|
-
*/
|
|
107711
|
-
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
108796
|
+
export type LLMPromptFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107712
108797
|
/**
|
|
107713
|
-
*
|
|
108798
|
+
* Select specific fields to fetch from the LLMPrompt
|
|
107714
108799
|
*/
|
|
107715
|
-
|
|
108800
|
+
select?: LLMPromptSelect<ExtArgs> | null
|
|
107716
108801
|
/**
|
|
107717
|
-
* Filter, which
|
|
108802
|
+
* Filter, which LLMPrompt to fetch.
|
|
107718
108803
|
*/
|
|
107719
|
-
where?:
|
|
108804
|
+
where?: LLMPromptWhereInput
|
|
107720
108805
|
/**
|
|
107721
108806
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
107722
108807
|
*
|
|
107723
|
-
* Determine the order of
|
|
108808
|
+
* Determine the order of LLMPrompts to fetch.
|
|
107724
108809
|
*/
|
|
107725
|
-
orderBy?:
|
|
108810
|
+
orderBy?: LLMPromptOrderByWithRelationInput | LLMPromptOrderByWithRelationInput[]
|
|
107726
108811
|
/**
|
|
107727
108812
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
107728
108813
|
*
|
|
107729
|
-
* Sets the position for searching for
|
|
108814
|
+
* Sets the position for searching for LLMPrompts.
|
|
107730
108815
|
*/
|
|
107731
|
-
cursor?:
|
|
108816
|
+
cursor?: LLMPromptWhereUniqueInput
|
|
107732
108817
|
/**
|
|
107733
108818
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
107734
108819
|
*
|
|
107735
|
-
* Take `±n`
|
|
108820
|
+
* Take `±n` LLMPrompts from the position of the cursor.
|
|
107736
108821
|
*/
|
|
107737
108822
|
take?: number
|
|
107738
108823
|
/**
|
|
107739
108824
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
107740
108825
|
*
|
|
107741
|
-
* Skip the first `n`
|
|
108826
|
+
* Skip the first `n` LLMPrompts.
|
|
107742
108827
|
*/
|
|
107743
108828
|
skip?: number
|
|
107744
108829
|
/**
|
|
107745
108830
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
107746
108831
|
*
|
|
107747
|
-
* Filter by unique combinations of
|
|
108832
|
+
* Filter by unique combinations of LLMPrompts.
|
|
107748
108833
|
*/
|
|
107749
|
-
distinct?:
|
|
108834
|
+
distinct?: LLMPromptScalarFieldEnum | LLMPromptScalarFieldEnum[]
|
|
107750
108835
|
}
|
|
107751
108836
|
|
|
107752
108837
|
/**
|
|
107753
|
-
*
|
|
108838
|
+
* LLMPrompt findMany
|
|
107754
108839
|
*/
|
|
107755
|
-
export type
|
|
107756
|
-
/**
|
|
107757
|
-
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
107758
|
-
*/
|
|
107759
|
-
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
108840
|
+
export type LLMPromptFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107760
108841
|
/**
|
|
107761
|
-
*
|
|
108842
|
+
* Select specific fields to fetch from the LLMPrompt
|
|
107762
108843
|
*/
|
|
107763
|
-
|
|
108844
|
+
select?: LLMPromptSelect<ExtArgs> | null
|
|
107764
108845
|
/**
|
|
107765
|
-
* Filter, which
|
|
108846
|
+
* Filter, which LLMPrompts to fetch.
|
|
107766
108847
|
*/
|
|
107767
|
-
where?:
|
|
108848
|
+
where?: LLMPromptWhereInput
|
|
107768
108849
|
/**
|
|
107769
108850
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
107770
108851
|
*
|
|
107771
|
-
* Determine the order of
|
|
108852
|
+
* Determine the order of LLMPrompts to fetch.
|
|
107772
108853
|
*/
|
|
107773
|
-
orderBy?:
|
|
108854
|
+
orderBy?: LLMPromptOrderByWithRelationInput | LLMPromptOrderByWithRelationInput[]
|
|
107774
108855
|
/**
|
|
107775
108856
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
107776
108857
|
*
|
|
107777
|
-
* Sets the position for listing
|
|
108858
|
+
* Sets the position for listing LLMPrompts.
|
|
107778
108859
|
*/
|
|
107779
|
-
cursor?:
|
|
108860
|
+
cursor?: LLMPromptWhereUniqueInput
|
|
107780
108861
|
/**
|
|
107781
108862
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
107782
108863
|
*
|
|
107783
|
-
* Take `±n`
|
|
108864
|
+
* Take `±n` LLMPrompts from the position of the cursor.
|
|
107784
108865
|
*/
|
|
107785
108866
|
take?: number
|
|
107786
108867
|
/**
|
|
107787
108868
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
107788
108869
|
*
|
|
107789
|
-
* Skip the first `n`
|
|
108870
|
+
* Skip the first `n` LLMPrompts.
|
|
107790
108871
|
*/
|
|
107791
108872
|
skip?: number
|
|
107792
|
-
distinct?:
|
|
108873
|
+
distinct?: LLMPromptScalarFieldEnum | LLMPromptScalarFieldEnum[]
|
|
107793
108874
|
}
|
|
107794
108875
|
|
|
107795
108876
|
/**
|
|
107796
|
-
*
|
|
108877
|
+
* LLMPrompt create
|
|
107797
108878
|
*/
|
|
107798
|
-
export type
|
|
108879
|
+
export type LLMPromptCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107799
108880
|
/**
|
|
107800
|
-
* Select specific fields to fetch from the
|
|
107801
|
-
*/
|
|
107802
|
-
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
107803
|
-
/**
|
|
107804
|
-
* Choose, which related nodes to fetch as well
|
|
108881
|
+
* Select specific fields to fetch from the LLMPrompt
|
|
107805
108882
|
*/
|
|
107806
|
-
|
|
108883
|
+
select?: LLMPromptSelect<ExtArgs> | null
|
|
107807
108884
|
/**
|
|
107808
|
-
* The data needed to create a
|
|
108885
|
+
* The data needed to create a LLMPrompt.
|
|
107809
108886
|
*/
|
|
107810
|
-
data: XOR<
|
|
108887
|
+
data: XOR<LLMPromptCreateInput, LLMPromptUncheckedCreateInput>
|
|
107811
108888
|
}
|
|
107812
108889
|
|
|
107813
108890
|
/**
|
|
107814
|
-
*
|
|
108891
|
+
* LLMPrompt createMany
|
|
107815
108892
|
*/
|
|
107816
|
-
export type
|
|
108893
|
+
export type LLMPromptCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107817
108894
|
/**
|
|
107818
|
-
* The data used to create many
|
|
108895
|
+
* The data used to create many LLMPrompts.
|
|
107819
108896
|
*/
|
|
107820
|
-
data:
|
|
108897
|
+
data: LLMPromptCreateManyInput | LLMPromptCreateManyInput[]
|
|
107821
108898
|
skipDuplicates?: boolean
|
|
107822
108899
|
}
|
|
107823
108900
|
|
|
107824
108901
|
/**
|
|
107825
|
-
*
|
|
108902
|
+
* LLMPrompt createManyAndReturn
|
|
107826
108903
|
*/
|
|
107827
|
-
export type
|
|
108904
|
+
export type LLMPromptCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107828
108905
|
/**
|
|
107829
|
-
* Select specific fields to fetch from the
|
|
108906
|
+
* Select specific fields to fetch from the LLMPrompt
|
|
107830
108907
|
*/
|
|
107831
|
-
select?:
|
|
108908
|
+
select?: LLMPromptSelectCreateManyAndReturn<ExtArgs> | null
|
|
107832
108909
|
/**
|
|
107833
|
-
* The data used to create many
|
|
108910
|
+
* The data used to create many LLMPrompts.
|
|
107834
108911
|
*/
|
|
107835
|
-
data:
|
|
108912
|
+
data: LLMPromptCreateManyInput | LLMPromptCreateManyInput[]
|
|
107836
108913
|
skipDuplicates?: boolean
|
|
107837
|
-
/**
|
|
107838
|
-
* Choose, which related nodes to fetch as well
|
|
107839
|
-
*/
|
|
107840
|
-
include?: SequenceOutboundReplyEmailIncludeCreateManyAndReturn<ExtArgs> | null
|
|
107841
108914
|
}
|
|
107842
108915
|
|
|
107843
108916
|
/**
|
|
107844
|
-
*
|
|
108917
|
+
* LLMPrompt update
|
|
107845
108918
|
*/
|
|
107846
|
-
export type
|
|
108919
|
+
export type LLMPromptUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107847
108920
|
/**
|
|
107848
|
-
* Select specific fields to fetch from the
|
|
108921
|
+
* Select specific fields to fetch from the LLMPrompt
|
|
107849
108922
|
*/
|
|
107850
|
-
select?:
|
|
108923
|
+
select?: LLMPromptSelect<ExtArgs> | null
|
|
107851
108924
|
/**
|
|
107852
|
-
*
|
|
108925
|
+
* The data needed to update a LLMPrompt.
|
|
107853
108926
|
*/
|
|
107854
|
-
|
|
107855
|
-
/**
|
|
107856
|
-
* The data needed to update a SequenceOutboundReplyEmail.
|
|
107857
|
-
*/
|
|
107858
|
-
data: XOR<SequenceOutboundReplyEmailUpdateInput, SequenceOutboundReplyEmailUncheckedUpdateInput>
|
|
108927
|
+
data: XOR<LLMPromptUpdateInput, LLMPromptUncheckedUpdateInput>
|
|
107859
108928
|
/**
|
|
107860
|
-
* Choose, which
|
|
108929
|
+
* Choose, which LLMPrompt to update.
|
|
107861
108930
|
*/
|
|
107862
|
-
where:
|
|
108931
|
+
where: LLMPromptWhereUniqueInput
|
|
107863
108932
|
}
|
|
107864
108933
|
|
|
107865
108934
|
/**
|
|
107866
|
-
*
|
|
108935
|
+
* LLMPrompt updateMany
|
|
107867
108936
|
*/
|
|
107868
|
-
export type
|
|
108937
|
+
export type LLMPromptUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107869
108938
|
/**
|
|
107870
|
-
* The data used to update
|
|
108939
|
+
* The data used to update LLMPrompts.
|
|
107871
108940
|
*/
|
|
107872
|
-
data: XOR<
|
|
108941
|
+
data: XOR<LLMPromptUpdateManyMutationInput, LLMPromptUncheckedUpdateManyInput>
|
|
107873
108942
|
/**
|
|
107874
|
-
* Filter which
|
|
108943
|
+
* Filter which LLMPrompts to update
|
|
107875
108944
|
*/
|
|
107876
|
-
where?:
|
|
108945
|
+
where?: LLMPromptWhereInput
|
|
107877
108946
|
}
|
|
107878
108947
|
|
|
107879
108948
|
/**
|
|
107880
|
-
*
|
|
108949
|
+
* LLMPrompt upsert
|
|
107881
108950
|
*/
|
|
107882
|
-
export type
|
|
108951
|
+
export type LLMPromptUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107883
108952
|
/**
|
|
107884
|
-
* Select specific fields to fetch from the
|
|
108953
|
+
* Select specific fields to fetch from the LLMPrompt
|
|
107885
108954
|
*/
|
|
107886
|
-
select?:
|
|
108955
|
+
select?: LLMPromptSelect<ExtArgs> | null
|
|
107887
108956
|
/**
|
|
107888
|
-
*
|
|
108957
|
+
* The filter to search for the LLMPrompt to update in case it exists.
|
|
107889
108958
|
*/
|
|
107890
|
-
|
|
107891
|
-
/**
|
|
107892
|
-
* The filter to search for the SequenceOutboundReplyEmail to update in case it exists.
|
|
107893
|
-
*/
|
|
107894
|
-
where: SequenceOutboundReplyEmailWhereUniqueInput
|
|
108959
|
+
where: LLMPromptWhereUniqueInput
|
|
107895
108960
|
/**
|
|
107896
|
-
* In case the
|
|
108961
|
+
* In case the LLMPrompt found by the `where` argument doesn't exist, create a new LLMPrompt with this data.
|
|
107897
108962
|
*/
|
|
107898
|
-
create: XOR<
|
|
108963
|
+
create: XOR<LLMPromptCreateInput, LLMPromptUncheckedCreateInput>
|
|
107899
108964
|
/**
|
|
107900
|
-
* In case the
|
|
108965
|
+
* In case the LLMPrompt was found with the provided `where` argument, update it with this data.
|
|
107901
108966
|
*/
|
|
107902
|
-
update: XOR<
|
|
108967
|
+
update: XOR<LLMPromptUpdateInput, LLMPromptUncheckedUpdateInput>
|
|
107903
108968
|
}
|
|
107904
108969
|
|
|
107905
108970
|
/**
|
|
107906
|
-
*
|
|
108971
|
+
* LLMPrompt delete
|
|
107907
108972
|
*/
|
|
107908
|
-
export type
|
|
107909
|
-
/**
|
|
107910
|
-
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
107911
|
-
*/
|
|
107912
|
-
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
108973
|
+
export type LLMPromptDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107913
108974
|
/**
|
|
107914
|
-
*
|
|
108975
|
+
* Select specific fields to fetch from the LLMPrompt
|
|
107915
108976
|
*/
|
|
107916
|
-
|
|
107917
|
-
/**
|
|
107918
|
-
* Filter which SequenceOutboundReplyEmail to delete.
|
|
107919
|
-
*/
|
|
107920
|
-
where: SequenceOutboundReplyEmailWhereUniqueInput
|
|
107921
|
-
}
|
|
107922
|
-
|
|
107923
|
-
/**
|
|
107924
|
-
* SequenceOutboundReplyEmail deleteMany
|
|
107925
|
-
*/
|
|
107926
|
-
export type SequenceOutboundReplyEmailDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
108977
|
+
select?: LLMPromptSelect<ExtArgs> | null
|
|
107927
108978
|
/**
|
|
107928
|
-
* Filter which
|
|
108979
|
+
* Filter which LLMPrompt to delete.
|
|
107929
108980
|
*/
|
|
107930
|
-
where
|
|
108981
|
+
where: LLMPromptWhereUniqueInput
|
|
107931
108982
|
}
|
|
107932
108983
|
|
|
107933
108984
|
/**
|
|
107934
|
-
*
|
|
108985
|
+
* LLMPrompt deleteMany
|
|
107935
108986
|
*/
|
|
107936
|
-
export type
|
|
107937
|
-
/**
|
|
107938
|
-
* Select specific fields to fetch from the CreatorListItem
|
|
107939
|
-
*/
|
|
107940
|
-
select?: CreatorListItemSelect<ExtArgs> | null
|
|
108987
|
+
export type LLMPromptDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107941
108988
|
/**
|
|
107942
|
-
*
|
|
108989
|
+
* Filter which LLMPrompts to delete
|
|
107943
108990
|
*/
|
|
107944
|
-
|
|
107945
|
-
where?: CreatorListItemWhereInput
|
|
108991
|
+
where?: LLMPromptWhereInput
|
|
107946
108992
|
}
|
|
107947
108993
|
|
|
107948
108994
|
/**
|
|
107949
|
-
*
|
|
108995
|
+
* LLMPrompt without action
|
|
107950
108996
|
*/
|
|
107951
|
-
export type
|
|
107952
|
-
/**
|
|
107953
|
-
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
107954
|
-
*/
|
|
107955
|
-
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
108997
|
+
export type LLMPromptDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
107956
108998
|
/**
|
|
107957
|
-
*
|
|
108999
|
+
* Select specific fields to fetch from the LLMPrompt
|
|
107958
109000
|
*/
|
|
107959
|
-
|
|
109001
|
+
select?: LLMPromptSelect<ExtArgs> | null
|
|
107960
109002
|
}
|
|
107961
109003
|
|
|
107962
109004
|
|
|
@@ -111365,6 +112407,21 @@ export namespace Prisma {
|
|
|
111365
112407
|
export type SequenceOutboundReplyEmailScalarFieldEnum = (typeof SequenceOutboundReplyEmailScalarFieldEnum)[keyof typeof SequenceOutboundReplyEmailScalarFieldEnum]
|
|
111366
112408
|
|
|
111367
112409
|
|
|
112410
|
+
export const LLMPromptScalarFieldEnum: {
|
|
112411
|
+
id: 'id',
|
|
112412
|
+
collectionName: 'collectionName',
|
|
112413
|
+
version: 'version',
|
|
112414
|
+
steps: 'steps',
|
|
112415
|
+
published: 'published',
|
|
112416
|
+
extraData: 'extraData',
|
|
112417
|
+
editorUserId: 'editorUserId',
|
|
112418
|
+
createdAt: 'createdAt',
|
|
112419
|
+
updatedAt: 'updatedAt'
|
|
112420
|
+
};
|
|
112421
|
+
|
|
112422
|
+
export type LLMPromptScalarFieldEnum = (typeof LLMPromptScalarFieldEnum)[keyof typeof LLMPromptScalarFieldEnum]
|
|
112423
|
+
|
|
112424
|
+
|
|
111368
112425
|
export const LatestCreatorPaymentTransactionScalarFieldEnum: {
|
|
111369
112426
|
id: 'id',
|
|
111370
112427
|
balance: 'balance',
|
|
@@ -112093,6 +113150,14 @@ export namespace Prisma {
|
|
|
112093
113150
|
export type SequenceOutboundReplyEmailOrderByRelevanceFieldEnum = (typeof SequenceOutboundReplyEmailOrderByRelevanceFieldEnum)[keyof typeof SequenceOutboundReplyEmailOrderByRelevanceFieldEnum]
|
|
112094
113151
|
|
|
112095
113152
|
|
|
113153
|
+
export const LLMPromptOrderByRelevanceFieldEnum: {
|
|
113154
|
+
id: 'id',
|
|
113155
|
+
collectionName: 'collectionName'
|
|
113156
|
+
};
|
|
113157
|
+
|
|
113158
|
+
export type LLMPromptOrderByRelevanceFieldEnum = (typeof LLMPromptOrderByRelevanceFieldEnum)[keyof typeof LLMPromptOrderByRelevanceFieldEnum]
|
|
113159
|
+
|
|
113160
|
+
|
|
112096
113161
|
export const LatestCreatorPaymentTransactionOrderByRelevanceFieldEnum: {
|
|
112097
113162
|
type: 'type',
|
|
112098
113163
|
notes: 'notes'
|
|
@@ -120106,6 +121171,82 @@ export namespace Prisma {
|
|
|
120106
121171
|
updatedAt?: DateTimeWithAggregatesFilter<"SequenceOutboundReplyEmail"> | Date | string
|
|
120107
121172
|
}
|
|
120108
121173
|
|
|
121174
|
+
export type LLMPromptWhereInput = {
|
|
121175
|
+
AND?: LLMPromptWhereInput | LLMPromptWhereInput[]
|
|
121176
|
+
OR?: LLMPromptWhereInput[]
|
|
121177
|
+
NOT?: LLMPromptWhereInput | LLMPromptWhereInput[]
|
|
121178
|
+
id?: StringFilter<"LLMPrompt"> | string
|
|
121179
|
+
collectionName?: StringFilter<"LLMPrompt"> | string
|
|
121180
|
+
version?: IntFilter<"LLMPrompt"> | number
|
|
121181
|
+
steps?: JsonFilter<"LLMPrompt">
|
|
121182
|
+
published?: BoolFilter<"LLMPrompt"> | boolean
|
|
121183
|
+
extraData?: JsonFilter<"LLMPrompt">
|
|
121184
|
+
editorUserId?: IntNullableFilter<"LLMPrompt"> | number | null
|
|
121185
|
+
createdAt?: DateTimeFilter<"LLMPrompt"> | Date | string
|
|
121186
|
+
updatedAt?: DateTimeFilter<"LLMPrompt"> | Date | string
|
|
121187
|
+
}
|
|
121188
|
+
|
|
121189
|
+
export type LLMPromptOrderByWithRelationInput = {
|
|
121190
|
+
id?: SortOrder
|
|
121191
|
+
collectionName?: SortOrder
|
|
121192
|
+
version?: SortOrder
|
|
121193
|
+
steps?: SortOrder
|
|
121194
|
+
published?: SortOrder
|
|
121195
|
+
extraData?: SortOrder
|
|
121196
|
+
editorUserId?: SortOrderInput | SortOrder
|
|
121197
|
+
createdAt?: SortOrder
|
|
121198
|
+
updatedAt?: SortOrder
|
|
121199
|
+
_relevance?: LLMPromptOrderByRelevanceInput
|
|
121200
|
+
}
|
|
121201
|
+
|
|
121202
|
+
export type LLMPromptWhereUniqueInput = Prisma.AtLeast<{
|
|
121203
|
+
id?: string
|
|
121204
|
+
collectionName_version?: LLMPromptCollectionNameVersionCompoundUniqueInput
|
|
121205
|
+
AND?: LLMPromptWhereInput | LLMPromptWhereInput[]
|
|
121206
|
+
OR?: LLMPromptWhereInput[]
|
|
121207
|
+
NOT?: LLMPromptWhereInput | LLMPromptWhereInput[]
|
|
121208
|
+
collectionName?: StringFilter<"LLMPrompt"> | string
|
|
121209
|
+
version?: IntFilter<"LLMPrompt"> | number
|
|
121210
|
+
steps?: JsonFilter<"LLMPrompt">
|
|
121211
|
+
published?: BoolFilter<"LLMPrompt"> | boolean
|
|
121212
|
+
extraData?: JsonFilter<"LLMPrompt">
|
|
121213
|
+
editorUserId?: IntNullableFilter<"LLMPrompt"> | number | null
|
|
121214
|
+
createdAt?: DateTimeFilter<"LLMPrompt"> | Date | string
|
|
121215
|
+
updatedAt?: DateTimeFilter<"LLMPrompt"> | Date | string
|
|
121216
|
+
}, "id" | "collectionName_version">
|
|
121217
|
+
|
|
121218
|
+
export type LLMPromptOrderByWithAggregationInput = {
|
|
121219
|
+
id?: SortOrder
|
|
121220
|
+
collectionName?: SortOrder
|
|
121221
|
+
version?: SortOrder
|
|
121222
|
+
steps?: SortOrder
|
|
121223
|
+
published?: SortOrder
|
|
121224
|
+
extraData?: SortOrder
|
|
121225
|
+
editorUserId?: SortOrderInput | SortOrder
|
|
121226
|
+
createdAt?: SortOrder
|
|
121227
|
+
updatedAt?: SortOrder
|
|
121228
|
+
_count?: LLMPromptCountOrderByAggregateInput
|
|
121229
|
+
_avg?: LLMPromptAvgOrderByAggregateInput
|
|
121230
|
+
_max?: LLMPromptMaxOrderByAggregateInput
|
|
121231
|
+
_min?: LLMPromptMinOrderByAggregateInput
|
|
121232
|
+
_sum?: LLMPromptSumOrderByAggregateInput
|
|
121233
|
+
}
|
|
121234
|
+
|
|
121235
|
+
export type LLMPromptScalarWhereWithAggregatesInput = {
|
|
121236
|
+
AND?: LLMPromptScalarWhereWithAggregatesInput | LLMPromptScalarWhereWithAggregatesInput[]
|
|
121237
|
+
OR?: LLMPromptScalarWhereWithAggregatesInput[]
|
|
121238
|
+
NOT?: LLMPromptScalarWhereWithAggregatesInput | LLMPromptScalarWhereWithAggregatesInput[]
|
|
121239
|
+
id?: StringWithAggregatesFilter<"LLMPrompt"> | string
|
|
121240
|
+
collectionName?: StringWithAggregatesFilter<"LLMPrompt"> | string
|
|
121241
|
+
version?: IntWithAggregatesFilter<"LLMPrompt"> | number
|
|
121242
|
+
steps?: JsonWithAggregatesFilter<"LLMPrompt">
|
|
121243
|
+
published?: BoolWithAggregatesFilter<"LLMPrompt"> | boolean
|
|
121244
|
+
extraData?: JsonWithAggregatesFilter<"LLMPrompt">
|
|
121245
|
+
editorUserId?: IntNullableWithAggregatesFilter<"LLMPrompt"> | number | null
|
|
121246
|
+
createdAt?: DateTimeWithAggregatesFilter<"LLMPrompt"> | Date | string
|
|
121247
|
+
updatedAt?: DateTimeWithAggregatesFilter<"LLMPrompt"> | Date | string
|
|
121248
|
+
}
|
|
121249
|
+
|
|
120109
121250
|
export type LatestCreatorPaymentTransactionWhereInput = {
|
|
120110
121251
|
AND?: LatestCreatorPaymentTransactionWhereInput | LatestCreatorPaymentTransactionWhereInput[]
|
|
120111
121252
|
OR?: LatestCreatorPaymentTransactionWhereInput[]
|
|
@@ -128223,6 +129364,90 @@ export namespace Prisma {
|
|
|
128223
129364
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
128224
129365
|
}
|
|
128225
129366
|
|
|
129367
|
+
export type LLMPromptCreateInput = {
|
|
129368
|
+
id?: string
|
|
129369
|
+
collectionName: string
|
|
129370
|
+
version: number
|
|
129371
|
+
steps: JsonNullValueInput | InputJsonValue
|
|
129372
|
+
published?: boolean
|
|
129373
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
129374
|
+
editorUserId?: number | null
|
|
129375
|
+
createdAt?: Date | string
|
|
129376
|
+
updatedAt?: Date | string
|
|
129377
|
+
}
|
|
129378
|
+
|
|
129379
|
+
export type LLMPromptUncheckedCreateInput = {
|
|
129380
|
+
id?: string
|
|
129381
|
+
collectionName: string
|
|
129382
|
+
version: number
|
|
129383
|
+
steps: JsonNullValueInput | InputJsonValue
|
|
129384
|
+
published?: boolean
|
|
129385
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
129386
|
+
editorUserId?: number | null
|
|
129387
|
+
createdAt?: Date | string
|
|
129388
|
+
updatedAt?: Date | string
|
|
129389
|
+
}
|
|
129390
|
+
|
|
129391
|
+
export type LLMPromptUpdateInput = {
|
|
129392
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
129393
|
+
collectionName?: StringFieldUpdateOperationsInput | string
|
|
129394
|
+
version?: IntFieldUpdateOperationsInput | number
|
|
129395
|
+
steps?: JsonNullValueInput | InputJsonValue
|
|
129396
|
+
published?: BoolFieldUpdateOperationsInput | boolean
|
|
129397
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
129398
|
+
editorUserId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
129399
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
129400
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
129401
|
+
}
|
|
129402
|
+
|
|
129403
|
+
export type LLMPromptUncheckedUpdateInput = {
|
|
129404
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
129405
|
+
collectionName?: StringFieldUpdateOperationsInput | string
|
|
129406
|
+
version?: IntFieldUpdateOperationsInput | number
|
|
129407
|
+
steps?: JsonNullValueInput | InputJsonValue
|
|
129408
|
+
published?: BoolFieldUpdateOperationsInput | boolean
|
|
129409
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
129410
|
+
editorUserId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
129411
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
129412
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
129413
|
+
}
|
|
129414
|
+
|
|
129415
|
+
export type LLMPromptCreateManyInput = {
|
|
129416
|
+
id?: string
|
|
129417
|
+
collectionName: string
|
|
129418
|
+
version: number
|
|
129419
|
+
steps: JsonNullValueInput | InputJsonValue
|
|
129420
|
+
published?: boolean
|
|
129421
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
129422
|
+
editorUserId?: number | null
|
|
129423
|
+
createdAt?: Date | string
|
|
129424
|
+
updatedAt?: Date | string
|
|
129425
|
+
}
|
|
129426
|
+
|
|
129427
|
+
export type LLMPromptUpdateManyMutationInput = {
|
|
129428
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
129429
|
+
collectionName?: StringFieldUpdateOperationsInput | string
|
|
129430
|
+
version?: IntFieldUpdateOperationsInput | number
|
|
129431
|
+
steps?: JsonNullValueInput | InputJsonValue
|
|
129432
|
+
published?: BoolFieldUpdateOperationsInput | boolean
|
|
129433
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
129434
|
+
editorUserId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
129435
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
129436
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
129437
|
+
}
|
|
129438
|
+
|
|
129439
|
+
export type LLMPromptUncheckedUpdateManyInput = {
|
|
129440
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
129441
|
+
collectionName?: StringFieldUpdateOperationsInput | string
|
|
129442
|
+
version?: IntFieldUpdateOperationsInput | number
|
|
129443
|
+
steps?: JsonNullValueInput | InputJsonValue
|
|
129444
|
+
published?: BoolFieldUpdateOperationsInput | boolean
|
|
129445
|
+
extraData?: JsonNullValueInput | InputJsonValue
|
|
129446
|
+
editorUserId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
129447
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
129448
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
129449
|
+
}
|
|
129450
|
+
|
|
128226
129451
|
export type LatestCreatorPaymentTransactionCreateInput = {
|
|
128227
129452
|
id: number
|
|
128228
129453
|
balance: number
|
|
@@ -134927,6 +136152,59 @@ export namespace Prisma {
|
|
|
134927
136152
|
replyCount?: SortOrder
|
|
134928
136153
|
}
|
|
134929
136154
|
|
|
136155
|
+
export type LLMPromptOrderByRelevanceInput = {
|
|
136156
|
+
fields: LLMPromptOrderByRelevanceFieldEnum | LLMPromptOrderByRelevanceFieldEnum[]
|
|
136157
|
+
sort: SortOrder
|
|
136158
|
+
search: string
|
|
136159
|
+
}
|
|
136160
|
+
|
|
136161
|
+
export type LLMPromptCollectionNameVersionCompoundUniqueInput = {
|
|
136162
|
+
collectionName: string
|
|
136163
|
+
version: number
|
|
136164
|
+
}
|
|
136165
|
+
|
|
136166
|
+
export type LLMPromptCountOrderByAggregateInput = {
|
|
136167
|
+
id?: SortOrder
|
|
136168
|
+
collectionName?: SortOrder
|
|
136169
|
+
version?: SortOrder
|
|
136170
|
+
steps?: SortOrder
|
|
136171
|
+
published?: SortOrder
|
|
136172
|
+
extraData?: SortOrder
|
|
136173
|
+
editorUserId?: SortOrder
|
|
136174
|
+
createdAt?: SortOrder
|
|
136175
|
+
updatedAt?: SortOrder
|
|
136176
|
+
}
|
|
136177
|
+
|
|
136178
|
+
export type LLMPromptAvgOrderByAggregateInput = {
|
|
136179
|
+
version?: SortOrder
|
|
136180
|
+
editorUserId?: SortOrder
|
|
136181
|
+
}
|
|
136182
|
+
|
|
136183
|
+
export type LLMPromptMaxOrderByAggregateInput = {
|
|
136184
|
+
id?: SortOrder
|
|
136185
|
+
collectionName?: SortOrder
|
|
136186
|
+
version?: SortOrder
|
|
136187
|
+
published?: SortOrder
|
|
136188
|
+
editorUserId?: SortOrder
|
|
136189
|
+
createdAt?: SortOrder
|
|
136190
|
+
updatedAt?: SortOrder
|
|
136191
|
+
}
|
|
136192
|
+
|
|
136193
|
+
export type LLMPromptMinOrderByAggregateInput = {
|
|
136194
|
+
id?: SortOrder
|
|
136195
|
+
collectionName?: SortOrder
|
|
136196
|
+
version?: SortOrder
|
|
136197
|
+
published?: SortOrder
|
|
136198
|
+
editorUserId?: SortOrder
|
|
136199
|
+
createdAt?: SortOrder
|
|
136200
|
+
updatedAt?: SortOrder
|
|
136201
|
+
}
|
|
136202
|
+
|
|
136203
|
+
export type LLMPromptSumOrderByAggregateInput = {
|
|
136204
|
+
version?: SortOrder
|
|
136205
|
+
editorUserId?: SortOrder
|
|
136206
|
+
}
|
|
136207
|
+
|
|
134930
136208
|
export type LatestCreatorPaymentTransactionOrderByRelevanceInput = {
|
|
134931
136209
|
fields: LatestCreatorPaymentTransactionOrderByRelevanceFieldEnum | LatestCreatorPaymentTransactionOrderByRelevanceFieldEnum[]
|
|
134932
136210
|
sort: SortOrder
|
|
@@ -185804,6 +187082,10 @@ export namespace Prisma {
|
|
|
185804
187082
|
* @deprecated Use SequenceOutboundReplyEmailDefaultArgs instead
|
|
185805
187083
|
*/
|
|
185806
187084
|
export type SequenceOutboundReplyEmailArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = SequenceOutboundReplyEmailDefaultArgs<ExtArgs>
|
|
187085
|
+
/**
|
|
187086
|
+
* @deprecated Use LLMPromptDefaultArgs instead
|
|
187087
|
+
*/
|
|
187088
|
+
export type LLMPromptArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = LLMPromptDefaultArgs<ExtArgs>
|
|
185807
187089
|
/**
|
|
185808
187090
|
* @deprecated Use LatestCreatorPaymentTransactionDefaultArgs instead
|
|
185809
187091
|
*/
|