@creator.co/creatorco-prisma-client 1.0.86-alpha-d8684af → 1.0.87
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 +6 -5
- package/index-browser.js +1 -0
- package/index.d.ts +368 -23
- package/index.js +6 -5
- package/package.json +1 -1
- package/schema.prisma +14 -11
- package/wasm.js +1 -0
package/index.d.ts
CHANGED
|
@@ -10002,12 +10002,14 @@ export namespace Prisma {
|
|
|
10002
10002
|
sequenceOutboundEmails: number
|
|
10003
10003
|
sequenceInboundEmails: number
|
|
10004
10004
|
sequenceImapCheckpoints: number
|
|
10005
|
+
sequenceOutboundReplyEmail: number
|
|
10005
10006
|
}
|
|
10006
10007
|
|
|
10007
10008
|
export type CreatorListItemCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10008
10009
|
sequenceOutboundEmails?: boolean | CreatorListItemCountOutputTypeCountSequenceOutboundEmailsArgs
|
|
10009
10010
|
sequenceInboundEmails?: boolean | CreatorListItemCountOutputTypeCountSequenceInboundEmailsArgs
|
|
10010
10011
|
sequenceImapCheckpoints?: boolean | CreatorListItemCountOutputTypeCountSequenceImapCheckpointsArgs
|
|
10012
|
+
sequenceOutboundReplyEmail?: boolean | CreatorListItemCountOutputTypeCountSequenceOutboundReplyEmailArgs
|
|
10011
10013
|
}
|
|
10012
10014
|
|
|
10013
10015
|
// Custom InputTypes
|
|
@@ -10042,6 +10044,13 @@ export namespace Prisma {
|
|
|
10042
10044
|
where?: SequenceImapCheckpointWhereInput
|
|
10043
10045
|
}
|
|
10044
10046
|
|
|
10047
|
+
/**
|
|
10048
|
+
* CreatorListItemCountOutputType without action
|
|
10049
|
+
*/
|
|
10050
|
+
export type CreatorListItemCountOutputTypeCountSequenceOutboundReplyEmailArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10051
|
+
where?: SequenceOutboundReplyEmailWhereInput
|
|
10052
|
+
}
|
|
10053
|
+
|
|
10045
10054
|
|
|
10046
10055
|
/**
|
|
10047
10056
|
* Count Type SocialProfileCountOutputType
|
|
@@ -72190,6 +72199,7 @@ export namespace Prisma {
|
|
|
72190
72199
|
sequenceOutboundEmails?: boolean | CreatorListItem$sequenceOutboundEmailsArgs<ExtArgs>
|
|
72191
72200
|
sequenceInboundEmails?: boolean | CreatorListItem$sequenceInboundEmailsArgs<ExtArgs>
|
|
72192
72201
|
sequenceImapCheckpoints?: boolean | CreatorListItem$sequenceImapCheckpointsArgs<ExtArgs>
|
|
72202
|
+
sequenceOutboundReplyEmail?: boolean | CreatorListItem$sequenceOutboundReplyEmailArgs<ExtArgs>
|
|
72193
72203
|
_count?: boolean | CreatorListItemCountOutputTypeDefaultArgs<ExtArgs>
|
|
72194
72204
|
}, ExtArgs["result"]["creatorListItem"]>
|
|
72195
72205
|
|
|
@@ -72225,6 +72235,7 @@ export namespace Prisma {
|
|
|
72225
72235
|
sequenceOutboundEmails?: boolean | CreatorListItem$sequenceOutboundEmailsArgs<ExtArgs>
|
|
72226
72236
|
sequenceInboundEmails?: boolean | CreatorListItem$sequenceInboundEmailsArgs<ExtArgs>
|
|
72227
72237
|
sequenceImapCheckpoints?: boolean | CreatorListItem$sequenceImapCheckpointsArgs<ExtArgs>
|
|
72238
|
+
sequenceOutboundReplyEmail?: boolean | CreatorListItem$sequenceOutboundReplyEmailArgs<ExtArgs>
|
|
72228
72239
|
_count?: boolean | CreatorListItemCountOutputTypeDefaultArgs<ExtArgs>
|
|
72229
72240
|
}
|
|
72230
72241
|
export type CreatorListItemIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -72240,6 +72251,7 @@ export namespace Prisma {
|
|
|
72240
72251
|
sequenceOutboundEmails: Prisma.$SequenceOutboundEmailPayload<ExtArgs>[]
|
|
72241
72252
|
sequenceInboundEmails: Prisma.$SequenceInboundEmailPayload<ExtArgs>[]
|
|
72242
72253
|
sequenceImapCheckpoints: Prisma.$SequenceImapCheckpointPayload<ExtArgs>[]
|
|
72254
|
+
sequenceOutboundReplyEmail: Prisma.$SequenceOutboundReplyEmailPayload<ExtArgs>[]
|
|
72243
72255
|
}
|
|
72244
72256
|
scalars: $Extensions.GetPayloadResult<{
|
|
72245
72257
|
id: number
|
|
@@ -72620,6 +72632,7 @@ export namespace Prisma {
|
|
|
72620
72632
|
sequenceOutboundEmails<T extends CreatorListItem$sequenceOutboundEmailsArgs<ExtArgs> = {}>(args?: Subset<T, CreatorListItem$sequenceOutboundEmailsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$SequenceOutboundEmailPayload<ExtArgs>, T, "findMany"> | Null>
|
|
72621
72633
|
sequenceInboundEmails<T extends CreatorListItem$sequenceInboundEmailsArgs<ExtArgs> = {}>(args?: Subset<T, CreatorListItem$sequenceInboundEmailsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$SequenceInboundEmailPayload<ExtArgs>, T, "findMany"> | Null>
|
|
72622
72634
|
sequenceImapCheckpoints<T extends CreatorListItem$sequenceImapCheckpointsArgs<ExtArgs> = {}>(args?: Subset<T, CreatorListItem$sequenceImapCheckpointsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$SequenceImapCheckpointPayload<ExtArgs>, T, "findMany"> | Null>
|
|
72635
|
+
sequenceOutboundReplyEmail<T extends CreatorListItem$sequenceOutboundReplyEmailArgs<ExtArgs> = {}>(args?: Subset<T, CreatorListItem$sequenceOutboundReplyEmailArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$SequenceOutboundReplyEmailPayload<ExtArgs>, T, "findMany"> | Null>
|
|
72623
72636
|
/**
|
|
72624
72637
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
72625
72638
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -73050,6 +73063,26 @@ export namespace Prisma {
|
|
|
73050
73063
|
distinct?: SequenceImapCheckpointScalarFieldEnum | SequenceImapCheckpointScalarFieldEnum[]
|
|
73051
73064
|
}
|
|
73052
73065
|
|
|
73066
|
+
/**
|
|
73067
|
+
* CreatorListItem.sequenceOutboundReplyEmail
|
|
73068
|
+
*/
|
|
73069
|
+
export type CreatorListItem$sequenceOutboundReplyEmailArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
73070
|
+
/**
|
|
73071
|
+
* Select specific fields to fetch from the SequenceOutboundReplyEmail
|
|
73072
|
+
*/
|
|
73073
|
+
select?: SequenceOutboundReplyEmailSelect<ExtArgs> | null
|
|
73074
|
+
/**
|
|
73075
|
+
* Choose, which related nodes to fetch as well
|
|
73076
|
+
*/
|
|
73077
|
+
include?: SequenceOutboundReplyEmailInclude<ExtArgs> | null
|
|
73078
|
+
where?: SequenceOutboundReplyEmailWhereInput
|
|
73079
|
+
orderBy?: SequenceOutboundReplyEmailOrderByWithRelationInput | SequenceOutboundReplyEmailOrderByWithRelationInput[]
|
|
73080
|
+
cursor?: SequenceOutboundReplyEmailWhereUniqueInput
|
|
73081
|
+
take?: number
|
|
73082
|
+
skip?: number
|
|
73083
|
+
distinct?: SequenceOutboundReplyEmailScalarFieldEnum | SequenceOutboundReplyEmailScalarFieldEnum[]
|
|
73084
|
+
}
|
|
73085
|
+
|
|
73053
73086
|
/**
|
|
73054
73087
|
* CreatorListItem without action
|
|
73055
73088
|
*/
|
|
@@ -103402,6 +103435,7 @@ export namespace Prisma {
|
|
|
103402
103435
|
export type SequenceOutboundReplyEmailAvgAggregateOutputType = {
|
|
103403
103436
|
id: number | null
|
|
103404
103437
|
sequenceId: number | null
|
|
103438
|
+
listItemId: number | null
|
|
103405
103439
|
type: number | null
|
|
103406
103440
|
replyCount: number | null
|
|
103407
103441
|
}
|
|
@@ -103409,6 +103443,7 @@ export namespace Prisma {
|
|
|
103409
103443
|
export type SequenceOutboundReplyEmailSumAggregateOutputType = {
|
|
103410
103444
|
id: number | null
|
|
103411
103445
|
sequenceId: number | null
|
|
103446
|
+
listItemId: number | null
|
|
103412
103447
|
type: number | null
|
|
103413
103448
|
replyCount: number | null
|
|
103414
103449
|
}
|
|
@@ -103416,6 +103451,7 @@ export namespace Prisma {
|
|
|
103416
103451
|
export type SequenceOutboundReplyEmailMinAggregateOutputType = {
|
|
103417
103452
|
id: number | null
|
|
103418
103453
|
sequenceId: number | null
|
|
103454
|
+
listItemId: number | null
|
|
103419
103455
|
type: number | null
|
|
103420
103456
|
typeId: string | null
|
|
103421
103457
|
replyCount: number | null
|
|
@@ -103426,6 +103462,7 @@ export namespace Prisma {
|
|
|
103426
103462
|
export type SequenceOutboundReplyEmailMaxAggregateOutputType = {
|
|
103427
103463
|
id: number | null
|
|
103428
103464
|
sequenceId: number | null
|
|
103465
|
+
listItemId: number | null
|
|
103429
103466
|
type: number | null
|
|
103430
103467
|
typeId: string | null
|
|
103431
103468
|
replyCount: number | null
|
|
@@ -103436,6 +103473,7 @@ export namespace Prisma {
|
|
|
103436
103473
|
export type SequenceOutboundReplyEmailCountAggregateOutputType = {
|
|
103437
103474
|
id: number
|
|
103438
103475
|
sequenceId: number
|
|
103476
|
+
listItemId: number
|
|
103439
103477
|
type: number
|
|
103440
103478
|
typeId: number
|
|
103441
103479
|
replyCount: number
|
|
@@ -103448,6 +103486,7 @@ export namespace Prisma {
|
|
|
103448
103486
|
export type SequenceOutboundReplyEmailAvgAggregateInputType = {
|
|
103449
103487
|
id?: true
|
|
103450
103488
|
sequenceId?: true
|
|
103489
|
+
listItemId?: true
|
|
103451
103490
|
type?: true
|
|
103452
103491
|
replyCount?: true
|
|
103453
103492
|
}
|
|
@@ -103455,6 +103494,7 @@ export namespace Prisma {
|
|
|
103455
103494
|
export type SequenceOutboundReplyEmailSumAggregateInputType = {
|
|
103456
103495
|
id?: true
|
|
103457
103496
|
sequenceId?: true
|
|
103497
|
+
listItemId?: true
|
|
103458
103498
|
type?: true
|
|
103459
103499
|
replyCount?: true
|
|
103460
103500
|
}
|
|
@@ -103462,6 +103502,7 @@ export namespace Prisma {
|
|
|
103462
103502
|
export type SequenceOutboundReplyEmailMinAggregateInputType = {
|
|
103463
103503
|
id?: true
|
|
103464
103504
|
sequenceId?: true
|
|
103505
|
+
listItemId?: true
|
|
103465
103506
|
type?: true
|
|
103466
103507
|
typeId?: true
|
|
103467
103508
|
replyCount?: true
|
|
@@ -103472,6 +103513,7 @@ export namespace Prisma {
|
|
|
103472
103513
|
export type SequenceOutboundReplyEmailMaxAggregateInputType = {
|
|
103473
103514
|
id?: true
|
|
103474
103515
|
sequenceId?: true
|
|
103516
|
+
listItemId?: true
|
|
103475
103517
|
type?: true
|
|
103476
103518
|
typeId?: true
|
|
103477
103519
|
replyCount?: true
|
|
@@ -103482,6 +103524,7 @@ export namespace Prisma {
|
|
|
103482
103524
|
export type SequenceOutboundReplyEmailCountAggregateInputType = {
|
|
103483
103525
|
id?: true
|
|
103484
103526
|
sequenceId?: true
|
|
103527
|
+
listItemId?: true
|
|
103485
103528
|
type?: true
|
|
103486
103529
|
typeId?: true
|
|
103487
103530
|
replyCount?: true
|
|
@@ -103579,6 +103622,7 @@ export namespace Prisma {
|
|
|
103579
103622
|
export type SequenceOutboundReplyEmailGroupByOutputType = {
|
|
103580
103623
|
id: number
|
|
103581
103624
|
sequenceId: number
|
|
103625
|
+
listItemId: number | null
|
|
103582
103626
|
type: number
|
|
103583
103627
|
typeId: string
|
|
103584
103628
|
replyCount: number
|
|
@@ -103608,28 +103652,33 @@ export namespace Prisma {
|
|
|
103608
103652
|
export type SequenceOutboundReplyEmailSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
103609
103653
|
id?: boolean
|
|
103610
103654
|
sequenceId?: boolean
|
|
103655
|
+
listItemId?: boolean
|
|
103611
103656
|
type?: boolean
|
|
103612
103657
|
typeId?: boolean
|
|
103613
103658
|
replyCount?: boolean
|
|
103614
103659
|
createdAt?: boolean
|
|
103615
103660
|
updatedAt?: boolean
|
|
103661
|
+
creatorListItem?: boolean | SequenceOutboundReplyEmail$creatorListItemArgs<ExtArgs>
|
|
103616
103662
|
sequence?: boolean | SequenceDefaultArgs<ExtArgs>
|
|
103617
103663
|
}, ExtArgs["result"]["sequenceOutboundReplyEmail"]>
|
|
103618
103664
|
|
|
103619
103665
|
export type SequenceOutboundReplyEmailSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
103620
103666
|
id?: boolean
|
|
103621
103667
|
sequenceId?: boolean
|
|
103668
|
+
listItemId?: boolean
|
|
103622
103669
|
type?: boolean
|
|
103623
103670
|
typeId?: boolean
|
|
103624
103671
|
replyCount?: boolean
|
|
103625
103672
|
createdAt?: boolean
|
|
103626
103673
|
updatedAt?: boolean
|
|
103674
|
+
creatorListItem?: boolean | SequenceOutboundReplyEmail$creatorListItemArgs<ExtArgs>
|
|
103627
103675
|
sequence?: boolean | SequenceDefaultArgs<ExtArgs>
|
|
103628
103676
|
}, ExtArgs["result"]["sequenceOutboundReplyEmail"]>
|
|
103629
103677
|
|
|
103630
103678
|
export type SequenceOutboundReplyEmailSelectScalar = {
|
|
103631
103679
|
id?: boolean
|
|
103632
103680
|
sequenceId?: boolean
|
|
103681
|
+
listItemId?: boolean
|
|
103633
103682
|
type?: boolean
|
|
103634
103683
|
typeId?: boolean
|
|
103635
103684
|
replyCount?: boolean
|
|
@@ -103638,20 +103687,24 @@ export namespace Prisma {
|
|
|
103638
103687
|
}
|
|
103639
103688
|
|
|
103640
103689
|
export type SequenceOutboundReplyEmailInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
103690
|
+
creatorListItem?: boolean | SequenceOutboundReplyEmail$creatorListItemArgs<ExtArgs>
|
|
103641
103691
|
sequence?: boolean | SequenceDefaultArgs<ExtArgs>
|
|
103642
103692
|
}
|
|
103643
103693
|
export type SequenceOutboundReplyEmailIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
103694
|
+
creatorListItem?: boolean | SequenceOutboundReplyEmail$creatorListItemArgs<ExtArgs>
|
|
103644
103695
|
sequence?: boolean | SequenceDefaultArgs<ExtArgs>
|
|
103645
103696
|
}
|
|
103646
103697
|
|
|
103647
103698
|
export type $SequenceOutboundReplyEmailPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
103648
103699
|
name: "SequenceOutboundReplyEmail"
|
|
103649
103700
|
objects: {
|
|
103701
|
+
creatorListItem: Prisma.$CreatorListItemPayload<ExtArgs> | null
|
|
103650
103702
|
sequence: Prisma.$SequencePayload<ExtArgs>
|
|
103651
103703
|
}
|
|
103652
103704
|
scalars: $Extensions.GetPayloadResult<{
|
|
103653
103705
|
id: number
|
|
103654
103706
|
sequenceId: number
|
|
103707
|
+
listItemId: number | null
|
|
103655
103708
|
type: number
|
|
103656
103709
|
typeId: string
|
|
103657
103710
|
replyCount: number
|
|
@@ -104021,6 +104074,7 @@ export namespace Prisma {
|
|
|
104021
104074
|
*/
|
|
104022
104075
|
export interface Prisma__SequenceOutboundReplyEmailClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
104023
104076
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
104077
|
+
creatorListItem<T extends SequenceOutboundReplyEmail$creatorListItemArgs<ExtArgs> = {}>(args?: Subset<T, SequenceOutboundReplyEmail$creatorListItemArgs<ExtArgs>>): Prisma__CreatorListItemClient<$Result.GetResult<Prisma.$CreatorListItemPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
104024
104078
|
sequence<T extends SequenceDefaultArgs<ExtArgs> = {}>(args?: Subset<T, SequenceDefaultArgs<ExtArgs>>): Prisma__SequenceClient<$Result.GetResult<Prisma.$SequencePayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
|
|
104025
104079
|
/**
|
|
104026
104080
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
@@ -104053,6 +104107,7 @@ export namespace Prisma {
|
|
|
104053
104107
|
interface SequenceOutboundReplyEmailFieldRefs {
|
|
104054
104108
|
readonly id: FieldRef<"SequenceOutboundReplyEmail", 'Int'>
|
|
104055
104109
|
readonly sequenceId: FieldRef<"SequenceOutboundReplyEmail", 'Int'>
|
|
104110
|
+
readonly listItemId: FieldRef<"SequenceOutboundReplyEmail", 'Int'>
|
|
104056
104111
|
readonly type: FieldRef<"SequenceOutboundReplyEmail", 'Int'>
|
|
104057
104112
|
readonly typeId: FieldRef<"SequenceOutboundReplyEmail", 'String'>
|
|
104058
104113
|
readonly replyCount: FieldRef<"SequenceOutboundReplyEmail", 'Int'>
|
|
@@ -104375,6 +104430,21 @@ export namespace Prisma {
|
|
|
104375
104430
|
where?: SequenceOutboundReplyEmailWhereInput
|
|
104376
104431
|
}
|
|
104377
104432
|
|
|
104433
|
+
/**
|
|
104434
|
+
* SequenceOutboundReplyEmail.creatorListItem
|
|
104435
|
+
*/
|
|
104436
|
+
export type SequenceOutboundReplyEmail$creatorListItemArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
104437
|
+
/**
|
|
104438
|
+
* Select specific fields to fetch from the CreatorListItem
|
|
104439
|
+
*/
|
|
104440
|
+
select?: CreatorListItemSelect<ExtArgs> | null
|
|
104441
|
+
/**
|
|
104442
|
+
* Choose, which related nodes to fetch as well
|
|
104443
|
+
*/
|
|
104444
|
+
include?: CreatorListItemInclude<ExtArgs> | null
|
|
104445
|
+
where?: CreatorListItemWhereInput
|
|
104446
|
+
}
|
|
104447
|
+
|
|
104378
104448
|
/**
|
|
104379
104449
|
* SequenceOutboundReplyEmail without action
|
|
104380
104450
|
*/
|
|
@@ -107741,6 +107811,7 @@ export namespace Prisma {
|
|
|
107741
107811
|
export const SequenceOutboundReplyEmailScalarFieldEnum: {
|
|
107742
107812
|
id: 'id',
|
|
107743
107813
|
sequenceId: 'sequenceId',
|
|
107814
|
+
listItemId: 'listItemId',
|
|
107744
107815
|
type: 'type',
|
|
107745
107816
|
typeId: 'typeId',
|
|
107746
107817
|
replyCount: 'replyCount',
|
|
@@ -113772,6 +113843,7 @@ export namespace Prisma {
|
|
|
113772
113843
|
sequenceOutboundEmails?: SequenceOutboundEmailListRelationFilter
|
|
113773
113844
|
sequenceInboundEmails?: SequenceInboundEmailListRelationFilter
|
|
113774
113845
|
sequenceImapCheckpoints?: SequenceImapCheckpointListRelationFilter
|
|
113846
|
+
sequenceOutboundReplyEmail?: SequenceOutboundReplyEmailListRelationFilter
|
|
113775
113847
|
}
|
|
113776
113848
|
|
|
113777
113849
|
export type CreatorListItemOrderByWithRelationInput = {
|
|
@@ -113789,6 +113861,7 @@ export namespace Prisma {
|
|
|
113789
113861
|
sequenceOutboundEmails?: SequenceOutboundEmailOrderByRelationAggregateInput
|
|
113790
113862
|
sequenceInboundEmails?: SequenceInboundEmailOrderByRelationAggregateInput
|
|
113791
113863
|
sequenceImapCheckpoints?: SequenceImapCheckpointOrderByRelationAggregateInput
|
|
113864
|
+
sequenceOutboundReplyEmail?: SequenceOutboundReplyEmailOrderByRelationAggregateInput
|
|
113792
113865
|
_relevance?: CreatorListItemOrderByRelevanceInput
|
|
113793
113866
|
}
|
|
113794
113867
|
|
|
@@ -113811,6 +113884,7 @@ export namespace Prisma {
|
|
|
113811
113884
|
sequenceOutboundEmails?: SequenceOutboundEmailListRelationFilter
|
|
113812
113885
|
sequenceInboundEmails?: SequenceInboundEmailListRelationFilter
|
|
113813
113886
|
sequenceImapCheckpoints?: SequenceImapCheckpointListRelationFilter
|
|
113887
|
+
sequenceOutboundReplyEmail?: SequenceOutboundReplyEmailListRelationFilter
|
|
113814
113888
|
}, "id" | "creatorListId_socialProfileId">
|
|
113815
113889
|
|
|
113816
113890
|
export type CreatorListItemOrderByWithAggregationInput = {
|
|
@@ -116138,22 +116212,26 @@ export namespace Prisma {
|
|
|
116138
116212
|
NOT?: SequenceOutboundReplyEmailWhereInput | SequenceOutboundReplyEmailWhereInput[]
|
|
116139
116213
|
id?: IntFilter<"SequenceOutboundReplyEmail"> | number
|
|
116140
116214
|
sequenceId?: IntFilter<"SequenceOutboundReplyEmail"> | number
|
|
116215
|
+
listItemId?: IntNullableFilter<"SequenceOutboundReplyEmail"> | number | null
|
|
116141
116216
|
type?: IntFilter<"SequenceOutboundReplyEmail"> | number
|
|
116142
116217
|
typeId?: StringFilter<"SequenceOutboundReplyEmail"> | string
|
|
116143
116218
|
replyCount?: IntFilter<"SequenceOutboundReplyEmail"> | number
|
|
116144
116219
|
createdAt?: DateTimeFilter<"SequenceOutboundReplyEmail"> | Date | string
|
|
116145
116220
|
updatedAt?: DateTimeFilter<"SequenceOutboundReplyEmail"> | Date | string
|
|
116221
|
+
creatorListItem?: XOR<CreatorListItemNullableRelationFilter, CreatorListItemWhereInput> | null
|
|
116146
116222
|
sequence?: XOR<SequenceRelationFilter, SequenceWhereInput>
|
|
116147
116223
|
}
|
|
116148
116224
|
|
|
116149
116225
|
export type SequenceOutboundReplyEmailOrderByWithRelationInput = {
|
|
116150
116226
|
id?: SortOrder
|
|
116151
116227
|
sequenceId?: SortOrder
|
|
116228
|
+
listItemId?: SortOrderInput | SortOrder
|
|
116152
116229
|
type?: SortOrder
|
|
116153
116230
|
typeId?: SortOrder
|
|
116154
116231
|
replyCount?: SortOrder
|
|
116155
116232
|
createdAt?: SortOrder
|
|
116156
116233
|
updatedAt?: SortOrder
|
|
116234
|
+
creatorListItem?: CreatorListItemOrderByWithRelationInput
|
|
116157
116235
|
sequence?: SequenceOrderByWithRelationInput
|
|
116158
116236
|
_relevance?: SequenceOutboundReplyEmailOrderByRelevanceInput
|
|
116159
116237
|
}
|
|
@@ -116164,17 +116242,20 @@ export namespace Prisma {
|
|
|
116164
116242
|
OR?: SequenceOutboundReplyEmailWhereInput[]
|
|
116165
116243
|
NOT?: SequenceOutboundReplyEmailWhereInput | SequenceOutboundReplyEmailWhereInput[]
|
|
116166
116244
|
sequenceId?: IntFilter<"SequenceOutboundReplyEmail"> | number
|
|
116245
|
+
listItemId?: IntNullableFilter<"SequenceOutboundReplyEmail"> | number | null
|
|
116167
116246
|
type?: IntFilter<"SequenceOutboundReplyEmail"> | number
|
|
116168
116247
|
typeId?: StringFilter<"SequenceOutboundReplyEmail"> | string
|
|
116169
116248
|
replyCount?: IntFilter<"SequenceOutboundReplyEmail"> | number
|
|
116170
116249
|
createdAt?: DateTimeFilter<"SequenceOutboundReplyEmail"> | Date | string
|
|
116171
116250
|
updatedAt?: DateTimeFilter<"SequenceOutboundReplyEmail"> | Date | string
|
|
116251
|
+
creatorListItem?: XOR<CreatorListItemNullableRelationFilter, CreatorListItemWhereInput> | null
|
|
116172
116252
|
sequence?: XOR<SequenceRelationFilter, SequenceWhereInput>
|
|
116173
116253
|
}, "id">
|
|
116174
116254
|
|
|
116175
116255
|
export type SequenceOutboundReplyEmailOrderByWithAggregationInput = {
|
|
116176
116256
|
id?: SortOrder
|
|
116177
116257
|
sequenceId?: SortOrder
|
|
116258
|
+
listItemId?: SortOrderInput | SortOrder
|
|
116178
116259
|
type?: SortOrder
|
|
116179
116260
|
typeId?: SortOrder
|
|
116180
116261
|
replyCount?: SortOrder
|
|
@@ -116193,6 +116274,7 @@ export namespace Prisma {
|
|
|
116193
116274
|
NOT?: SequenceOutboundReplyEmailScalarWhereWithAggregatesInput | SequenceOutboundReplyEmailScalarWhereWithAggregatesInput[]
|
|
116194
116275
|
id?: IntWithAggregatesFilter<"SequenceOutboundReplyEmail"> | number
|
|
116195
116276
|
sequenceId?: IntWithAggregatesFilter<"SequenceOutboundReplyEmail"> | number
|
|
116277
|
+
listItemId?: IntNullableWithAggregatesFilter<"SequenceOutboundReplyEmail"> | number | null
|
|
116196
116278
|
type?: IntWithAggregatesFilter<"SequenceOutboundReplyEmail"> | number
|
|
116197
116279
|
typeId?: StringWithAggregatesFilter<"SequenceOutboundReplyEmail"> | string
|
|
116198
116280
|
replyCount?: IntWithAggregatesFilter<"SequenceOutboundReplyEmail"> | number
|
|
@@ -121664,6 +121746,7 @@ export namespace Prisma {
|
|
|
121664
121746
|
sequenceOutboundEmails?: SequenceOutboundEmailCreateNestedManyWithoutCreatorListInput
|
|
121665
121747
|
sequenceInboundEmails?: SequenceInboundEmailCreateNestedManyWithoutCreatorListIdInput
|
|
121666
121748
|
sequenceImapCheckpoints?: SequenceImapCheckpointCreateNestedManyWithoutCreatorListIdInput
|
|
121749
|
+
sequenceOutboundReplyEmail?: SequenceOutboundReplyEmailCreateNestedManyWithoutCreatorListItemInput
|
|
121667
121750
|
}
|
|
121668
121751
|
|
|
121669
121752
|
export type CreatorListItemUncheckedCreateInput = {
|
|
@@ -121679,6 +121762,7 @@ export namespace Prisma {
|
|
|
121679
121762
|
sequenceOutboundEmails?: SequenceOutboundEmailUncheckedCreateNestedManyWithoutCreatorListInput
|
|
121680
121763
|
sequenceInboundEmails?: SequenceInboundEmailUncheckedCreateNestedManyWithoutCreatorListIdInput
|
|
121681
121764
|
sequenceImapCheckpoints?: SequenceImapCheckpointUncheckedCreateNestedManyWithoutCreatorListIdInput
|
|
121765
|
+
sequenceOutboundReplyEmail?: SequenceOutboundReplyEmailUncheckedCreateNestedManyWithoutCreatorListItemInput
|
|
121682
121766
|
}
|
|
121683
121767
|
|
|
121684
121768
|
export type CreatorListItemUpdateInput = {
|
|
@@ -121693,6 +121777,7 @@ export namespace Prisma {
|
|
|
121693
121777
|
sequenceOutboundEmails?: SequenceOutboundEmailUpdateManyWithoutCreatorListNestedInput
|
|
121694
121778
|
sequenceInboundEmails?: SequenceInboundEmailUpdateManyWithoutCreatorListIdNestedInput
|
|
121695
121779
|
sequenceImapCheckpoints?: SequenceImapCheckpointUpdateManyWithoutCreatorListIdNestedInput
|
|
121780
|
+
sequenceOutboundReplyEmail?: SequenceOutboundReplyEmailUpdateManyWithoutCreatorListItemNestedInput
|
|
121696
121781
|
}
|
|
121697
121782
|
|
|
121698
121783
|
export type CreatorListItemUncheckedUpdateInput = {
|
|
@@ -121708,6 +121793,7 @@ export namespace Prisma {
|
|
|
121708
121793
|
sequenceOutboundEmails?: SequenceOutboundEmailUncheckedUpdateManyWithoutCreatorListNestedInput
|
|
121709
121794
|
sequenceInboundEmails?: SequenceInboundEmailUncheckedUpdateManyWithoutCreatorListIdNestedInput
|
|
121710
121795
|
sequenceImapCheckpoints?: SequenceImapCheckpointUncheckedUpdateManyWithoutCreatorListIdNestedInput
|
|
121796
|
+
sequenceOutboundReplyEmail?: SequenceOutboundReplyEmailUncheckedUpdateManyWithoutCreatorListItemNestedInput
|
|
121711
121797
|
}
|
|
121712
121798
|
|
|
121713
121799
|
export type CreatorListItemCreateManyInput = {
|
|
@@ -124006,12 +124092,14 @@ export namespace Prisma {
|
|
|
124006
124092
|
replyCount?: number
|
|
124007
124093
|
createdAt?: Date | string
|
|
124008
124094
|
updatedAt?: Date | string
|
|
124095
|
+
creatorListItem?: CreatorListItemCreateNestedOneWithoutSequenceOutboundReplyEmailInput
|
|
124009
124096
|
sequence: SequenceCreateNestedOneWithoutSequenceoutboundreplyemailInput
|
|
124010
124097
|
}
|
|
124011
124098
|
|
|
124012
124099
|
export type SequenceOutboundReplyEmailUncheckedCreateInput = {
|
|
124013
124100
|
id?: number
|
|
124014
124101
|
sequenceId: number
|
|
124102
|
+
listItemId?: number | null
|
|
124015
124103
|
type: number
|
|
124016
124104
|
typeId: string
|
|
124017
124105
|
replyCount?: number
|
|
@@ -124025,12 +124113,14 @@ export namespace Prisma {
|
|
|
124025
124113
|
replyCount?: IntFieldUpdateOperationsInput | number
|
|
124026
124114
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
124027
124115
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
124116
|
+
creatorListItem?: CreatorListItemUpdateOneWithoutSequenceOutboundReplyEmailNestedInput
|
|
124028
124117
|
sequence?: SequenceUpdateOneRequiredWithoutSequenceoutboundreplyemailNestedInput
|
|
124029
124118
|
}
|
|
124030
124119
|
|
|
124031
124120
|
export type SequenceOutboundReplyEmailUncheckedUpdateInput = {
|
|
124032
124121
|
id?: IntFieldUpdateOperationsInput | number
|
|
124033
124122
|
sequenceId?: IntFieldUpdateOperationsInput | number
|
|
124123
|
+
listItemId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
124034
124124
|
type?: IntFieldUpdateOperationsInput | number
|
|
124035
124125
|
typeId?: StringFieldUpdateOperationsInput | string
|
|
124036
124126
|
replyCount?: IntFieldUpdateOperationsInput | number
|
|
@@ -124041,6 +124131,7 @@ export namespace Prisma {
|
|
|
124041
124131
|
export type SequenceOutboundReplyEmailCreateManyInput = {
|
|
124042
124132
|
id?: number
|
|
124043
124133
|
sequenceId: number
|
|
124134
|
+
listItemId?: number | null
|
|
124044
124135
|
type: number
|
|
124045
124136
|
typeId: string
|
|
124046
124137
|
replyCount?: number
|
|
@@ -124059,6 +124150,7 @@ export namespace Prisma {
|
|
|
124059
124150
|
export type SequenceOutboundReplyEmailUncheckedUpdateManyInput = {
|
|
124060
124151
|
id?: IntFieldUpdateOperationsInput | number
|
|
124061
124152
|
sequenceId?: IntFieldUpdateOperationsInput | number
|
|
124153
|
+
listItemId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
124062
124154
|
type?: IntFieldUpdateOperationsInput | number
|
|
124063
124155
|
typeId?: StringFieldUpdateOperationsInput | string
|
|
124064
124156
|
replyCount?: IntFieldUpdateOperationsInput | number
|
|
@@ -128695,6 +128787,12 @@ export namespace Prisma {
|
|
|
128695
128787
|
none?: SequenceImapCheckpointWhereInput
|
|
128696
128788
|
}
|
|
128697
128789
|
|
|
128790
|
+
export type SequenceOutboundReplyEmailListRelationFilter = {
|
|
128791
|
+
every?: SequenceOutboundReplyEmailWhereInput
|
|
128792
|
+
some?: SequenceOutboundReplyEmailWhereInput
|
|
128793
|
+
none?: SequenceOutboundReplyEmailWhereInput
|
|
128794
|
+
}
|
|
128795
|
+
|
|
128698
128796
|
export type SequenceOutboundEmailOrderByRelationAggregateInput = {
|
|
128699
128797
|
_count?: SortOrder
|
|
128700
128798
|
}
|
|
@@ -128707,6 +128805,10 @@ export namespace Prisma {
|
|
|
128707
128805
|
_count?: SortOrder
|
|
128708
128806
|
}
|
|
128709
128807
|
|
|
128808
|
+
export type SequenceOutboundReplyEmailOrderByRelationAggregateInput = {
|
|
128809
|
+
_count?: SortOrder
|
|
128810
|
+
}
|
|
128811
|
+
|
|
128710
128812
|
export type CreatorListItemOrderByRelevanceInput = {
|
|
128711
128813
|
fields: CreatorListItemOrderByRelevanceFieldEnum | CreatorListItemOrderByRelevanceFieldEnum[]
|
|
128712
128814
|
sort: SortOrder
|
|
@@ -129453,16 +129555,6 @@ export namespace Prisma {
|
|
|
129453
129555
|
brandId?: SortOrder
|
|
129454
129556
|
}
|
|
129455
129557
|
|
|
129456
|
-
export type SequenceOutboundReplyEmailListRelationFilter = {
|
|
129457
|
-
every?: SequenceOutboundReplyEmailWhereInput
|
|
129458
|
-
some?: SequenceOutboundReplyEmailWhereInput
|
|
129459
|
-
none?: SequenceOutboundReplyEmailWhereInput
|
|
129460
|
-
}
|
|
129461
|
-
|
|
129462
|
-
export type SequenceOutboundReplyEmailOrderByRelationAggregateInput = {
|
|
129463
|
-
_count?: SortOrder
|
|
129464
|
-
}
|
|
129465
|
-
|
|
129466
129558
|
export type SequenceOrderByRelevanceInput = {
|
|
129467
129559
|
fields: SequenceOrderByRelevanceFieldEnum | SequenceOrderByRelevanceFieldEnum[]
|
|
129468
129560
|
sort: SortOrder
|
|
@@ -130493,6 +130585,11 @@ export namespace Prisma {
|
|
|
130493
130585
|
openCount?: SortOrder
|
|
130494
130586
|
}
|
|
130495
130587
|
|
|
130588
|
+
export type CreatorListItemNullableRelationFilter = {
|
|
130589
|
+
is?: CreatorListItemWhereInput | null
|
|
130590
|
+
isNot?: CreatorListItemWhereInput | null
|
|
130591
|
+
}
|
|
130592
|
+
|
|
130496
130593
|
export type SequenceOutboundReplyEmailOrderByRelevanceInput = {
|
|
130497
130594
|
fields: SequenceOutboundReplyEmailOrderByRelevanceFieldEnum | SequenceOutboundReplyEmailOrderByRelevanceFieldEnum[]
|
|
130498
130595
|
sort: SortOrder
|
|
@@ -130502,6 +130599,7 @@ export namespace Prisma {
|
|
|
130502
130599
|
export type SequenceOutboundReplyEmailCountOrderByAggregateInput = {
|
|
130503
130600
|
id?: SortOrder
|
|
130504
130601
|
sequenceId?: SortOrder
|
|
130602
|
+
listItemId?: SortOrder
|
|
130505
130603
|
type?: SortOrder
|
|
130506
130604
|
typeId?: SortOrder
|
|
130507
130605
|
replyCount?: SortOrder
|
|
@@ -130512,6 +130610,7 @@ export namespace Prisma {
|
|
|
130512
130610
|
export type SequenceOutboundReplyEmailAvgOrderByAggregateInput = {
|
|
130513
130611
|
id?: SortOrder
|
|
130514
130612
|
sequenceId?: SortOrder
|
|
130613
|
+
listItemId?: SortOrder
|
|
130515
130614
|
type?: SortOrder
|
|
130516
130615
|
replyCount?: SortOrder
|
|
130517
130616
|
}
|
|
@@ -130519,6 +130618,7 @@ export namespace Prisma {
|
|
|
130519
130618
|
export type SequenceOutboundReplyEmailMaxOrderByAggregateInput = {
|
|
130520
130619
|
id?: SortOrder
|
|
130521
130620
|
sequenceId?: SortOrder
|
|
130621
|
+
listItemId?: SortOrder
|
|
130522
130622
|
type?: SortOrder
|
|
130523
130623
|
typeId?: SortOrder
|
|
130524
130624
|
replyCount?: SortOrder
|
|
@@ -130529,6 +130629,7 @@ export namespace Prisma {
|
|
|
130529
130629
|
export type SequenceOutboundReplyEmailMinOrderByAggregateInput = {
|
|
130530
130630
|
id?: SortOrder
|
|
130531
130631
|
sequenceId?: SortOrder
|
|
130632
|
+
listItemId?: SortOrder
|
|
130532
130633
|
type?: SortOrder
|
|
130533
130634
|
typeId?: SortOrder
|
|
130534
130635
|
replyCount?: SortOrder
|
|
@@ -130539,6 +130640,7 @@ export namespace Prisma {
|
|
|
130539
130640
|
export type SequenceOutboundReplyEmailSumOrderByAggregateInput = {
|
|
130540
130641
|
id?: SortOrder
|
|
130541
130642
|
sequenceId?: SortOrder
|
|
130643
|
+
listItemId?: SortOrder
|
|
130542
130644
|
type?: SortOrder
|
|
130543
130645
|
replyCount?: SortOrder
|
|
130544
130646
|
}
|
|
@@ -137164,6 +137266,13 @@ export namespace Prisma {
|
|
|
137164
137266
|
connect?: SequenceImapCheckpointWhereUniqueInput | SequenceImapCheckpointWhereUniqueInput[]
|
|
137165
137267
|
}
|
|
137166
137268
|
|
|
137269
|
+
export type SequenceOutboundReplyEmailCreateNestedManyWithoutCreatorListItemInput = {
|
|
137270
|
+
create?: XOR<SequenceOutboundReplyEmailCreateWithoutCreatorListItemInput, SequenceOutboundReplyEmailUncheckedCreateWithoutCreatorListItemInput> | SequenceOutboundReplyEmailCreateWithoutCreatorListItemInput[] | SequenceOutboundReplyEmailUncheckedCreateWithoutCreatorListItemInput[]
|
|
137271
|
+
connectOrCreate?: SequenceOutboundReplyEmailCreateOrConnectWithoutCreatorListItemInput | SequenceOutboundReplyEmailCreateOrConnectWithoutCreatorListItemInput[]
|
|
137272
|
+
createMany?: SequenceOutboundReplyEmailCreateManyCreatorListItemInputEnvelope
|
|
137273
|
+
connect?: SequenceOutboundReplyEmailWhereUniqueInput | SequenceOutboundReplyEmailWhereUniqueInput[]
|
|
137274
|
+
}
|
|
137275
|
+
|
|
137167
137276
|
export type SequenceOutboundEmailUncheckedCreateNestedManyWithoutCreatorListInput = {
|
|
137168
137277
|
create?: XOR<SequenceOutboundEmailCreateWithoutCreatorListInput, SequenceOutboundEmailUncheckedCreateWithoutCreatorListInput> | SequenceOutboundEmailCreateWithoutCreatorListInput[] | SequenceOutboundEmailUncheckedCreateWithoutCreatorListInput[]
|
|
137169
137278
|
connectOrCreate?: SequenceOutboundEmailCreateOrConnectWithoutCreatorListInput | SequenceOutboundEmailCreateOrConnectWithoutCreatorListInput[]
|
|
@@ -137185,6 +137294,13 @@ export namespace Prisma {
|
|
|
137185
137294
|
connect?: SequenceImapCheckpointWhereUniqueInput | SequenceImapCheckpointWhereUniqueInput[]
|
|
137186
137295
|
}
|
|
137187
137296
|
|
|
137297
|
+
export type SequenceOutboundReplyEmailUncheckedCreateNestedManyWithoutCreatorListItemInput = {
|
|
137298
|
+
create?: XOR<SequenceOutboundReplyEmailCreateWithoutCreatorListItemInput, SequenceOutboundReplyEmailUncheckedCreateWithoutCreatorListItemInput> | SequenceOutboundReplyEmailCreateWithoutCreatorListItemInput[] | SequenceOutboundReplyEmailUncheckedCreateWithoutCreatorListItemInput[]
|
|
137299
|
+
connectOrCreate?: SequenceOutboundReplyEmailCreateOrConnectWithoutCreatorListItemInput | SequenceOutboundReplyEmailCreateOrConnectWithoutCreatorListItemInput[]
|
|
137300
|
+
createMany?: SequenceOutboundReplyEmailCreateManyCreatorListItemInputEnvelope
|
|
137301
|
+
connect?: SequenceOutboundReplyEmailWhereUniqueInput | SequenceOutboundReplyEmailWhereUniqueInput[]
|
|
137302
|
+
}
|
|
137303
|
+
|
|
137188
137304
|
export type CreatorListUpdateOneRequiredWithoutCreatorsNestedInput = {
|
|
137189
137305
|
create?: XOR<CreatorListCreateWithoutCreatorsInput, CreatorListUncheckedCreateWithoutCreatorsInput>
|
|
137190
137306
|
connectOrCreate?: CreatorListCreateOrConnectWithoutCreatorsInput
|
|
@@ -137245,6 +137361,20 @@ export namespace Prisma {
|
|
|
137245
137361
|
deleteMany?: SequenceImapCheckpointScalarWhereInput | SequenceImapCheckpointScalarWhereInput[]
|
|
137246
137362
|
}
|
|
137247
137363
|
|
|
137364
|
+
export type SequenceOutboundReplyEmailUpdateManyWithoutCreatorListItemNestedInput = {
|
|
137365
|
+
create?: XOR<SequenceOutboundReplyEmailCreateWithoutCreatorListItemInput, SequenceOutboundReplyEmailUncheckedCreateWithoutCreatorListItemInput> | SequenceOutboundReplyEmailCreateWithoutCreatorListItemInput[] | SequenceOutboundReplyEmailUncheckedCreateWithoutCreatorListItemInput[]
|
|
137366
|
+
connectOrCreate?: SequenceOutboundReplyEmailCreateOrConnectWithoutCreatorListItemInput | SequenceOutboundReplyEmailCreateOrConnectWithoutCreatorListItemInput[]
|
|
137367
|
+
upsert?: SequenceOutboundReplyEmailUpsertWithWhereUniqueWithoutCreatorListItemInput | SequenceOutboundReplyEmailUpsertWithWhereUniqueWithoutCreatorListItemInput[]
|
|
137368
|
+
createMany?: SequenceOutboundReplyEmailCreateManyCreatorListItemInputEnvelope
|
|
137369
|
+
set?: SequenceOutboundReplyEmailWhereUniqueInput | SequenceOutboundReplyEmailWhereUniqueInput[]
|
|
137370
|
+
disconnect?: SequenceOutboundReplyEmailWhereUniqueInput | SequenceOutboundReplyEmailWhereUniqueInput[]
|
|
137371
|
+
delete?: SequenceOutboundReplyEmailWhereUniqueInput | SequenceOutboundReplyEmailWhereUniqueInput[]
|
|
137372
|
+
connect?: SequenceOutboundReplyEmailWhereUniqueInput | SequenceOutboundReplyEmailWhereUniqueInput[]
|
|
137373
|
+
update?: SequenceOutboundReplyEmailUpdateWithWhereUniqueWithoutCreatorListItemInput | SequenceOutboundReplyEmailUpdateWithWhereUniqueWithoutCreatorListItemInput[]
|
|
137374
|
+
updateMany?: SequenceOutboundReplyEmailUpdateManyWithWhereWithoutCreatorListItemInput | SequenceOutboundReplyEmailUpdateManyWithWhereWithoutCreatorListItemInput[]
|
|
137375
|
+
deleteMany?: SequenceOutboundReplyEmailScalarWhereInput | SequenceOutboundReplyEmailScalarWhereInput[]
|
|
137376
|
+
}
|
|
137377
|
+
|
|
137248
137378
|
export type SequenceOutboundEmailUncheckedUpdateManyWithoutCreatorListNestedInput = {
|
|
137249
137379
|
create?: XOR<SequenceOutboundEmailCreateWithoutCreatorListInput, SequenceOutboundEmailUncheckedCreateWithoutCreatorListInput> | SequenceOutboundEmailCreateWithoutCreatorListInput[] | SequenceOutboundEmailUncheckedCreateWithoutCreatorListInput[]
|
|
137250
137380
|
connectOrCreate?: SequenceOutboundEmailCreateOrConnectWithoutCreatorListInput | SequenceOutboundEmailCreateOrConnectWithoutCreatorListInput[]
|
|
@@ -137287,6 +137417,20 @@ export namespace Prisma {
|
|
|
137287
137417
|
deleteMany?: SequenceImapCheckpointScalarWhereInput | SequenceImapCheckpointScalarWhereInput[]
|
|
137288
137418
|
}
|
|
137289
137419
|
|
|
137420
|
+
export type SequenceOutboundReplyEmailUncheckedUpdateManyWithoutCreatorListItemNestedInput = {
|
|
137421
|
+
create?: XOR<SequenceOutboundReplyEmailCreateWithoutCreatorListItemInput, SequenceOutboundReplyEmailUncheckedCreateWithoutCreatorListItemInput> | SequenceOutboundReplyEmailCreateWithoutCreatorListItemInput[] | SequenceOutboundReplyEmailUncheckedCreateWithoutCreatorListItemInput[]
|
|
137422
|
+
connectOrCreate?: SequenceOutboundReplyEmailCreateOrConnectWithoutCreatorListItemInput | SequenceOutboundReplyEmailCreateOrConnectWithoutCreatorListItemInput[]
|
|
137423
|
+
upsert?: SequenceOutboundReplyEmailUpsertWithWhereUniqueWithoutCreatorListItemInput | SequenceOutboundReplyEmailUpsertWithWhereUniqueWithoutCreatorListItemInput[]
|
|
137424
|
+
createMany?: SequenceOutboundReplyEmailCreateManyCreatorListItemInputEnvelope
|
|
137425
|
+
set?: SequenceOutboundReplyEmailWhereUniqueInput | SequenceOutboundReplyEmailWhereUniqueInput[]
|
|
137426
|
+
disconnect?: SequenceOutboundReplyEmailWhereUniqueInput | SequenceOutboundReplyEmailWhereUniqueInput[]
|
|
137427
|
+
delete?: SequenceOutboundReplyEmailWhereUniqueInput | SequenceOutboundReplyEmailWhereUniqueInput[]
|
|
137428
|
+
connect?: SequenceOutboundReplyEmailWhereUniqueInput | SequenceOutboundReplyEmailWhereUniqueInput[]
|
|
137429
|
+
update?: SequenceOutboundReplyEmailUpdateWithWhereUniqueWithoutCreatorListItemInput | SequenceOutboundReplyEmailUpdateWithWhereUniqueWithoutCreatorListItemInput[]
|
|
137430
|
+
updateMany?: SequenceOutboundReplyEmailUpdateManyWithWhereWithoutCreatorListItemInput | SequenceOutboundReplyEmailUpdateManyWithWhereWithoutCreatorListItemInput[]
|
|
137431
|
+
deleteMany?: SequenceOutboundReplyEmailScalarWhereInput | SequenceOutboundReplyEmailScalarWhereInput[]
|
|
137432
|
+
}
|
|
137433
|
+
|
|
137290
137434
|
export type CreatorListItemCreateNestedManyWithoutSocialProfileInput = {
|
|
137291
137435
|
create?: XOR<CreatorListItemCreateWithoutSocialProfileInput, CreatorListItemUncheckedCreateWithoutSocialProfileInput> | CreatorListItemCreateWithoutSocialProfileInput[] | CreatorListItemUncheckedCreateWithoutSocialProfileInput[]
|
|
137292
137436
|
connectOrCreate?: CreatorListItemCreateOrConnectWithoutSocialProfileInput | CreatorListItemCreateOrConnectWithoutSocialProfileInput[]
|
|
@@ -138901,12 +139045,28 @@ export namespace Prisma {
|
|
|
138901
139045
|
update?: XOR<XOR<SequenceUpdateToOneWithWhereWithoutEmailTrackingsInput, SequenceUpdateWithoutEmailTrackingsInput>, SequenceUncheckedUpdateWithoutEmailTrackingsInput>
|
|
138902
139046
|
}
|
|
138903
139047
|
|
|
139048
|
+
export type CreatorListItemCreateNestedOneWithoutSequenceOutboundReplyEmailInput = {
|
|
139049
|
+
create?: XOR<CreatorListItemCreateWithoutSequenceOutboundReplyEmailInput, CreatorListItemUncheckedCreateWithoutSequenceOutboundReplyEmailInput>
|
|
139050
|
+
connectOrCreate?: CreatorListItemCreateOrConnectWithoutSequenceOutboundReplyEmailInput
|
|
139051
|
+
connect?: CreatorListItemWhereUniqueInput
|
|
139052
|
+
}
|
|
139053
|
+
|
|
138904
139054
|
export type SequenceCreateNestedOneWithoutSequenceoutboundreplyemailInput = {
|
|
138905
139055
|
create?: XOR<SequenceCreateWithoutSequenceoutboundreplyemailInput, SequenceUncheckedCreateWithoutSequenceoutboundreplyemailInput>
|
|
138906
139056
|
connectOrCreate?: SequenceCreateOrConnectWithoutSequenceoutboundreplyemailInput
|
|
138907
139057
|
connect?: SequenceWhereUniqueInput
|
|
138908
139058
|
}
|
|
138909
139059
|
|
|
139060
|
+
export type CreatorListItemUpdateOneWithoutSequenceOutboundReplyEmailNestedInput = {
|
|
139061
|
+
create?: XOR<CreatorListItemCreateWithoutSequenceOutboundReplyEmailInput, CreatorListItemUncheckedCreateWithoutSequenceOutboundReplyEmailInput>
|
|
139062
|
+
connectOrCreate?: CreatorListItemCreateOrConnectWithoutSequenceOutboundReplyEmailInput
|
|
139063
|
+
upsert?: CreatorListItemUpsertWithoutSequenceOutboundReplyEmailInput
|
|
139064
|
+
disconnect?: CreatorListItemWhereInput | boolean
|
|
139065
|
+
delete?: CreatorListItemWhereInput | boolean
|
|
139066
|
+
connect?: CreatorListItemWhereUniqueInput
|
|
139067
|
+
update?: XOR<XOR<CreatorListItemUpdateToOneWithWhereWithoutSequenceOutboundReplyEmailInput, CreatorListItemUpdateWithoutSequenceOutboundReplyEmailInput>, CreatorListItemUncheckedUpdateWithoutSequenceOutboundReplyEmailInput>
|
|
139068
|
+
}
|
|
139069
|
+
|
|
138910
139070
|
export type SequenceUpdateOneRequiredWithoutSequenceoutboundreplyemailNestedInput = {
|
|
138911
139071
|
create?: XOR<SequenceCreateWithoutSequenceoutboundreplyemailInput, SequenceUncheckedCreateWithoutSequenceoutboundreplyemailInput>
|
|
138912
139072
|
connectOrCreate?: SequenceCreateOrConnectWithoutSequenceoutboundreplyemailInput
|
|
@@ -162174,6 +162334,7 @@ export namespace Prisma {
|
|
|
162174
162334
|
sequenceOutboundEmails?: SequenceOutboundEmailCreateNestedManyWithoutCreatorListInput
|
|
162175
162335
|
sequenceInboundEmails?: SequenceInboundEmailCreateNestedManyWithoutCreatorListIdInput
|
|
162176
162336
|
sequenceImapCheckpoints?: SequenceImapCheckpointCreateNestedManyWithoutCreatorListIdInput
|
|
162337
|
+
sequenceOutboundReplyEmail?: SequenceOutboundReplyEmailCreateNestedManyWithoutCreatorListItemInput
|
|
162177
162338
|
}
|
|
162178
162339
|
|
|
162179
162340
|
export type CreatorListItemUncheckedCreateWithoutCreatorListInput = {
|
|
@@ -162188,6 +162349,7 @@ export namespace Prisma {
|
|
|
162188
162349
|
sequenceOutboundEmails?: SequenceOutboundEmailUncheckedCreateNestedManyWithoutCreatorListInput
|
|
162189
162350
|
sequenceInboundEmails?: SequenceInboundEmailUncheckedCreateNestedManyWithoutCreatorListIdInput
|
|
162190
162351
|
sequenceImapCheckpoints?: SequenceImapCheckpointUncheckedCreateNestedManyWithoutCreatorListIdInput
|
|
162352
|
+
sequenceOutboundReplyEmail?: SequenceOutboundReplyEmailUncheckedCreateNestedManyWithoutCreatorListItemInput
|
|
162191
162353
|
}
|
|
162192
162354
|
|
|
162193
162355
|
export type CreatorListItemCreateOrConnectWithoutCreatorListInput = {
|
|
@@ -163182,6 +163344,35 @@ export namespace Prisma {
|
|
|
163182
163344
|
skipDuplicates?: boolean
|
|
163183
163345
|
}
|
|
163184
163346
|
|
|
163347
|
+
export type SequenceOutboundReplyEmailCreateWithoutCreatorListItemInput = {
|
|
163348
|
+
type: number
|
|
163349
|
+
typeId: string
|
|
163350
|
+
replyCount?: number
|
|
163351
|
+
createdAt?: Date | string
|
|
163352
|
+
updatedAt?: Date | string
|
|
163353
|
+
sequence: SequenceCreateNestedOneWithoutSequenceoutboundreplyemailInput
|
|
163354
|
+
}
|
|
163355
|
+
|
|
163356
|
+
export type SequenceOutboundReplyEmailUncheckedCreateWithoutCreatorListItemInput = {
|
|
163357
|
+
id?: number
|
|
163358
|
+
sequenceId: number
|
|
163359
|
+
type: number
|
|
163360
|
+
typeId: string
|
|
163361
|
+
replyCount?: number
|
|
163362
|
+
createdAt?: Date | string
|
|
163363
|
+
updatedAt?: Date | string
|
|
163364
|
+
}
|
|
163365
|
+
|
|
163366
|
+
export type SequenceOutboundReplyEmailCreateOrConnectWithoutCreatorListItemInput = {
|
|
163367
|
+
where: SequenceOutboundReplyEmailWhereUniqueInput
|
|
163368
|
+
create: XOR<SequenceOutboundReplyEmailCreateWithoutCreatorListItemInput, SequenceOutboundReplyEmailUncheckedCreateWithoutCreatorListItemInput>
|
|
163369
|
+
}
|
|
163370
|
+
|
|
163371
|
+
export type SequenceOutboundReplyEmailCreateManyCreatorListItemInputEnvelope = {
|
|
163372
|
+
data: SequenceOutboundReplyEmailCreateManyCreatorListItemInput | SequenceOutboundReplyEmailCreateManyCreatorListItemInput[]
|
|
163373
|
+
skipDuplicates?: boolean
|
|
163374
|
+
}
|
|
163375
|
+
|
|
163185
163376
|
export type CreatorListUpsertWithoutCreatorsInput = {
|
|
163186
163377
|
update: XOR<CreatorListUpdateWithoutCreatorsInput, CreatorListUncheckedUpdateWithoutCreatorsInput>
|
|
163187
163378
|
create: XOR<CreatorListCreateWithoutCreatorsInput, CreatorListUncheckedCreateWithoutCreatorsInput>
|
|
@@ -163357,6 +163548,36 @@ export namespace Prisma {
|
|
|
163357
163548
|
updatedAt?: DateTimeFilter<"SequenceImapCheckpoint"> | Date | string
|
|
163358
163549
|
}
|
|
163359
163550
|
|
|
163551
|
+
export type SequenceOutboundReplyEmailUpsertWithWhereUniqueWithoutCreatorListItemInput = {
|
|
163552
|
+
where: SequenceOutboundReplyEmailWhereUniqueInput
|
|
163553
|
+
update: XOR<SequenceOutboundReplyEmailUpdateWithoutCreatorListItemInput, SequenceOutboundReplyEmailUncheckedUpdateWithoutCreatorListItemInput>
|
|
163554
|
+
create: XOR<SequenceOutboundReplyEmailCreateWithoutCreatorListItemInput, SequenceOutboundReplyEmailUncheckedCreateWithoutCreatorListItemInput>
|
|
163555
|
+
}
|
|
163556
|
+
|
|
163557
|
+
export type SequenceOutboundReplyEmailUpdateWithWhereUniqueWithoutCreatorListItemInput = {
|
|
163558
|
+
where: SequenceOutboundReplyEmailWhereUniqueInput
|
|
163559
|
+
data: XOR<SequenceOutboundReplyEmailUpdateWithoutCreatorListItemInput, SequenceOutboundReplyEmailUncheckedUpdateWithoutCreatorListItemInput>
|
|
163560
|
+
}
|
|
163561
|
+
|
|
163562
|
+
export type SequenceOutboundReplyEmailUpdateManyWithWhereWithoutCreatorListItemInput = {
|
|
163563
|
+
where: SequenceOutboundReplyEmailScalarWhereInput
|
|
163564
|
+
data: XOR<SequenceOutboundReplyEmailUpdateManyMutationInput, SequenceOutboundReplyEmailUncheckedUpdateManyWithoutCreatorListItemInput>
|
|
163565
|
+
}
|
|
163566
|
+
|
|
163567
|
+
export type SequenceOutboundReplyEmailScalarWhereInput = {
|
|
163568
|
+
AND?: SequenceOutboundReplyEmailScalarWhereInput | SequenceOutboundReplyEmailScalarWhereInput[]
|
|
163569
|
+
OR?: SequenceOutboundReplyEmailScalarWhereInput[]
|
|
163570
|
+
NOT?: SequenceOutboundReplyEmailScalarWhereInput | SequenceOutboundReplyEmailScalarWhereInput[]
|
|
163571
|
+
id?: IntFilter<"SequenceOutboundReplyEmail"> | number
|
|
163572
|
+
sequenceId?: IntFilter<"SequenceOutboundReplyEmail"> | number
|
|
163573
|
+
listItemId?: IntNullableFilter<"SequenceOutboundReplyEmail"> | number | null
|
|
163574
|
+
type?: IntFilter<"SequenceOutboundReplyEmail"> | number
|
|
163575
|
+
typeId?: StringFilter<"SequenceOutboundReplyEmail"> | string
|
|
163576
|
+
replyCount?: IntFilter<"SequenceOutboundReplyEmail"> | number
|
|
163577
|
+
createdAt?: DateTimeFilter<"SequenceOutboundReplyEmail"> | Date | string
|
|
163578
|
+
updatedAt?: DateTimeFilter<"SequenceOutboundReplyEmail"> | Date | string
|
|
163579
|
+
}
|
|
163580
|
+
|
|
163360
163581
|
export type CreatorListItemCreateWithoutSocialProfileInput = {
|
|
163361
163582
|
saved?: Date | string
|
|
163362
163583
|
invited?: Date | string | null
|
|
@@ -163368,6 +163589,7 @@ export namespace Prisma {
|
|
|
163368
163589
|
sequenceOutboundEmails?: SequenceOutboundEmailCreateNestedManyWithoutCreatorListInput
|
|
163369
163590
|
sequenceInboundEmails?: SequenceInboundEmailCreateNestedManyWithoutCreatorListIdInput
|
|
163370
163591
|
sequenceImapCheckpoints?: SequenceImapCheckpointCreateNestedManyWithoutCreatorListIdInput
|
|
163592
|
+
sequenceOutboundReplyEmail?: SequenceOutboundReplyEmailCreateNestedManyWithoutCreatorListItemInput
|
|
163371
163593
|
}
|
|
163372
163594
|
|
|
163373
163595
|
export type CreatorListItemUncheckedCreateWithoutSocialProfileInput = {
|
|
@@ -163382,6 +163604,7 @@ export namespace Prisma {
|
|
|
163382
163604
|
sequenceOutboundEmails?: SequenceOutboundEmailUncheckedCreateNestedManyWithoutCreatorListInput
|
|
163383
163605
|
sequenceInboundEmails?: SequenceInboundEmailUncheckedCreateNestedManyWithoutCreatorListIdInput
|
|
163384
163606
|
sequenceImapCheckpoints?: SequenceImapCheckpointUncheckedCreateNestedManyWithoutCreatorListIdInput
|
|
163607
|
+
sequenceOutboundReplyEmail?: SequenceOutboundReplyEmailUncheckedCreateNestedManyWithoutCreatorListItemInput
|
|
163385
163608
|
}
|
|
163386
163609
|
|
|
163387
163610
|
export type CreatorListItemCreateOrConnectWithoutSocialProfileInput = {
|
|
@@ -167348,10 +167571,12 @@ export namespace Prisma {
|
|
|
167348
167571
|
replyCount?: number
|
|
167349
167572
|
createdAt?: Date | string
|
|
167350
167573
|
updatedAt?: Date | string
|
|
167574
|
+
creatorListItem?: CreatorListItemCreateNestedOneWithoutSequenceOutboundReplyEmailInput
|
|
167351
167575
|
}
|
|
167352
167576
|
|
|
167353
167577
|
export type SequenceOutboundReplyEmailUncheckedCreateWithoutSequenceInput = {
|
|
167354
167578
|
id?: number
|
|
167579
|
+
listItemId?: number | null
|
|
167355
167580
|
type: number
|
|
167356
167581
|
typeId: string
|
|
167357
167582
|
replyCount?: number
|
|
@@ -167757,19 +167982,6 @@ export namespace Prisma {
|
|
|
167757
167982
|
data: XOR<SequenceOutboundReplyEmailUpdateManyMutationInput, SequenceOutboundReplyEmailUncheckedUpdateManyWithoutSequenceInput>
|
|
167758
167983
|
}
|
|
167759
167984
|
|
|
167760
|
-
export type SequenceOutboundReplyEmailScalarWhereInput = {
|
|
167761
|
-
AND?: SequenceOutboundReplyEmailScalarWhereInput | SequenceOutboundReplyEmailScalarWhereInput[]
|
|
167762
|
-
OR?: SequenceOutboundReplyEmailScalarWhereInput[]
|
|
167763
|
-
NOT?: SequenceOutboundReplyEmailScalarWhereInput | SequenceOutboundReplyEmailScalarWhereInput[]
|
|
167764
|
-
id?: IntFilter<"SequenceOutboundReplyEmail"> | number
|
|
167765
|
-
sequenceId?: IntFilter<"SequenceOutboundReplyEmail"> | number
|
|
167766
|
-
type?: IntFilter<"SequenceOutboundReplyEmail"> | number
|
|
167767
|
-
typeId?: StringFilter<"SequenceOutboundReplyEmail"> | string
|
|
167768
|
-
replyCount?: IntFilter<"SequenceOutboundReplyEmail"> | number
|
|
167769
|
-
createdAt?: DateTimeFilter<"SequenceOutboundReplyEmail"> | Date | string
|
|
167770
|
-
updatedAt?: DateTimeFilter<"SequenceOutboundReplyEmail"> | Date | string
|
|
167771
|
-
}
|
|
167772
|
-
|
|
167773
167985
|
export type SequenceCreateWithoutStepsInput = {
|
|
167774
167986
|
title: string
|
|
167775
167987
|
createdAt?: Date | string
|
|
@@ -167984,6 +168196,7 @@ export namespace Prisma {
|
|
|
167984
168196
|
socialProfile?: SocialProfileCreateNestedOneWithoutCreatorListItemsInput
|
|
167985
168197
|
sequenceInboundEmails?: SequenceInboundEmailCreateNestedManyWithoutCreatorListIdInput
|
|
167986
168198
|
sequenceImapCheckpoints?: SequenceImapCheckpointCreateNestedManyWithoutCreatorListIdInput
|
|
168199
|
+
sequenceOutboundReplyEmail?: SequenceOutboundReplyEmailCreateNestedManyWithoutCreatorListItemInput
|
|
167987
168200
|
}
|
|
167988
168201
|
|
|
167989
168202
|
export type CreatorListItemUncheckedCreateWithoutSequenceOutboundEmailsInput = {
|
|
@@ -167998,6 +168211,7 @@ export namespace Prisma {
|
|
|
167998
168211
|
metaData?: NullableJsonNullValueInput | InputJsonValue
|
|
167999
168212
|
sequenceInboundEmails?: SequenceInboundEmailUncheckedCreateNestedManyWithoutCreatorListIdInput
|
|
168000
168213
|
sequenceImapCheckpoints?: SequenceImapCheckpointUncheckedCreateNestedManyWithoutCreatorListIdInput
|
|
168214
|
+
sequenceOutboundReplyEmail?: SequenceOutboundReplyEmailUncheckedCreateNestedManyWithoutCreatorListItemInput
|
|
168001
168215
|
}
|
|
168002
168216
|
|
|
168003
168217
|
export type CreatorListItemCreateOrConnectWithoutSequenceOutboundEmailsInput = {
|
|
@@ -168093,6 +168307,7 @@ export namespace Prisma {
|
|
|
168093
168307
|
socialProfile?: SocialProfileUpdateOneWithoutCreatorListItemsNestedInput
|
|
168094
168308
|
sequenceInboundEmails?: SequenceInboundEmailUpdateManyWithoutCreatorListIdNestedInput
|
|
168095
168309
|
sequenceImapCheckpoints?: SequenceImapCheckpointUpdateManyWithoutCreatorListIdNestedInput
|
|
168310
|
+
sequenceOutboundReplyEmail?: SequenceOutboundReplyEmailUpdateManyWithoutCreatorListItemNestedInput
|
|
168096
168311
|
}
|
|
168097
168312
|
|
|
168098
168313
|
export type CreatorListItemUncheckedUpdateWithoutSequenceOutboundEmailsInput = {
|
|
@@ -168107,6 +168322,7 @@ export namespace Prisma {
|
|
|
168107
168322
|
metaData?: NullableJsonNullValueInput | InputJsonValue
|
|
168108
168323
|
sequenceInboundEmails?: SequenceInboundEmailUncheckedUpdateManyWithoutCreatorListIdNestedInput
|
|
168109
168324
|
sequenceImapCheckpoints?: SequenceImapCheckpointUncheckedUpdateManyWithoutCreatorListIdNestedInput
|
|
168325
|
+
sequenceOutboundReplyEmail?: SequenceOutboundReplyEmailUncheckedUpdateManyWithoutCreatorListItemNestedInput
|
|
168110
168326
|
}
|
|
168111
168327
|
|
|
168112
168328
|
export type SequenceStepUpsertWithoutOutboundEmailsInput = {
|
|
@@ -168186,6 +168402,7 @@ export namespace Prisma {
|
|
|
168186
168402
|
socialProfile?: SocialProfileCreateNestedOneWithoutCreatorListItemsInput
|
|
168187
168403
|
sequenceOutboundEmails?: SequenceOutboundEmailCreateNestedManyWithoutCreatorListInput
|
|
168188
168404
|
sequenceImapCheckpoints?: SequenceImapCheckpointCreateNestedManyWithoutCreatorListIdInput
|
|
168405
|
+
sequenceOutboundReplyEmail?: SequenceOutboundReplyEmailCreateNestedManyWithoutCreatorListItemInput
|
|
168189
168406
|
}
|
|
168190
168407
|
|
|
168191
168408
|
export type CreatorListItemUncheckedCreateWithoutSequenceInboundEmailsInput = {
|
|
@@ -168200,6 +168417,7 @@ export namespace Prisma {
|
|
|
168200
168417
|
metaData?: NullableJsonNullValueInput | InputJsonValue
|
|
168201
168418
|
sequenceOutboundEmails?: SequenceOutboundEmailUncheckedCreateNestedManyWithoutCreatorListInput
|
|
168202
168419
|
sequenceImapCheckpoints?: SequenceImapCheckpointUncheckedCreateNestedManyWithoutCreatorListIdInput
|
|
168420
|
+
sequenceOutboundReplyEmail?: SequenceOutboundReplyEmailUncheckedCreateNestedManyWithoutCreatorListItemInput
|
|
168203
168421
|
}
|
|
168204
168422
|
|
|
168205
168423
|
export type CreatorListItemCreateOrConnectWithoutSequenceInboundEmailsInput = {
|
|
@@ -168271,6 +168489,7 @@ export namespace Prisma {
|
|
|
168271
168489
|
socialProfile?: SocialProfileUpdateOneWithoutCreatorListItemsNestedInput
|
|
168272
168490
|
sequenceOutboundEmails?: SequenceOutboundEmailUpdateManyWithoutCreatorListNestedInput
|
|
168273
168491
|
sequenceImapCheckpoints?: SequenceImapCheckpointUpdateManyWithoutCreatorListIdNestedInput
|
|
168492
|
+
sequenceOutboundReplyEmail?: SequenceOutboundReplyEmailUpdateManyWithoutCreatorListItemNestedInput
|
|
168274
168493
|
}
|
|
168275
168494
|
|
|
168276
168495
|
export type CreatorListItemUncheckedUpdateWithoutSequenceInboundEmailsInput = {
|
|
@@ -168285,6 +168504,7 @@ export namespace Prisma {
|
|
|
168285
168504
|
metaData?: NullableJsonNullValueInput | InputJsonValue
|
|
168286
168505
|
sequenceOutboundEmails?: SequenceOutboundEmailUncheckedUpdateManyWithoutCreatorListNestedInput
|
|
168287
168506
|
sequenceImapCheckpoints?: SequenceImapCheckpointUncheckedUpdateManyWithoutCreatorListIdNestedInput
|
|
168507
|
+
sequenceOutboundReplyEmail?: SequenceOutboundReplyEmailUncheckedUpdateManyWithoutCreatorListItemNestedInput
|
|
168288
168508
|
}
|
|
168289
168509
|
|
|
168290
168510
|
export type SequenceCreateWithoutImapCheckpointsInput = {
|
|
@@ -168334,6 +168554,7 @@ export namespace Prisma {
|
|
|
168334
168554
|
socialProfile?: SocialProfileCreateNestedOneWithoutCreatorListItemsInput
|
|
168335
168555
|
sequenceOutboundEmails?: SequenceOutboundEmailCreateNestedManyWithoutCreatorListInput
|
|
168336
168556
|
sequenceInboundEmails?: SequenceInboundEmailCreateNestedManyWithoutCreatorListIdInput
|
|
168557
|
+
sequenceOutboundReplyEmail?: SequenceOutboundReplyEmailCreateNestedManyWithoutCreatorListItemInput
|
|
168337
168558
|
}
|
|
168338
168559
|
|
|
168339
168560
|
export type CreatorListItemUncheckedCreateWithoutSequenceImapCheckpointsInput = {
|
|
@@ -168348,6 +168569,7 @@ export namespace Prisma {
|
|
|
168348
168569
|
metaData?: NullableJsonNullValueInput | InputJsonValue
|
|
168349
168570
|
sequenceOutboundEmails?: SequenceOutboundEmailUncheckedCreateNestedManyWithoutCreatorListInput
|
|
168350
168571
|
sequenceInboundEmails?: SequenceInboundEmailUncheckedCreateNestedManyWithoutCreatorListIdInput
|
|
168572
|
+
sequenceOutboundReplyEmail?: SequenceOutboundReplyEmailUncheckedCreateNestedManyWithoutCreatorListItemInput
|
|
168351
168573
|
}
|
|
168352
168574
|
|
|
168353
168575
|
export type CreatorListItemCreateOrConnectWithoutSequenceImapCheckpointsInput = {
|
|
@@ -168419,6 +168641,7 @@ export namespace Prisma {
|
|
|
168419
168641
|
socialProfile?: SocialProfileUpdateOneWithoutCreatorListItemsNestedInput
|
|
168420
168642
|
sequenceOutboundEmails?: SequenceOutboundEmailUpdateManyWithoutCreatorListNestedInput
|
|
168421
168643
|
sequenceInboundEmails?: SequenceInboundEmailUpdateManyWithoutCreatorListIdNestedInput
|
|
168644
|
+
sequenceOutboundReplyEmail?: SequenceOutboundReplyEmailUpdateManyWithoutCreatorListItemNestedInput
|
|
168422
168645
|
}
|
|
168423
168646
|
|
|
168424
168647
|
export type CreatorListItemUncheckedUpdateWithoutSequenceImapCheckpointsInput = {
|
|
@@ -168433,6 +168656,7 @@ export namespace Prisma {
|
|
|
168433
168656
|
metaData?: NullableJsonNullValueInput | InputJsonValue
|
|
168434
168657
|
sequenceOutboundEmails?: SequenceOutboundEmailUncheckedUpdateManyWithoutCreatorListNestedInput
|
|
168435
168658
|
sequenceInboundEmails?: SequenceInboundEmailUncheckedUpdateManyWithoutCreatorListIdNestedInput
|
|
168659
|
+
sequenceOutboundReplyEmail?: SequenceOutboundReplyEmailUncheckedUpdateManyWithoutCreatorListItemNestedInput
|
|
168436
168660
|
}
|
|
168437
168661
|
|
|
168438
168662
|
export type ShopifyProductCreateWithoutShopifyStoreInput = {
|
|
@@ -173038,6 +173262,40 @@ export namespace Prisma {
|
|
|
173038
173262
|
sequenceoutboundreplyemail?: SequenceOutboundReplyEmailUncheckedUpdateManyWithoutSequenceNestedInput
|
|
173039
173263
|
}
|
|
173040
173264
|
|
|
173265
|
+
export type CreatorListItemCreateWithoutSequenceOutboundReplyEmailInput = {
|
|
173266
|
+
saved?: Date | string
|
|
173267
|
+
invited?: Date | string | null
|
|
173268
|
+
tags?: NullableJsonNullValueInput | InputJsonValue
|
|
173269
|
+
feedback?: string | null
|
|
173270
|
+
archived?: Date | string | null
|
|
173271
|
+
metaData?: NullableJsonNullValueInput | InputJsonValue
|
|
173272
|
+
creatorList: CreatorListCreateNestedOneWithoutCreatorsInput
|
|
173273
|
+
socialProfile?: SocialProfileCreateNestedOneWithoutCreatorListItemsInput
|
|
173274
|
+
sequenceOutboundEmails?: SequenceOutboundEmailCreateNestedManyWithoutCreatorListInput
|
|
173275
|
+
sequenceInboundEmails?: SequenceInboundEmailCreateNestedManyWithoutCreatorListIdInput
|
|
173276
|
+
sequenceImapCheckpoints?: SequenceImapCheckpointCreateNestedManyWithoutCreatorListIdInput
|
|
173277
|
+
}
|
|
173278
|
+
|
|
173279
|
+
export type CreatorListItemUncheckedCreateWithoutSequenceOutboundReplyEmailInput = {
|
|
173280
|
+
id?: number
|
|
173281
|
+
socialProfileId: number
|
|
173282
|
+
creatorListId: number
|
|
173283
|
+
saved?: Date | string
|
|
173284
|
+
invited?: Date | string | null
|
|
173285
|
+
tags?: NullableJsonNullValueInput | InputJsonValue
|
|
173286
|
+
feedback?: string | null
|
|
173287
|
+
archived?: Date | string | null
|
|
173288
|
+
metaData?: NullableJsonNullValueInput | InputJsonValue
|
|
173289
|
+
sequenceOutboundEmails?: SequenceOutboundEmailUncheckedCreateNestedManyWithoutCreatorListInput
|
|
173290
|
+
sequenceInboundEmails?: SequenceInboundEmailUncheckedCreateNestedManyWithoutCreatorListIdInput
|
|
173291
|
+
sequenceImapCheckpoints?: SequenceImapCheckpointUncheckedCreateNestedManyWithoutCreatorListIdInput
|
|
173292
|
+
}
|
|
173293
|
+
|
|
173294
|
+
export type CreatorListItemCreateOrConnectWithoutSequenceOutboundReplyEmailInput = {
|
|
173295
|
+
where: CreatorListItemWhereUniqueInput
|
|
173296
|
+
create: XOR<CreatorListItemCreateWithoutSequenceOutboundReplyEmailInput, CreatorListItemUncheckedCreateWithoutSequenceOutboundReplyEmailInput>
|
|
173297
|
+
}
|
|
173298
|
+
|
|
173041
173299
|
export type SequenceCreateWithoutSequenceoutboundreplyemailInput = {
|
|
173042
173300
|
title: string
|
|
173043
173301
|
createdAt?: Date | string
|
|
@@ -173074,6 +173332,46 @@ export namespace Prisma {
|
|
|
173074
173332
|
create: XOR<SequenceCreateWithoutSequenceoutboundreplyemailInput, SequenceUncheckedCreateWithoutSequenceoutboundreplyemailInput>
|
|
173075
173333
|
}
|
|
173076
173334
|
|
|
173335
|
+
export type CreatorListItemUpsertWithoutSequenceOutboundReplyEmailInput = {
|
|
173336
|
+
update: XOR<CreatorListItemUpdateWithoutSequenceOutboundReplyEmailInput, CreatorListItemUncheckedUpdateWithoutSequenceOutboundReplyEmailInput>
|
|
173337
|
+
create: XOR<CreatorListItemCreateWithoutSequenceOutboundReplyEmailInput, CreatorListItemUncheckedCreateWithoutSequenceOutboundReplyEmailInput>
|
|
173338
|
+
where?: CreatorListItemWhereInput
|
|
173339
|
+
}
|
|
173340
|
+
|
|
173341
|
+
export type CreatorListItemUpdateToOneWithWhereWithoutSequenceOutboundReplyEmailInput = {
|
|
173342
|
+
where?: CreatorListItemWhereInput
|
|
173343
|
+
data: XOR<CreatorListItemUpdateWithoutSequenceOutboundReplyEmailInput, CreatorListItemUncheckedUpdateWithoutSequenceOutboundReplyEmailInput>
|
|
173344
|
+
}
|
|
173345
|
+
|
|
173346
|
+
export type CreatorListItemUpdateWithoutSequenceOutboundReplyEmailInput = {
|
|
173347
|
+
saved?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
173348
|
+
invited?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
173349
|
+
tags?: NullableJsonNullValueInput | InputJsonValue
|
|
173350
|
+
feedback?: NullableStringFieldUpdateOperationsInput | string | null
|
|
173351
|
+
archived?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
173352
|
+
metaData?: NullableJsonNullValueInput | InputJsonValue
|
|
173353
|
+
creatorList?: CreatorListUpdateOneRequiredWithoutCreatorsNestedInput
|
|
173354
|
+
socialProfile?: SocialProfileUpdateOneWithoutCreatorListItemsNestedInput
|
|
173355
|
+
sequenceOutboundEmails?: SequenceOutboundEmailUpdateManyWithoutCreatorListNestedInput
|
|
173356
|
+
sequenceInboundEmails?: SequenceInboundEmailUpdateManyWithoutCreatorListIdNestedInput
|
|
173357
|
+
sequenceImapCheckpoints?: SequenceImapCheckpointUpdateManyWithoutCreatorListIdNestedInput
|
|
173358
|
+
}
|
|
173359
|
+
|
|
173360
|
+
export type CreatorListItemUncheckedUpdateWithoutSequenceOutboundReplyEmailInput = {
|
|
173361
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
173362
|
+
socialProfileId?: IntFieldUpdateOperationsInput | number
|
|
173363
|
+
creatorListId?: IntFieldUpdateOperationsInput | number
|
|
173364
|
+
saved?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
173365
|
+
invited?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
173366
|
+
tags?: NullableJsonNullValueInput | InputJsonValue
|
|
173367
|
+
feedback?: NullableStringFieldUpdateOperationsInput | string | null
|
|
173368
|
+
archived?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
173369
|
+
metaData?: NullableJsonNullValueInput | InputJsonValue
|
|
173370
|
+
sequenceOutboundEmails?: SequenceOutboundEmailUncheckedUpdateManyWithoutCreatorListNestedInput
|
|
173371
|
+
sequenceInboundEmails?: SequenceInboundEmailUncheckedUpdateManyWithoutCreatorListIdNestedInput
|
|
173372
|
+
sequenceImapCheckpoints?: SequenceImapCheckpointUncheckedUpdateManyWithoutCreatorListIdNestedInput
|
|
173373
|
+
}
|
|
173374
|
+
|
|
173077
173375
|
export type SequenceUpsertWithoutSequenceoutboundreplyemailInput = {
|
|
173078
173376
|
update: XOR<SequenceUpdateWithoutSequenceoutboundreplyemailInput, SequenceUncheckedUpdateWithoutSequenceoutboundreplyemailInput>
|
|
173079
173377
|
create: XOR<SequenceCreateWithoutSequenceoutboundreplyemailInput, SequenceUncheckedCreateWithoutSequenceoutboundreplyemailInput>
|
|
@@ -178230,6 +178528,7 @@ export namespace Prisma {
|
|
|
178230
178528
|
sequenceOutboundEmails?: SequenceOutboundEmailUpdateManyWithoutCreatorListNestedInput
|
|
178231
178529
|
sequenceInboundEmails?: SequenceInboundEmailUpdateManyWithoutCreatorListIdNestedInput
|
|
178232
178530
|
sequenceImapCheckpoints?: SequenceImapCheckpointUpdateManyWithoutCreatorListIdNestedInput
|
|
178531
|
+
sequenceOutboundReplyEmail?: SequenceOutboundReplyEmailUpdateManyWithoutCreatorListItemNestedInput
|
|
178233
178532
|
}
|
|
178234
178533
|
|
|
178235
178534
|
export type CreatorListItemUncheckedUpdateWithoutCreatorListInput = {
|
|
@@ -178244,6 +178543,7 @@ export namespace Prisma {
|
|
|
178244
178543
|
sequenceOutboundEmails?: SequenceOutboundEmailUncheckedUpdateManyWithoutCreatorListNestedInput
|
|
178245
178544
|
sequenceInboundEmails?: SequenceInboundEmailUncheckedUpdateManyWithoutCreatorListIdNestedInput
|
|
178246
178545
|
sequenceImapCheckpoints?: SequenceImapCheckpointUncheckedUpdateManyWithoutCreatorListIdNestedInput
|
|
178546
|
+
sequenceOutboundReplyEmail?: SequenceOutboundReplyEmailUncheckedUpdateManyWithoutCreatorListItemNestedInput
|
|
178247
178547
|
}
|
|
178248
178548
|
|
|
178249
178549
|
export type CreatorListItemUncheckedUpdateManyWithoutCreatorListInput = {
|
|
@@ -178319,6 +178619,16 @@ export namespace Prisma {
|
|
|
178319
178619
|
updatedAt?: Date | string
|
|
178320
178620
|
}
|
|
178321
178621
|
|
|
178622
|
+
export type SequenceOutboundReplyEmailCreateManyCreatorListItemInput = {
|
|
178623
|
+
id?: number
|
|
178624
|
+
sequenceId: number
|
|
178625
|
+
type: number
|
|
178626
|
+
typeId: string
|
|
178627
|
+
replyCount?: number
|
|
178628
|
+
createdAt?: Date | string
|
|
178629
|
+
updatedAt?: Date | string
|
|
178630
|
+
}
|
|
178631
|
+
|
|
178322
178632
|
export type SequenceOutboundEmailUpdateWithoutCreatorListInput = {
|
|
178323
178633
|
sentAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
178324
178634
|
sequence?: SequenceUpdateOneRequiredWithoutOutboundEmailsNestedInput
|
|
@@ -178380,6 +178690,35 @@ export namespace Prisma {
|
|
|
178380
178690
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
178381
178691
|
}
|
|
178382
178692
|
|
|
178693
|
+
export type SequenceOutboundReplyEmailUpdateWithoutCreatorListItemInput = {
|
|
178694
|
+
type?: IntFieldUpdateOperationsInput | number
|
|
178695
|
+
typeId?: StringFieldUpdateOperationsInput | string
|
|
178696
|
+
replyCount?: IntFieldUpdateOperationsInput | number
|
|
178697
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
178698
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
178699
|
+
sequence?: SequenceUpdateOneRequiredWithoutSequenceoutboundreplyemailNestedInput
|
|
178700
|
+
}
|
|
178701
|
+
|
|
178702
|
+
export type SequenceOutboundReplyEmailUncheckedUpdateWithoutCreatorListItemInput = {
|
|
178703
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
178704
|
+
sequenceId?: IntFieldUpdateOperationsInput | number
|
|
178705
|
+
type?: IntFieldUpdateOperationsInput | number
|
|
178706
|
+
typeId?: StringFieldUpdateOperationsInput | string
|
|
178707
|
+
replyCount?: IntFieldUpdateOperationsInput | number
|
|
178708
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
178709
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
178710
|
+
}
|
|
178711
|
+
|
|
178712
|
+
export type SequenceOutboundReplyEmailUncheckedUpdateManyWithoutCreatorListItemInput = {
|
|
178713
|
+
id?: IntFieldUpdateOperationsInput | number
|
|
178714
|
+
sequenceId?: IntFieldUpdateOperationsInput | number
|
|
178715
|
+
type?: IntFieldUpdateOperationsInput | number
|
|
178716
|
+
typeId?: StringFieldUpdateOperationsInput | string
|
|
178717
|
+
replyCount?: IntFieldUpdateOperationsInput | number
|
|
178718
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
178719
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
178720
|
+
}
|
|
178721
|
+
|
|
178383
178722
|
export type CreatorListItemCreateManySocialProfileInput = {
|
|
178384
178723
|
id?: number
|
|
178385
178724
|
creatorListId: number
|
|
@@ -178423,6 +178762,7 @@ export namespace Prisma {
|
|
|
178423
178762
|
sequenceOutboundEmails?: SequenceOutboundEmailUpdateManyWithoutCreatorListNestedInput
|
|
178424
178763
|
sequenceInboundEmails?: SequenceInboundEmailUpdateManyWithoutCreatorListIdNestedInput
|
|
178425
178764
|
sequenceImapCheckpoints?: SequenceImapCheckpointUpdateManyWithoutCreatorListIdNestedInput
|
|
178765
|
+
sequenceOutboundReplyEmail?: SequenceOutboundReplyEmailUpdateManyWithoutCreatorListItemNestedInput
|
|
178426
178766
|
}
|
|
178427
178767
|
|
|
178428
178768
|
export type CreatorListItemUncheckedUpdateWithoutSocialProfileInput = {
|
|
@@ -178437,6 +178777,7 @@ export namespace Prisma {
|
|
|
178437
178777
|
sequenceOutboundEmails?: SequenceOutboundEmailUncheckedUpdateManyWithoutCreatorListNestedInput
|
|
178438
178778
|
sequenceInboundEmails?: SequenceInboundEmailUncheckedUpdateManyWithoutCreatorListIdNestedInput
|
|
178439
178779
|
sequenceImapCheckpoints?: SequenceImapCheckpointUncheckedUpdateManyWithoutCreatorListIdNestedInput
|
|
178780
|
+
sequenceOutboundReplyEmail?: SequenceOutboundReplyEmailUncheckedUpdateManyWithoutCreatorListItemNestedInput
|
|
178440
178781
|
}
|
|
178441
178782
|
|
|
178442
178783
|
export type CreatorListItemUncheckedUpdateManyWithoutSocialProfileInput = {
|
|
@@ -178635,6 +178976,7 @@ export namespace Prisma {
|
|
|
178635
178976
|
|
|
178636
178977
|
export type SequenceOutboundReplyEmailCreateManySequenceInput = {
|
|
178637
178978
|
id?: number
|
|
178979
|
+
listItemId?: number | null
|
|
178638
178980
|
type: number
|
|
178639
178981
|
typeId: string
|
|
178640
178982
|
replyCount?: number
|
|
@@ -178782,10 +179124,12 @@ export namespace Prisma {
|
|
|
178782
179124
|
replyCount?: IntFieldUpdateOperationsInput | number
|
|
178783
179125
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
178784
179126
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
179127
|
+
creatorListItem?: CreatorListItemUpdateOneWithoutSequenceOutboundReplyEmailNestedInput
|
|
178785
179128
|
}
|
|
178786
179129
|
|
|
178787
179130
|
export type SequenceOutboundReplyEmailUncheckedUpdateWithoutSequenceInput = {
|
|
178788
179131
|
id?: IntFieldUpdateOperationsInput | number
|
|
179132
|
+
listItemId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
178789
179133
|
type?: IntFieldUpdateOperationsInput | number
|
|
178790
179134
|
typeId?: StringFieldUpdateOperationsInput | string
|
|
178791
179135
|
replyCount?: IntFieldUpdateOperationsInput | number
|
|
@@ -178795,6 +179139,7 @@ export namespace Prisma {
|
|
|
178795
179139
|
|
|
178796
179140
|
export type SequenceOutboundReplyEmailUncheckedUpdateManyWithoutSequenceInput = {
|
|
178797
179141
|
id?: IntFieldUpdateOperationsInput | number
|
|
179142
|
+
listItemId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
178798
179143
|
type?: IntFieldUpdateOperationsInput | number
|
|
178799
179144
|
typeId?: StringFieldUpdateOperationsInput | string
|
|
178800
179145
|
replyCount?: IntFieldUpdateOperationsInput | number
|