telescope-prisma-client 0.0.30 → 0.0.31
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.
|
@@ -363,6 +363,7 @@ exports.Prisma.ProspectInteractionEventScalarFieldEnum = {
|
|
|
363
363
|
is_auto_reply: 'is_auto_reply',
|
|
364
364
|
text_reply: 'text_reply',
|
|
365
365
|
prospect_interest: 'prospect_interest',
|
|
366
|
+
prospect_interest_value: 'prospect_interest_value',
|
|
366
367
|
owner_id: 'owner_id',
|
|
367
368
|
created_at: 'created_at',
|
|
368
369
|
updated_at: 'updated_at',
|
|
@@ -475,14 +476,17 @@ exports.ProspectSequenceStepStatus = {
|
|
|
475
476
|
};
|
|
476
477
|
|
|
477
478
|
exports.ProspectInteractionEventType = {
|
|
478
|
-
|
|
479
|
-
NEGATIVE_EMAIL_REPLY: 'NEGATIVE_EMAIL_REPLY',
|
|
480
|
-
EMAIL_REPLY_UNKNOWN_SENTIMENT: 'EMAIL_REPLY_UNKNOWN_SENTIMENT',
|
|
479
|
+
EMAIL_REPLY: 'EMAIL_REPLY',
|
|
481
480
|
EMAIL_BOUNCE_NOTIFICATION: 'EMAIL_BOUNCE_NOTIFICATION',
|
|
482
481
|
EMAIL_OOO_NOTIFICATION: 'EMAIL_OOO_NOTIFICATION',
|
|
483
482
|
LINKEDIN_CONNECTION_ACCEPTED: 'LINKEDIN_CONNECTION_ACCEPTED',
|
|
484
|
-
|
|
485
|
-
|
|
483
|
+
LINKEDIN_REPLY: 'LINKEDIN_REPLY'
|
|
484
|
+
};
|
|
485
|
+
|
|
486
|
+
exports.ProspectInterestType = {
|
|
487
|
+
POSITIVE: 'POSITIVE',
|
|
488
|
+
NEGATIVE: 'NEGATIVE',
|
|
489
|
+
UNKNOWN: 'UNKNOWN'
|
|
486
490
|
};
|
|
487
491
|
|
|
488
492
|
exports.Prisma.ModelName = {
|
|
@@ -714,7 +714,8 @@ export type ProspectInteractionEventPayload<ExtArgs extends $Extensions.Args = $
|
|
|
714
714
|
sent_at: Date
|
|
715
715
|
is_auto_reply: boolean | null
|
|
716
716
|
text_reply: string | null
|
|
717
|
-
prospect_interest:
|
|
717
|
+
prospect_interest: ProspectInterestType
|
|
718
|
+
prospect_interest_value: number | null
|
|
718
719
|
owner_id: string
|
|
719
720
|
created_at: Date
|
|
720
721
|
updated_at: Date
|
|
@@ -840,19 +841,25 @@ export type ProspectSequenceStepStatus = (typeof ProspectSequenceStepStatus)[key
|
|
|
840
841
|
|
|
841
842
|
|
|
842
843
|
export const ProspectInteractionEventType: {
|
|
843
|
-
|
|
844
|
-
NEGATIVE_EMAIL_REPLY: 'NEGATIVE_EMAIL_REPLY',
|
|
845
|
-
EMAIL_REPLY_UNKNOWN_SENTIMENT: 'EMAIL_REPLY_UNKNOWN_SENTIMENT',
|
|
844
|
+
EMAIL_REPLY: 'EMAIL_REPLY',
|
|
846
845
|
EMAIL_BOUNCE_NOTIFICATION: 'EMAIL_BOUNCE_NOTIFICATION',
|
|
847
846
|
EMAIL_OOO_NOTIFICATION: 'EMAIL_OOO_NOTIFICATION',
|
|
848
847
|
LINKEDIN_CONNECTION_ACCEPTED: 'LINKEDIN_CONNECTION_ACCEPTED',
|
|
849
|
-
|
|
850
|
-
NEGATIVE_LINKEDIN_REPLY: 'NEGATIVE_LINKEDIN_REPLY'
|
|
848
|
+
LINKEDIN_REPLY: 'LINKEDIN_REPLY'
|
|
851
849
|
};
|
|
852
850
|
|
|
853
851
|
export type ProspectInteractionEventType = (typeof ProspectInteractionEventType)[keyof typeof ProspectInteractionEventType]
|
|
854
852
|
|
|
855
853
|
|
|
854
|
+
export const ProspectInterestType: {
|
|
855
|
+
POSITIVE: 'POSITIVE',
|
|
856
|
+
NEGATIVE: 'NEGATIVE',
|
|
857
|
+
UNKNOWN: 'UNKNOWN'
|
|
858
|
+
};
|
|
859
|
+
|
|
860
|
+
export type ProspectInterestType = (typeof ProspectInterestType)[keyof typeof ProspectInterestType]
|
|
861
|
+
|
|
862
|
+
|
|
856
863
|
/**
|
|
857
864
|
* ## Prisma Client ʲˢ
|
|
858
865
|
*
|
|
@@ -18755,11 +18762,11 @@ export namespace Prisma {
|
|
|
18755
18762
|
}
|
|
18756
18763
|
|
|
18757
18764
|
export type ProspectInteractionEventAvgAggregateOutputType = {
|
|
18758
|
-
|
|
18765
|
+
prospect_interest_value: number | null
|
|
18759
18766
|
}
|
|
18760
18767
|
|
|
18761
18768
|
export type ProspectInteractionEventSumAggregateOutputType = {
|
|
18762
|
-
|
|
18769
|
+
prospect_interest_value: number | null
|
|
18763
18770
|
}
|
|
18764
18771
|
|
|
18765
18772
|
export type ProspectInteractionEventMinAggregateOutputType = {
|
|
@@ -18773,7 +18780,8 @@ export namespace Prisma {
|
|
|
18773
18780
|
sent_at: Date | null
|
|
18774
18781
|
is_auto_reply: boolean | null
|
|
18775
18782
|
text_reply: string | null
|
|
18776
|
-
prospect_interest:
|
|
18783
|
+
prospect_interest: ProspectInterestType | null
|
|
18784
|
+
prospect_interest_value: number | null
|
|
18777
18785
|
owner_id: string | null
|
|
18778
18786
|
created_at: Date | null
|
|
18779
18787
|
updated_at: Date | null
|
|
@@ -18792,7 +18800,8 @@ export namespace Prisma {
|
|
|
18792
18800
|
sent_at: Date | null
|
|
18793
18801
|
is_auto_reply: boolean | null
|
|
18794
18802
|
text_reply: string | null
|
|
18795
|
-
prospect_interest:
|
|
18803
|
+
prospect_interest: ProspectInterestType | null
|
|
18804
|
+
prospect_interest_value: number | null
|
|
18796
18805
|
owner_id: string | null
|
|
18797
18806
|
created_at: Date | null
|
|
18798
18807
|
updated_at: Date | null
|
|
@@ -18812,6 +18821,7 @@ export namespace Prisma {
|
|
|
18812
18821
|
is_auto_reply: number
|
|
18813
18822
|
text_reply: number
|
|
18814
18823
|
prospect_interest: number
|
|
18824
|
+
prospect_interest_value: number
|
|
18815
18825
|
owner_id: number
|
|
18816
18826
|
created_at: number
|
|
18817
18827
|
updated_at: number
|
|
@@ -18822,11 +18832,11 @@ export namespace Prisma {
|
|
|
18822
18832
|
|
|
18823
18833
|
|
|
18824
18834
|
export type ProspectInteractionEventAvgAggregateInputType = {
|
|
18825
|
-
|
|
18835
|
+
prospect_interest_value?: true
|
|
18826
18836
|
}
|
|
18827
18837
|
|
|
18828
18838
|
export type ProspectInteractionEventSumAggregateInputType = {
|
|
18829
|
-
|
|
18839
|
+
prospect_interest_value?: true
|
|
18830
18840
|
}
|
|
18831
18841
|
|
|
18832
18842
|
export type ProspectInteractionEventMinAggregateInputType = {
|
|
@@ -18841,6 +18851,7 @@ export namespace Prisma {
|
|
|
18841
18851
|
is_auto_reply?: true
|
|
18842
18852
|
text_reply?: true
|
|
18843
18853
|
prospect_interest?: true
|
|
18854
|
+
prospect_interest_value?: true
|
|
18844
18855
|
owner_id?: true
|
|
18845
18856
|
created_at?: true
|
|
18846
18857
|
updated_at?: true
|
|
@@ -18860,6 +18871,7 @@ export namespace Prisma {
|
|
|
18860
18871
|
is_auto_reply?: true
|
|
18861
18872
|
text_reply?: true
|
|
18862
18873
|
prospect_interest?: true
|
|
18874
|
+
prospect_interest_value?: true
|
|
18863
18875
|
owner_id?: true
|
|
18864
18876
|
created_at?: true
|
|
18865
18877
|
updated_at?: true
|
|
@@ -18879,6 +18891,7 @@ export namespace Prisma {
|
|
|
18879
18891
|
is_auto_reply?: true
|
|
18880
18892
|
text_reply?: true
|
|
18881
18893
|
prospect_interest?: true
|
|
18894
|
+
prospect_interest_value?: true
|
|
18882
18895
|
owner_id?: true
|
|
18883
18896
|
created_at?: true
|
|
18884
18897
|
updated_at?: true
|
|
@@ -18985,7 +18998,8 @@ export namespace Prisma {
|
|
|
18985
18998
|
sent_at: Date
|
|
18986
18999
|
is_auto_reply: boolean | null
|
|
18987
19000
|
text_reply: string | null
|
|
18988
|
-
prospect_interest:
|
|
19001
|
+
prospect_interest: ProspectInterestType
|
|
19002
|
+
prospect_interest_value: number | null
|
|
18989
19003
|
owner_id: string
|
|
18990
19004
|
created_at: Date
|
|
18991
19005
|
updated_at: Date
|
|
@@ -19024,6 +19038,7 @@ export namespace Prisma {
|
|
|
19024
19038
|
is_auto_reply?: boolean
|
|
19025
19039
|
text_reply?: boolean
|
|
19026
19040
|
prospect_interest?: boolean
|
|
19041
|
+
prospect_interest_value?: boolean
|
|
19027
19042
|
owner_id?: boolean
|
|
19028
19043
|
created_at?: boolean
|
|
19029
19044
|
updated_at?: boolean
|
|
@@ -19047,6 +19062,7 @@ export namespace Prisma {
|
|
|
19047
19062
|
is_auto_reply?: boolean
|
|
19048
19063
|
text_reply?: boolean
|
|
19049
19064
|
prospect_interest?: boolean
|
|
19065
|
+
prospect_interest_value?: boolean
|
|
19050
19066
|
owner_id?: boolean
|
|
19051
19067
|
created_at?: boolean
|
|
19052
19068
|
updated_at?: boolean
|
|
@@ -20124,6 +20140,7 @@ export namespace Prisma {
|
|
|
20124
20140
|
is_auto_reply: 'is_auto_reply',
|
|
20125
20141
|
text_reply: 'text_reply',
|
|
20126
20142
|
prospect_interest: 'prospect_interest',
|
|
20143
|
+
prospect_interest_value: 'prospect_interest_value',
|
|
20127
20144
|
owner_id: 'owner_id',
|
|
20128
20145
|
created_at: 'created_at',
|
|
20129
20146
|
updated_at: 'updated_at',
|
|
@@ -21536,7 +21553,8 @@ export namespace Prisma {
|
|
|
21536
21553
|
sent_at?: DateTimeFilter | Date | string
|
|
21537
21554
|
is_auto_reply?: BoolNullableFilter | boolean | null
|
|
21538
21555
|
text_reply?: StringNullableFilter | string | null
|
|
21539
|
-
prospect_interest?:
|
|
21556
|
+
prospect_interest?: EnumProspectInterestTypeFilter | ProspectInterestType
|
|
21557
|
+
prospect_interest_value?: FloatNullableFilter | number | null
|
|
21540
21558
|
owner_id?: StringFilter | string
|
|
21541
21559
|
created_at?: DateTimeFilter | Date | string
|
|
21542
21560
|
updated_at?: DateTimeFilter | Date | string
|
|
@@ -21559,7 +21577,8 @@ export namespace Prisma {
|
|
|
21559
21577
|
sent_at?: SortOrder
|
|
21560
21578
|
is_auto_reply?: SortOrderInput | SortOrder
|
|
21561
21579
|
text_reply?: SortOrderInput | SortOrder
|
|
21562
|
-
prospect_interest?:
|
|
21580
|
+
prospect_interest?: SortOrder
|
|
21581
|
+
prospect_interest_value?: SortOrderInput | SortOrder
|
|
21563
21582
|
owner_id?: SortOrder
|
|
21564
21583
|
created_at?: SortOrder
|
|
21565
21584
|
updated_at?: SortOrder
|
|
@@ -21586,7 +21605,8 @@ export namespace Prisma {
|
|
|
21586
21605
|
sent_at?: SortOrder
|
|
21587
21606
|
is_auto_reply?: SortOrderInput | SortOrder
|
|
21588
21607
|
text_reply?: SortOrderInput | SortOrder
|
|
21589
|
-
prospect_interest?:
|
|
21608
|
+
prospect_interest?: SortOrder
|
|
21609
|
+
prospect_interest_value?: SortOrderInput | SortOrder
|
|
21590
21610
|
owner_id?: SortOrder
|
|
21591
21611
|
created_at?: SortOrder
|
|
21592
21612
|
updated_at?: SortOrder
|
|
@@ -21613,7 +21633,8 @@ export namespace Prisma {
|
|
|
21613
21633
|
sent_at?: DateTimeWithAggregatesFilter | Date | string
|
|
21614
21634
|
is_auto_reply?: BoolNullableWithAggregatesFilter | boolean | null
|
|
21615
21635
|
text_reply?: StringNullableWithAggregatesFilter | string | null
|
|
21616
|
-
prospect_interest?:
|
|
21636
|
+
prospect_interest?: EnumProspectInterestTypeWithAggregatesFilter | ProspectInterestType
|
|
21637
|
+
prospect_interest_value?: FloatNullableWithAggregatesFilter | number | null
|
|
21617
21638
|
owner_id?: StringWithAggregatesFilter | string
|
|
21618
21639
|
created_at?: DateTimeWithAggregatesFilter | Date | string
|
|
21619
21640
|
updated_at?: DateTimeWithAggregatesFilter | Date | string
|
|
@@ -23475,7 +23496,8 @@ export namespace Prisma {
|
|
|
23475
23496
|
sent_at: Date | string
|
|
23476
23497
|
is_auto_reply?: boolean | null
|
|
23477
23498
|
text_reply?: string | null
|
|
23478
|
-
prospect_interest
|
|
23499
|
+
prospect_interest: ProspectInterestType
|
|
23500
|
+
prospect_interest_value?: number | null
|
|
23479
23501
|
created_at?: Date | string
|
|
23480
23502
|
updated_at?: Date | string
|
|
23481
23503
|
interest_analysed_at?: Date | string | null
|
|
@@ -23497,7 +23519,8 @@ export namespace Prisma {
|
|
|
23497
23519
|
sent_at: Date | string
|
|
23498
23520
|
is_auto_reply?: boolean | null
|
|
23499
23521
|
text_reply?: string | null
|
|
23500
|
-
prospect_interest
|
|
23522
|
+
prospect_interest: ProspectInterestType
|
|
23523
|
+
prospect_interest_value?: number | null
|
|
23501
23524
|
owner_id: string
|
|
23502
23525
|
created_at?: Date | string
|
|
23503
23526
|
updated_at?: Date | string
|
|
@@ -23513,7 +23536,8 @@ export namespace Prisma {
|
|
|
23513
23536
|
sent_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23514
23537
|
is_auto_reply?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
23515
23538
|
text_reply?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23516
|
-
prospect_interest?:
|
|
23539
|
+
prospect_interest?: EnumProspectInterestTypeFieldUpdateOperationsInput | ProspectInterestType
|
|
23540
|
+
prospect_interest_value?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
23517
23541
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23518
23542
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23519
23543
|
interest_analysed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -23535,7 +23559,8 @@ export namespace Prisma {
|
|
|
23535
23559
|
sent_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23536
23560
|
is_auto_reply?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
23537
23561
|
text_reply?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23538
|
-
prospect_interest?:
|
|
23562
|
+
prospect_interest?: EnumProspectInterestTypeFieldUpdateOperationsInput | ProspectInterestType
|
|
23563
|
+
prospect_interest_value?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
23539
23564
|
owner_id?: StringFieldUpdateOperationsInput | string
|
|
23540
23565
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23541
23566
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -23554,7 +23579,8 @@ export namespace Prisma {
|
|
|
23554
23579
|
sent_at: Date | string
|
|
23555
23580
|
is_auto_reply?: boolean | null
|
|
23556
23581
|
text_reply?: string | null
|
|
23557
|
-
prospect_interest
|
|
23582
|
+
prospect_interest: ProspectInterestType
|
|
23583
|
+
prospect_interest_value?: number | null
|
|
23558
23584
|
owner_id: string
|
|
23559
23585
|
created_at?: Date | string
|
|
23560
23586
|
updated_at?: Date | string
|
|
@@ -23570,7 +23596,8 @@ export namespace Prisma {
|
|
|
23570
23596
|
sent_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23571
23597
|
is_auto_reply?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
23572
23598
|
text_reply?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23573
|
-
prospect_interest?:
|
|
23599
|
+
prospect_interest?: EnumProspectInterestTypeFieldUpdateOperationsInput | ProspectInterestType
|
|
23600
|
+
prospect_interest_value?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
23574
23601
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23575
23602
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23576
23603
|
interest_analysed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -23588,7 +23615,8 @@ export namespace Prisma {
|
|
|
23588
23615
|
sent_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23589
23616
|
is_auto_reply?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
23590
23617
|
text_reply?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23591
|
-
prospect_interest?:
|
|
23618
|
+
prospect_interest?: EnumProspectInterestTypeFieldUpdateOperationsInput | ProspectInterestType
|
|
23619
|
+
prospect_interest_value?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
23592
23620
|
owner_id?: StringFieldUpdateOperationsInput | string
|
|
23593
23621
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23594
23622
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -25034,6 +25062,13 @@ export namespace Prisma {
|
|
|
25034
25062
|
not?: NestedEnumProspectInteractionEventTypeFilter | ProspectInteractionEventType
|
|
25035
25063
|
}
|
|
25036
25064
|
|
|
25065
|
+
export type EnumProspectInterestTypeFilter = {
|
|
25066
|
+
equals?: ProspectInterestType
|
|
25067
|
+
in?: Enumerable<ProspectInterestType>
|
|
25068
|
+
notIn?: Enumerable<ProspectInterestType>
|
|
25069
|
+
not?: NestedEnumProspectInterestTypeFilter | ProspectInterestType
|
|
25070
|
+
}
|
|
25071
|
+
|
|
25037
25072
|
export type ProspectSequenceStepRelationFilter = {
|
|
25038
25073
|
is?: ProspectSequenceStepWhereInput | null
|
|
25039
25074
|
isNot?: ProspectSequenceStepWhereInput | null
|
|
@@ -25051,6 +25086,7 @@ export namespace Prisma {
|
|
|
25051
25086
|
is_auto_reply?: SortOrder
|
|
25052
25087
|
text_reply?: SortOrder
|
|
25053
25088
|
prospect_interest?: SortOrder
|
|
25089
|
+
prospect_interest_value?: SortOrder
|
|
25054
25090
|
owner_id?: SortOrder
|
|
25055
25091
|
created_at?: SortOrder
|
|
25056
25092
|
updated_at?: SortOrder
|
|
@@ -25059,7 +25095,7 @@ export namespace Prisma {
|
|
|
25059
25095
|
}
|
|
25060
25096
|
|
|
25061
25097
|
export type ProspectInteractionEventAvgOrderByAggregateInput = {
|
|
25062
|
-
|
|
25098
|
+
prospect_interest_value?: SortOrder
|
|
25063
25099
|
}
|
|
25064
25100
|
|
|
25065
25101
|
export type ProspectInteractionEventMaxOrderByAggregateInput = {
|
|
@@ -25074,6 +25110,7 @@ export namespace Prisma {
|
|
|
25074
25110
|
is_auto_reply?: SortOrder
|
|
25075
25111
|
text_reply?: SortOrder
|
|
25076
25112
|
prospect_interest?: SortOrder
|
|
25113
|
+
prospect_interest_value?: SortOrder
|
|
25077
25114
|
owner_id?: SortOrder
|
|
25078
25115
|
created_at?: SortOrder
|
|
25079
25116
|
updated_at?: SortOrder
|
|
@@ -25093,6 +25130,7 @@ export namespace Prisma {
|
|
|
25093
25130
|
is_auto_reply?: SortOrder
|
|
25094
25131
|
text_reply?: SortOrder
|
|
25095
25132
|
prospect_interest?: SortOrder
|
|
25133
|
+
prospect_interest_value?: SortOrder
|
|
25096
25134
|
owner_id?: SortOrder
|
|
25097
25135
|
created_at?: SortOrder
|
|
25098
25136
|
updated_at?: SortOrder
|
|
@@ -25101,7 +25139,7 @@ export namespace Prisma {
|
|
|
25101
25139
|
}
|
|
25102
25140
|
|
|
25103
25141
|
export type ProspectInteractionEventSumOrderByAggregateInput = {
|
|
25104
|
-
|
|
25142
|
+
prospect_interest_value?: SortOrder
|
|
25105
25143
|
}
|
|
25106
25144
|
|
|
25107
25145
|
export type EnumProspectInteractionEventTypeWithAggregatesFilter = {
|
|
@@ -25114,6 +25152,16 @@ export namespace Prisma {
|
|
|
25114
25152
|
_max?: NestedEnumProspectInteractionEventTypeFilter
|
|
25115
25153
|
}
|
|
25116
25154
|
|
|
25155
|
+
export type EnumProspectInterestTypeWithAggregatesFilter = {
|
|
25156
|
+
equals?: ProspectInterestType
|
|
25157
|
+
in?: Enumerable<ProspectInterestType>
|
|
25158
|
+
notIn?: Enumerable<ProspectInterestType>
|
|
25159
|
+
not?: NestedEnumProspectInterestTypeWithAggregatesFilter | ProspectInterestType
|
|
25160
|
+
_count?: NestedIntFilter
|
|
25161
|
+
_min?: NestedEnumProspectInterestTypeFilter
|
|
25162
|
+
_max?: NestedEnumProspectInterestTypeFilter
|
|
25163
|
+
}
|
|
25164
|
+
|
|
25117
25165
|
export type CampaignCreateNestedManyWithoutOwnerInput = {
|
|
25118
25166
|
create?: XOR<Enumerable<CampaignCreateWithoutOwnerInput>, Enumerable<CampaignUncheckedCreateWithoutOwnerInput>>
|
|
25119
25167
|
connectOrCreate?: Enumerable<CampaignCreateOrConnectWithoutOwnerInput>
|
|
@@ -27463,6 +27511,10 @@ export namespace Prisma {
|
|
|
27463
27511
|
set?: ProspectInteractionEventType
|
|
27464
27512
|
}
|
|
27465
27513
|
|
|
27514
|
+
export type EnumProspectInterestTypeFieldUpdateOperationsInput = {
|
|
27515
|
+
set?: ProspectInterestType
|
|
27516
|
+
}
|
|
27517
|
+
|
|
27466
27518
|
export type CampaignUpdateOneRequiredWithoutProspect_interaction_eventsNestedInput = {
|
|
27467
27519
|
create?: XOR<CampaignCreateWithoutProspect_interaction_eventsInput, CampaignUncheckedCreateWithoutProspect_interaction_eventsInput>
|
|
27468
27520
|
connectOrCreate?: CampaignCreateOrConnectWithoutProspect_interaction_eventsInput
|
|
@@ -27933,6 +27985,13 @@ export namespace Prisma {
|
|
|
27933
27985
|
not?: NestedEnumProspectInteractionEventTypeFilter | ProspectInteractionEventType
|
|
27934
27986
|
}
|
|
27935
27987
|
|
|
27988
|
+
export type NestedEnumProspectInterestTypeFilter = {
|
|
27989
|
+
equals?: ProspectInterestType
|
|
27990
|
+
in?: Enumerable<ProspectInterestType>
|
|
27991
|
+
notIn?: Enumerable<ProspectInterestType>
|
|
27992
|
+
not?: NestedEnumProspectInterestTypeFilter | ProspectInterestType
|
|
27993
|
+
}
|
|
27994
|
+
|
|
27936
27995
|
export type NestedEnumProspectInteractionEventTypeWithAggregatesFilter = {
|
|
27937
27996
|
equals?: ProspectInteractionEventType
|
|
27938
27997
|
in?: Enumerable<ProspectInteractionEventType>
|
|
@@ -27943,6 +28002,16 @@ export namespace Prisma {
|
|
|
27943
28002
|
_max?: NestedEnumProspectInteractionEventTypeFilter
|
|
27944
28003
|
}
|
|
27945
28004
|
|
|
28005
|
+
export type NestedEnumProspectInterestTypeWithAggregatesFilter = {
|
|
28006
|
+
equals?: ProspectInterestType
|
|
28007
|
+
in?: Enumerable<ProspectInterestType>
|
|
28008
|
+
notIn?: Enumerable<ProspectInterestType>
|
|
28009
|
+
not?: NestedEnumProspectInterestTypeWithAggregatesFilter | ProspectInterestType
|
|
28010
|
+
_count?: NestedIntFilter
|
|
28011
|
+
_min?: NestedEnumProspectInterestTypeFilter
|
|
28012
|
+
_max?: NestedEnumProspectInterestTypeFilter
|
|
28013
|
+
}
|
|
28014
|
+
|
|
27946
28015
|
export type CampaignCreateWithoutOwnerInput = {
|
|
27947
28016
|
id?: string
|
|
27948
28017
|
name: string
|
|
@@ -28245,7 +28314,8 @@ export namespace Prisma {
|
|
|
28245
28314
|
sent_at: Date | string
|
|
28246
28315
|
is_auto_reply?: boolean | null
|
|
28247
28316
|
text_reply?: string | null
|
|
28248
|
-
prospect_interest
|
|
28317
|
+
prospect_interest: ProspectInterestType
|
|
28318
|
+
prospect_interest_value?: number | null
|
|
28249
28319
|
created_at?: Date | string
|
|
28250
28320
|
updated_at?: Date | string
|
|
28251
28321
|
interest_analysed_at?: Date | string | null
|
|
@@ -28266,7 +28336,8 @@ export namespace Prisma {
|
|
|
28266
28336
|
sent_at: Date | string
|
|
28267
28337
|
is_auto_reply?: boolean | null
|
|
28268
28338
|
text_reply?: string | null
|
|
28269
|
-
prospect_interest
|
|
28339
|
+
prospect_interest: ProspectInterestType
|
|
28340
|
+
prospect_interest_value?: number | null
|
|
28270
28341
|
created_at?: Date | string
|
|
28271
28342
|
updated_at?: Date | string
|
|
28272
28343
|
interest_analysed_at?: Date | string | null
|
|
@@ -28728,7 +28799,8 @@ export namespace Prisma {
|
|
|
28728
28799
|
sent_at?: DateTimeFilter | Date | string
|
|
28729
28800
|
is_auto_reply?: BoolNullableFilter | boolean | null
|
|
28730
28801
|
text_reply?: StringNullableFilter | string | null
|
|
28731
|
-
prospect_interest?:
|
|
28802
|
+
prospect_interest?: EnumProspectInterestTypeFilter | ProspectInterestType
|
|
28803
|
+
prospect_interest_value?: FloatNullableFilter | number | null
|
|
28732
28804
|
owner_id?: StringFilter | string
|
|
28733
28805
|
created_at?: DateTimeFilter | Date | string
|
|
28734
28806
|
updated_at?: DateTimeFilter | Date | string
|
|
@@ -30695,7 +30767,8 @@ export namespace Prisma {
|
|
|
30695
30767
|
sent_at: Date | string
|
|
30696
30768
|
is_auto_reply?: boolean | null
|
|
30697
30769
|
text_reply?: string | null
|
|
30698
|
-
prospect_interest
|
|
30770
|
+
prospect_interest: ProspectInterestType
|
|
30771
|
+
prospect_interest_value?: number | null
|
|
30699
30772
|
created_at?: Date | string
|
|
30700
30773
|
updated_at?: Date | string
|
|
30701
30774
|
interest_analysed_at?: Date | string | null
|
|
@@ -30715,7 +30788,8 @@ export namespace Prisma {
|
|
|
30715
30788
|
sent_at: Date | string
|
|
30716
30789
|
is_auto_reply?: boolean | null
|
|
30717
30790
|
text_reply?: string | null
|
|
30718
|
-
prospect_interest
|
|
30791
|
+
prospect_interest: ProspectInterestType
|
|
30792
|
+
prospect_interest_value?: number | null
|
|
30719
30793
|
owner_id: string
|
|
30720
30794
|
created_at?: Date | string
|
|
30721
30795
|
updated_at?: Date | string
|
|
@@ -31328,7 +31402,8 @@ export namespace Prisma {
|
|
|
31328
31402
|
sent_at: Date | string
|
|
31329
31403
|
is_auto_reply?: boolean | null
|
|
31330
31404
|
text_reply?: string | null
|
|
31331
|
-
prospect_interest
|
|
31405
|
+
prospect_interest: ProspectInterestType
|
|
31406
|
+
prospect_interest_value?: number | null
|
|
31332
31407
|
created_at?: Date | string
|
|
31333
31408
|
updated_at?: Date | string
|
|
31334
31409
|
interest_analysed_at?: Date | string | null
|
|
@@ -31348,7 +31423,8 @@ export namespace Prisma {
|
|
|
31348
31423
|
sent_at: Date | string
|
|
31349
31424
|
is_auto_reply?: boolean | null
|
|
31350
31425
|
text_reply?: string | null
|
|
31351
|
-
prospect_interest
|
|
31426
|
+
prospect_interest: ProspectInterestType
|
|
31427
|
+
prospect_interest_value?: number | null
|
|
31352
31428
|
owner_id: string
|
|
31353
31429
|
created_at?: Date | string
|
|
31354
31430
|
updated_at?: Date | string
|
|
@@ -33921,7 +33997,8 @@ export namespace Prisma {
|
|
|
33921
33997
|
sent_at: Date | string
|
|
33922
33998
|
is_auto_reply?: boolean | null
|
|
33923
33999
|
text_reply?: string | null
|
|
33924
|
-
prospect_interest
|
|
34000
|
+
prospect_interest: ProspectInterestType
|
|
34001
|
+
prospect_interest_value?: number | null
|
|
33925
34002
|
created_at?: Date | string
|
|
33926
34003
|
updated_at?: Date | string
|
|
33927
34004
|
interest_analysed_at?: Date | string | null
|
|
@@ -33941,7 +34018,8 @@ export namespace Prisma {
|
|
|
33941
34018
|
sent_at: Date | string
|
|
33942
34019
|
is_auto_reply?: boolean | null
|
|
33943
34020
|
text_reply?: string | null
|
|
33944
|
-
prospect_interest
|
|
34021
|
+
prospect_interest: ProspectInterestType
|
|
34022
|
+
prospect_interest_value?: number | null
|
|
33945
34023
|
owner_id: string
|
|
33946
34024
|
created_at?: Date | string
|
|
33947
34025
|
updated_at?: Date | string
|
|
@@ -34800,7 +34878,8 @@ export namespace Prisma {
|
|
|
34800
34878
|
sent_at: Date | string
|
|
34801
34879
|
is_auto_reply?: boolean | null
|
|
34802
34880
|
text_reply?: string | null
|
|
34803
|
-
prospect_interest
|
|
34881
|
+
prospect_interest: ProspectInterestType
|
|
34882
|
+
prospect_interest_value?: number | null
|
|
34804
34883
|
created_at?: Date | string
|
|
34805
34884
|
updated_at?: Date | string
|
|
34806
34885
|
interest_analysed_at?: Date | string | null
|
|
@@ -35221,7 +35300,8 @@ export namespace Prisma {
|
|
|
35221
35300
|
sent_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
35222
35301
|
is_auto_reply?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
35223
35302
|
text_reply?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35224
|
-
prospect_interest?:
|
|
35303
|
+
prospect_interest?: EnumProspectInterestTypeFieldUpdateOperationsInput | ProspectInterestType
|
|
35304
|
+
prospect_interest_value?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
35225
35305
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
35226
35306
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
35227
35307
|
interest_analysed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -35242,7 +35322,8 @@ export namespace Prisma {
|
|
|
35242
35322
|
sent_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
35243
35323
|
is_auto_reply?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
35244
35324
|
text_reply?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35245
|
-
prospect_interest?:
|
|
35325
|
+
prospect_interest?: EnumProspectInterestTypeFieldUpdateOperationsInput | ProspectInterestType
|
|
35326
|
+
prospect_interest_value?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
35246
35327
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
35247
35328
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
35248
35329
|
interest_analysed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -35260,7 +35341,8 @@ export namespace Prisma {
|
|
|
35260
35341
|
sent_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
35261
35342
|
is_auto_reply?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
35262
35343
|
text_reply?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35263
|
-
prospect_interest?:
|
|
35344
|
+
prospect_interest?: EnumProspectInterestTypeFieldUpdateOperationsInput | ProspectInterestType
|
|
35345
|
+
prospect_interest_value?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
35264
35346
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
35265
35347
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
35266
35348
|
interest_analysed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -36131,7 +36213,8 @@ export namespace Prisma {
|
|
|
36131
36213
|
sent_at: Date | string
|
|
36132
36214
|
is_auto_reply?: boolean | null
|
|
36133
36215
|
text_reply?: string | null
|
|
36134
|
-
prospect_interest
|
|
36216
|
+
prospect_interest: ProspectInterestType
|
|
36217
|
+
prospect_interest_value?: number | null
|
|
36135
36218
|
owner_id: string
|
|
36136
36219
|
created_at?: Date | string
|
|
36137
36220
|
updated_at?: Date | string
|
|
@@ -36338,7 +36421,8 @@ export namespace Prisma {
|
|
|
36338
36421
|
sent_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
36339
36422
|
is_auto_reply?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
36340
36423
|
text_reply?: NullableStringFieldUpdateOperationsInput | string | null
|
|
36341
|
-
prospect_interest?:
|
|
36424
|
+
prospect_interest?: EnumProspectInterestTypeFieldUpdateOperationsInput | ProspectInterestType
|
|
36425
|
+
prospect_interest_value?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
36342
36426
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
36343
36427
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
36344
36428
|
interest_analysed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -36358,7 +36442,8 @@ export namespace Prisma {
|
|
|
36358
36442
|
sent_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
36359
36443
|
is_auto_reply?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
36360
36444
|
text_reply?: NullableStringFieldUpdateOperationsInput | string | null
|
|
36361
|
-
prospect_interest?:
|
|
36445
|
+
prospect_interest?: EnumProspectInterestTypeFieldUpdateOperationsInput | ProspectInterestType
|
|
36446
|
+
prospect_interest_value?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
36362
36447
|
owner_id?: StringFieldUpdateOperationsInput | string
|
|
36363
36448
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
36364
36449
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -36446,7 +36531,8 @@ export namespace Prisma {
|
|
|
36446
36531
|
sent_at: Date | string
|
|
36447
36532
|
is_auto_reply?: boolean | null
|
|
36448
36533
|
text_reply?: string | null
|
|
36449
|
-
prospect_interest
|
|
36534
|
+
prospect_interest: ProspectInterestType
|
|
36535
|
+
prospect_interest_value?: number | null
|
|
36450
36536
|
owner_id: string
|
|
36451
36537
|
created_at?: Date | string
|
|
36452
36538
|
updated_at?: Date | string
|
|
@@ -36514,7 +36600,8 @@ export namespace Prisma {
|
|
|
36514
36600
|
sent_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
36515
36601
|
is_auto_reply?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
36516
36602
|
text_reply?: NullableStringFieldUpdateOperationsInput | string | null
|
|
36517
|
-
prospect_interest?:
|
|
36603
|
+
prospect_interest?: EnumProspectInterestTypeFieldUpdateOperationsInput | ProspectInterestType
|
|
36604
|
+
prospect_interest_value?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
36518
36605
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
36519
36606
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
36520
36607
|
interest_analysed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -36534,7 +36621,8 @@ export namespace Prisma {
|
|
|
36534
36621
|
sent_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
36535
36622
|
is_auto_reply?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
36536
36623
|
text_reply?: NullableStringFieldUpdateOperationsInput | string | null
|
|
36537
|
-
prospect_interest?:
|
|
36624
|
+
prospect_interest?: EnumProspectInterestTypeFieldUpdateOperationsInput | ProspectInterestType
|
|
36625
|
+
prospect_interest_value?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
36538
36626
|
owner_id?: StringFieldUpdateOperationsInput | string
|
|
36539
36627
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
36540
36628
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -37094,7 +37182,8 @@ export namespace Prisma {
|
|
|
37094
37182
|
sent_at: Date | string
|
|
37095
37183
|
is_auto_reply?: boolean | null
|
|
37096
37184
|
text_reply?: string | null
|
|
37097
|
-
prospect_interest
|
|
37185
|
+
prospect_interest: ProspectInterestType
|
|
37186
|
+
prospect_interest_value?: number | null
|
|
37098
37187
|
owner_id: string
|
|
37099
37188
|
created_at?: Date | string
|
|
37100
37189
|
updated_at?: Date | string
|
|
@@ -37110,7 +37199,8 @@ export namespace Prisma {
|
|
|
37110
37199
|
sent_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
37111
37200
|
is_auto_reply?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
37112
37201
|
text_reply?: NullableStringFieldUpdateOperationsInput | string | null
|
|
37113
|
-
prospect_interest?:
|
|
37202
|
+
prospect_interest?: EnumProspectInterestTypeFieldUpdateOperationsInput | ProspectInterestType
|
|
37203
|
+
prospect_interest_value?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
37114
37204
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
37115
37205
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
37116
37206
|
interest_analysed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -37130,7 +37220,8 @@ export namespace Prisma {
|
|
|
37130
37220
|
sent_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
37131
37221
|
is_auto_reply?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
37132
37222
|
text_reply?: NullableStringFieldUpdateOperationsInput | string | null
|
|
37133
|
-
prospect_interest?:
|
|
37223
|
+
prospect_interest?: EnumProspectInterestTypeFieldUpdateOperationsInput | ProspectInterestType
|
|
37224
|
+
prospect_interest_value?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
37134
37225
|
owner_id?: StringFieldUpdateOperationsInput | string
|
|
37135
37226
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
37136
37227
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -37148,7 +37239,8 @@ export namespace Prisma {
|
|
|
37148
37239
|
sent_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
37149
37240
|
is_auto_reply?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
37150
37241
|
text_reply?: NullableStringFieldUpdateOperationsInput | string | null
|
|
37151
|
-
prospect_interest?:
|
|
37242
|
+
prospect_interest?: EnumProspectInterestTypeFieldUpdateOperationsInput | ProspectInterestType
|
|
37243
|
+
prospect_interest_value?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
37152
37244
|
owner_id?: StringFieldUpdateOperationsInput | string
|
|
37153
37245
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
37154
37246
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|