telescope-prisma-client 0.0.108 → 0.0.110

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.
@@ -359,7 +359,8 @@ exports.Prisma.IdealCustomerProfileScalarFieldEnum = {
359
359
  full_contact_descriptive_info: 'full_contact_descriptive_info',
360
360
  special_criteria: 'special_criteria',
361
361
  company_types_description: 'company_types_description',
362
- company_search_typed_keywords: 'company_search_typed_keywords'
362
+ company_search_typed_keywords: 'company_search_typed_keywords',
363
+ extracted_company_profiles: 'extracted_company_profiles'
363
364
  };
364
365
 
365
366
  exports.Prisma.ConnectedMailboxScalarFieldEnum = {
@@ -693,6 +693,10 @@ export type IdealCustomerProfilePayload<ExtArgs extends $Extensions.Args = $Exte
693
693
  * [CompanySearchTypedKeywords]
694
694
  */
695
695
  company_search_typed_keywords: PrismaJson.CompanySearchTypedKeywords | null
696
+ /**
697
+ * [ExtractedCompanyProfiles]
698
+ */
699
+ extracted_company_profiles: PrismaJson.ExtractedCompanyProfiles | null
696
700
  }, ExtArgs["result"]["idealCustomerProfile"]>
697
701
  composites: {}
698
702
  }
@@ -15519,6 +15523,7 @@ export namespace Prisma {
15519
15523
  special_criteria: number
15520
15524
  company_types_description: number
15521
15525
  company_search_typed_keywords: number
15526
+ extracted_company_profiles: number
15522
15527
  _all: number
15523
15528
  }
15524
15529
 
@@ -15597,6 +15602,7 @@ export namespace Prisma {
15597
15602
  special_criteria?: true
15598
15603
  company_types_description?: true
15599
15604
  company_search_typed_keywords?: true
15605
+ extracted_company_profiles?: true
15600
15606
  _all?: true
15601
15607
  }
15602
15608
 
@@ -15709,6 +15715,7 @@ export namespace Prisma {
15709
15715
  special_criteria: PrismaJson.SpecialCriteria | null
15710
15716
  company_types_description: string[]
15711
15717
  company_search_typed_keywords: PrismaJson.CompanySearchTypedKeywords | null
15718
+ extracted_company_profiles: PrismaJson.ExtractedCompanyProfiles | null
15712
15719
  _count: IdealCustomerProfileCountAggregateOutputType | null
15713
15720
  _min: IdealCustomerProfileMinAggregateOutputType | null
15714
15721
  _max: IdealCustomerProfileMaxAggregateOutputType | null
@@ -15764,6 +15771,7 @@ export namespace Prisma {
15764
15771
  special_criteria?: boolean
15765
15772
  company_types_description?: boolean
15766
15773
  company_search_typed_keywords?: boolean
15774
+ extracted_company_profiles?: boolean
15767
15775
  campaign_active_icp?: boolean | CampaignArgs<ExtArgs>
15768
15776
  campaign?: boolean | CampaignArgs<ExtArgs>
15769
15777
  owner?: boolean | UserArgs<ExtArgs>
@@ -15808,6 +15816,7 @@ export namespace Prisma {
15808
15816
  special_criteria?: boolean
15809
15817
  company_types_description?: boolean
15810
15818
  company_search_typed_keywords?: boolean
15819
+ extracted_company_profiles?: boolean
15811
15820
  }
15812
15821
 
15813
15822
  export type IdealCustomerProfileInclude<ExtArgs extends $Extensions.Args = $Extensions.DefaultArgs> = {
@@ -23272,7 +23281,8 @@ export namespace Prisma {
23272
23281
  full_contact_descriptive_info: 'full_contact_descriptive_info',
23273
23282
  special_criteria: 'special_criteria',
23274
23283
  company_types_description: 'company_types_description',
23275
- company_search_typed_keywords: 'company_search_typed_keywords'
23284
+ company_search_typed_keywords: 'company_search_typed_keywords',
23285
+ extracted_company_profiles: 'extracted_company_profiles'
23276
23286
  };
23277
23287
 
23278
23288
  export type IdealCustomerProfileScalarFieldEnum = (typeof IdealCustomerProfileScalarFieldEnum)[keyof typeof IdealCustomerProfileScalarFieldEnum]
@@ -24934,6 +24944,7 @@ export namespace Prisma {
24934
24944
  special_criteria?: JsonNullableFilter
24935
24945
  company_types_description?: StringNullableListFilter
24936
24946
  company_search_typed_keywords?: JsonNullableFilter
24947
+ extracted_company_profiles?: JsonNullableFilter
24937
24948
  campaign_active_icp?: XOR<CampaignRelationFilter, CampaignWhereInput> | null
24938
24949
  campaign?: XOR<CampaignRelationFilter, CampaignWhereInput>
24939
24950
  owner?: XOR<UserRelationFilter, UserWhereInput>
@@ -24977,6 +24988,7 @@ export namespace Prisma {
24977
24988
  special_criteria?: SortOrderInput | SortOrder
24978
24989
  company_types_description?: SortOrder
24979
24990
  company_search_typed_keywords?: SortOrderInput | SortOrder
24991
+ extracted_company_profiles?: SortOrderInput | SortOrder
24980
24992
  campaign_active_icp?: CampaignOrderByWithRelationAndSearchRelevanceInput
24981
24993
  campaign?: CampaignOrderByWithRelationAndSearchRelevanceInput
24982
24994
  owner?: UserOrderByWithRelationAndSearchRelevanceInput
@@ -25025,6 +25037,7 @@ export namespace Prisma {
25025
25037
  special_criteria?: SortOrderInput | SortOrder
25026
25038
  company_types_description?: SortOrder
25027
25039
  company_search_typed_keywords?: SortOrderInput | SortOrder
25040
+ extracted_company_profiles?: SortOrderInput | SortOrder
25028
25041
  _count?: IdealCustomerProfileCountOrderByAggregateInput
25029
25042
  _max?: IdealCustomerProfileMaxOrderByAggregateInput
25030
25043
  _min?: IdealCustomerProfileMinOrderByAggregateInput
@@ -25069,6 +25082,7 @@ export namespace Prisma {
25069
25082
  special_criteria?: JsonNullableWithAggregatesFilter
25070
25083
  company_types_description?: StringNullableListFilter
25071
25084
  company_search_typed_keywords?: JsonNullableWithAggregatesFilter
25085
+ extracted_company_profiles?: JsonNullableWithAggregatesFilter
25072
25086
  }
25073
25087
 
25074
25088
  export type ConnectedMailboxWhereInput = {
@@ -27313,6 +27327,7 @@ export namespace Prisma {
27313
27327
  special_criteria?: PrismaJson.SpecialCriteria | NullableJsonNullValueInput
27314
27328
  company_types_description?: IdealCustomerProfileCreatecompany_types_descriptionInput | Enumerable<string>
27315
27329
  company_search_typed_keywords?: PrismaJson.CompanySearchTypedKeywords | NullableJsonNullValueInput
27330
+ extracted_company_profiles?: PrismaJson.ExtractedCompanyProfiles | NullableJsonNullValueInput
27316
27331
  campaign_active_icp?: CampaignCreateNestedOneWithoutActive_icpInput
27317
27332
  campaign: CampaignCreateNestedOneWithoutIcpsInput
27318
27333
  owner: UserCreateNestedOneWithoutIdeal_customer_profilesInput
@@ -27356,6 +27371,7 @@ export namespace Prisma {
27356
27371
  special_criteria?: PrismaJson.SpecialCriteria | NullableJsonNullValueInput
27357
27372
  company_types_description?: IdealCustomerProfileCreatecompany_types_descriptionInput | Enumerable<string>
27358
27373
  company_search_typed_keywords?: PrismaJson.CompanySearchTypedKeywords | NullableJsonNullValueInput
27374
+ extracted_company_profiles?: PrismaJson.ExtractedCompanyProfiles | NullableJsonNullValueInput
27359
27375
  campaign_active_icp?: CampaignUncheckedCreateNestedOneWithoutActive_icpInput
27360
27376
  recommendations?: RecommendationUncheckedCreateNestedManyWithoutIcpInput
27361
27377
  evaluated_candidates?: EvaluatedCandidateUncheckedCreateNestedManyWithoutIcpInput
@@ -27395,6 +27411,7 @@ export namespace Prisma {
27395
27411
  special_criteria?: PrismaJson.SpecialCriteria | NullableJsonNullValueInput
27396
27412
  company_types_description?: IdealCustomerProfileUpdatecompany_types_descriptionInput | Enumerable<string>
27397
27413
  company_search_typed_keywords?: PrismaJson.CompanySearchTypedKeywords | NullableJsonNullValueInput
27414
+ extracted_company_profiles?: PrismaJson.ExtractedCompanyProfiles | NullableJsonNullValueInput
27398
27415
  campaign_active_icp?: CampaignUpdateOneWithoutActive_icpNestedInput
27399
27416
  campaign?: CampaignUpdateOneRequiredWithoutIcpsNestedInput
27400
27417
  owner?: UserUpdateOneRequiredWithoutIdeal_customer_profilesNestedInput
@@ -27438,6 +27455,7 @@ export namespace Prisma {
27438
27455
  special_criteria?: PrismaJson.SpecialCriteria | NullableJsonNullValueInput
27439
27456
  company_types_description?: IdealCustomerProfileUpdatecompany_types_descriptionInput | Enumerable<string>
27440
27457
  company_search_typed_keywords?: PrismaJson.CompanySearchTypedKeywords | NullableJsonNullValueInput
27458
+ extracted_company_profiles?: PrismaJson.ExtractedCompanyProfiles | NullableJsonNullValueInput
27441
27459
  campaign_active_icp?: CampaignUncheckedUpdateOneWithoutActive_icpNestedInput
27442
27460
  recommendations?: RecommendationUncheckedUpdateManyWithoutIcpNestedInput
27443
27461
  evaluated_candidates?: EvaluatedCandidateUncheckedUpdateManyWithoutIcpNestedInput
@@ -27479,6 +27497,7 @@ export namespace Prisma {
27479
27497
  special_criteria?: PrismaJson.SpecialCriteria | NullableJsonNullValueInput
27480
27498
  company_types_description?: IdealCustomerProfileCreatecompany_types_descriptionInput | Enumerable<string>
27481
27499
  company_search_typed_keywords?: PrismaJson.CompanySearchTypedKeywords | NullableJsonNullValueInput
27500
+ extracted_company_profiles?: PrismaJson.ExtractedCompanyProfiles | NullableJsonNullValueInput
27482
27501
  }
27483
27502
 
27484
27503
  export type IdealCustomerProfileUpdateManyMutationInput = {
@@ -27515,6 +27534,7 @@ export namespace Prisma {
27515
27534
  special_criteria?: PrismaJson.SpecialCriteria | NullableJsonNullValueInput
27516
27535
  company_types_description?: IdealCustomerProfileUpdatecompany_types_descriptionInput | Enumerable<string>
27517
27536
  company_search_typed_keywords?: PrismaJson.CompanySearchTypedKeywords | NullableJsonNullValueInput
27537
+ extracted_company_profiles?: PrismaJson.ExtractedCompanyProfiles | NullableJsonNullValueInput
27518
27538
  }
27519
27539
 
27520
27540
  export type IdealCustomerProfileUncheckedUpdateManyInput = {
@@ -27553,6 +27573,7 @@ export namespace Prisma {
27553
27573
  special_criteria?: PrismaJson.SpecialCriteria | NullableJsonNullValueInput
27554
27574
  company_types_description?: IdealCustomerProfileUpdatecompany_types_descriptionInput | Enumerable<string>
27555
27575
  company_search_typed_keywords?: PrismaJson.CompanySearchTypedKeywords | NullableJsonNullValueInput
27576
+ extracted_company_profiles?: PrismaJson.ExtractedCompanyProfiles | NullableJsonNullValueInput
27556
27577
  }
27557
27578
 
27558
27579
  export type ConnectedMailboxCreateInput = {
@@ -29702,6 +29723,7 @@ export namespace Prisma {
29702
29723
  special_criteria?: SortOrder
29703
29724
  company_types_description?: SortOrder
29704
29725
  company_search_typed_keywords?: SortOrder
29726
+ extracted_company_profiles?: SortOrder
29705
29727
  }
29706
29728
 
29707
29729
  export type IdealCustomerProfileMaxOrderByAggregateInput = {
@@ -33707,6 +33729,7 @@ export namespace Prisma {
33707
33729
  special_criteria?: PrismaJson.SpecialCriteria | NullableJsonNullValueInput
33708
33730
  company_types_description?: IdealCustomerProfileCreatecompany_types_descriptionInput | Enumerable<string>
33709
33731
  company_search_typed_keywords?: PrismaJson.CompanySearchTypedKeywords | NullableJsonNullValueInput
33732
+ extracted_company_profiles?: PrismaJson.ExtractedCompanyProfiles | NullableJsonNullValueInput
33710
33733
  campaign_active_icp?: CampaignCreateNestedOneWithoutActive_icpInput
33711
33734
  campaign: CampaignCreateNestedOneWithoutIcpsInput
33712
33735
  recommendations?: RecommendationCreateNestedManyWithoutIcpInput
@@ -33748,6 +33771,7 @@ export namespace Prisma {
33748
33771
  special_criteria?: PrismaJson.SpecialCriteria | NullableJsonNullValueInput
33749
33772
  company_types_description?: IdealCustomerProfileCreatecompany_types_descriptionInput | Enumerable<string>
33750
33773
  company_search_typed_keywords?: PrismaJson.CompanySearchTypedKeywords | NullableJsonNullValueInput
33774
+ extracted_company_profiles?: PrismaJson.ExtractedCompanyProfiles | NullableJsonNullValueInput
33751
33775
  campaign_active_icp?: CampaignUncheckedCreateNestedOneWithoutActive_icpInput
33752
33776
  recommendations?: RecommendationUncheckedCreateNestedManyWithoutIcpInput
33753
33777
  evaluated_candidates?: EvaluatedCandidateUncheckedCreateNestedManyWithoutIcpInput
@@ -34397,6 +34421,7 @@ export namespace Prisma {
34397
34421
  special_criteria?: JsonNullableFilter
34398
34422
  company_types_description?: StringNullableListFilter
34399
34423
  company_search_typed_keywords?: JsonNullableFilter
34424
+ extracted_company_profiles?: JsonNullableFilter
34400
34425
  }
34401
34426
 
34402
34427
  export type MergeConnectionUpsertWithWhereUniqueWithoutUserInput = {
@@ -36584,6 +36609,7 @@ export namespace Prisma {
36584
36609
  special_criteria?: PrismaJson.SpecialCriteria | NullableJsonNullValueInput
36585
36610
  company_types_description?: IdealCustomerProfileCreatecompany_types_descriptionInput | Enumerable<string>
36586
36611
  company_search_typed_keywords?: PrismaJson.CompanySearchTypedKeywords | NullableJsonNullValueInput
36612
+ extracted_company_profiles?: PrismaJson.ExtractedCompanyProfiles | NullableJsonNullValueInput
36587
36613
  campaign: CampaignCreateNestedOneWithoutIcpsInput
36588
36614
  owner: UserCreateNestedOneWithoutIdeal_customer_profilesInput
36589
36615
  recommendations?: RecommendationCreateNestedManyWithoutIcpInput
@@ -36626,6 +36652,7 @@ export namespace Prisma {
36626
36652
  special_criteria?: PrismaJson.SpecialCriteria | NullableJsonNullValueInput
36627
36653
  company_types_description?: IdealCustomerProfileCreatecompany_types_descriptionInput | Enumerable<string>
36628
36654
  company_search_typed_keywords?: PrismaJson.CompanySearchTypedKeywords | NullableJsonNullValueInput
36655
+ extracted_company_profiles?: PrismaJson.ExtractedCompanyProfiles | NullableJsonNullValueInput
36629
36656
  recommendations?: RecommendationUncheckedCreateNestedManyWithoutIcpInput
36630
36657
  evaluated_candidates?: EvaluatedCandidateUncheckedCreateNestedManyWithoutIcpInput
36631
36658
  }
@@ -36801,6 +36828,7 @@ export namespace Prisma {
36801
36828
  special_criteria?: PrismaJson.SpecialCriteria | NullableJsonNullValueInput
36802
36829
  company_types_description?: IdealCustomerProfileCreatecompany_types_descriptionInput | Enumerable<string>
36803
36830
  company_search_typed_keywords?: PrismaJson.CompanySearchTypedKeywords | NullableJsonNullValueInput
36831
+ extracted_company_profiles?: PrismaJson.ExtractedCompanyProfiles | NullableJsonNullValueInput
36804
36832
  campaign_active_icp?: CampaignCreateNestedOneWithoutActive_icpInput
36805
36833
  owner: UserCreateNestedOneWithoutIdeal_customer_profilesInput
36806
36834
  recommendations?: RecommendationCreateNestedManyWithoutIcpInput
@@ -36842,6 +36870,7 @@ export namespace Prisma {
36842
36870
  special_criteria?: PrismaJson.SpecialCriteria | NullableJsonNullValueInput
36843
36871
  company_types_description?: IdealCustomerProfileCreatecompany_types_descriptionInput | Enumerable<string>
36844
36872
  company_search_typed_keywords?: PrismaJson.CompanySearchTypedKeywords | NullableJsonNullValueInput
36873
+ extracted_company_profiles?: PrismaJson.ExtractedCompanyProfiles | NullableJsonNullValueInput
36845
36874
  campaign_active_icp?: CampaignUncheckedCreateNestedOneWithoutActive_icpInput
36846
36875
  recommendations?: RecommendationUncheckedCreateNestedManyWithoutIcpInput
36847
36876
  evaluated_candidates?: EvaluatedCandidateUncheckedCreateNestedManyWithoutIcpInput
@@ -37224,6 +37253,7 @@ export namespace Prisma {
37224
37253
  special_criteria?: PrismaJson.SpecialCriteria | NullableJsonNullValueInput
37225
37254
  company_types_description?: IdealCustomerProfileUpdatecompany_types_descriptionInput | Enumerable<string>
37226
37255
  company_search_typed_keywords?: PrismaJson.CompanySearchTypedKeywords | NullableJsonNullValueInput
37256
+ extracted_company_profiles?: PrismaJson.ExtractedCompanyProfiles | NullableJsonNullValueInput
37227
37257
  campaign?: CampaignUpdateOneRequiredWithoutIcpsNestedInput
37228
37258
  owner?: UserUpdateOneRequiredWithoutIdeal_customer_profilesNestedInput
37229
37259
  recommendations?: RecommendationUpdateManyWithoutIcpNestedInput
@@ -37266,6 +37296,7 @@ export namespace Prisma {
37266
37296
  special_criteria?: PrismaJson.SpecialCriteria | NullableJsonNullValueInput
37267
37297
  company_types_description?: IdealCustomerProfileUpdatecompany_types_descriptionInput | Enumerable<string>
37268
37298
  company_search_typed_keywords?: PrismaJson.CompanySearchTypedKeywords | NullableJsonNullValueInput
37299
+ extracted_company_profiles?: PrismaJson.ExtractedCompanyProfiles | NullableJsonNullValueInput
37269
37300
  recommendations?: RecommendationUncheckedUpdateManyWithoutIcpNestedInput
37270
37301
  evaluated_candidates?: EvaluatedCandidateUncheckedUpdateManyWithoutIcpNestedInput
37271
37302
  }
@@ -39597,6 +39628,7 @@ export namespace Prisma {
39597
39628
  special_criteria?: PrismaJson.SpecialCriteria | NullableJsonNullValueInput
39598
39629
  company_types_description?: IdealCustomerProfileCreatecompany_types_descriptionInput | Enumerable<string>
39599
39630
  company_search_typed_keywords?: PrismaJson.CompanySearchTypedKeywords | NullableJsonNullValueInput
39631
+ extracted_company_profiles?: PrismaJson.ExtractedCompanyProfiles | NullableJsonNullValueInput
39600
39632
  campaign_active_icp?: CampaignCreateNestedOneWithoutActive_icpInput
39601
39633
  campaign: CampaignCreateNestedOneWithoutIcpsInput
39602
39634
  owner: UserCreateNestedOneWithoutIdeal_customer_profilesInput
@@ -39639,6 +39671,7 @@ export namespace Prisma {
39639
39671
  special_criteria?: PrismaJson.SpecialCriteria | NullableJsonNullValueInput
39640
39672
  company_types_description?: IdealCustomerProfileCreatecompany_types_descriptionInput | Enumerable<string>
39641
39673
  company_search_typed_keywords?: PrismaJson.CompanySearchTypedKeywords | NullableJsonNullValueInput
39674
+ extracted_company_profiles?: PrismaJson.ExtractedCompanyProfiles | NullableJsonNullValueInput
39642
39675
  campaign_active_icp?: CampaignUncheckedCreateNestedOneWithoutActive_icpInput
39643
39676
  evaluated_candidates?: EvaluatedCandidateUncheckedCreateNestedManyWithoutIcpInput
39644
39677
  }
@@ -40159,6 +40192,7 @@ export namespace Prisma {
40159
40192
  special_criteria?: PrismaJson.SpecialCriteria | NullableJsonNullValueInput
40160
40193
  company_types_description?: IdealCustomerProfileUpdatecompany_types_descriptionInput | Enumerable<string>
40161
40194
  company_search_typed_keywords?: PrismaJson.CompanySearchTypedKeywords | NullableJsonNullValueInput
40195
+ extracted_company_profiles?: PrismaJson.ExtractedCompanyProfiles | NullableJsonNullValueInput
40162
40196
  campaign_active_icp?: CampaignUpdateOneWithoutActive_icpNestedInput
40163
40197
  campaign?: CampaignUpdateOneRequiredWithoutIcpsNestedInput
40164
40198
  owner?: UserUpdateOneRequiredWithoutIdeal_customer_profilesNestedInput
@@ -40201,6 +40235,7 @@ export namespace Prisma {
40201
40235
  special_criteria?: PrismaJson.SpecialCriteria | NullableJsonNullValueInput
40202
40236
  company_types_description?: IdealCustomerProfileUpdatecompany_types_descriptionInput | Enumerable<string>
40203
40237
  company_search_typed_keywords?: PrismaJson.CompanySearchTypedKeywords | NullableJsonNullValueInput
40238
+ extracted_company_profiles?: PrismaJson.ExtractedCompanyProfiles | NullableJsonNullValueInput
40204
40239
  campaign_active_icp?: CampaignUncheckedUpdateOneWithoutActive_icpNestedInput
40205
40240
  evaluated_candidates?: EvaluatedCandidateUncheckedUpdateManyWithoutIcpNestedInput
40206
40241
  }
@@ -43174,6 +43209,7 @@ export namespace Prisma {
43174
43209
  special_criteria?: PrismaJson.SpecialCriteria | NullableJsonNullValueInput
43175
43210
  company_types_description?: IdealCustomerProfileCreatecompany_types_descriptionInput | Enumerable<string>
43176
43211
  company_search_typed_keywords?: PrismaJson.CompanySearchTypedKeywords | NullableJsonNullValueInput
43212
+ extracted_company_profiles?: PrismaJson.ExtractedCompanyProfiles | NullableJsonNullValueInput
43177
43213
  campaign_active_icp?: CampaignCreateNestedOneWithoutActive_icpInput
43178
43214
  campaign: CampaignCreateNestedOneWithoutIcpsInput
43179
43215
  owner: UserCreateNestedOneWithoutIdeal_customer_profilesInput
@@ -43216,6 +43252,7 @@ export namespace Prisma {
43216
43252
  special_criteria?: PrismaJson.SpecialCriteria | NullableJsonNullValueInput
43217
43253
  company_types_description?: IdealCustomerProfileCreatecompany_types_descriptionInput | Enumerable<string>
43218
43254
  company_search_typed_keywords?: PrismaJson.CompanySearchTypedKeywords | NullableJsonNullValueInput
43255
+ extracted_company_profiles?: PrismaJson.ExtractedCompanyProfiles | NullableJsonNullValueInput
43219
43256
  campaign_active_icp?: CampaignUncheckedCreateNestedOneWithoutActive_icpInput
43220
43257
  recommendations?: RecommendationUncheckedCreateNestedManyWithoutIcpInput
43221
43258
  }
@@ -43422,6 +43459,7 @@ export namespace Prisma {
43422
43459
  special_criteria?: PrismaJson.SpecialCriteria | NullableJsonNullValueInput
43423
43460
  company_types_description?: IdealCustomerProfileUpdatecompany_types_descriptionInput | Enumerable<string>
43424
43461
  company_search_typed_keywords?: PrismaJson.CompanySearchTypedKeywords | NullableJsonNullValueInput
43462
+ extracted_company_profiles?: PrismaJson.ExtractedCompanyProfiles | NullableJsonNullValueInput
43425
43463
  campaign_active_icp?: CampaignUpdateOneWithoutActive_icpNestedInput
43426
43464
  campaign?: CampaignUpdateOneRequiredWithoutIcpsNestedInput
43427
43465
  owner?: UserUpdateOneRequiredWithoutIdeal_customer_profilesNestedInput
@@ -43464,6 +43502,7 @@ export namespace Prisma {
43464
43502
  special_criteria?: PrismaJson.SpecialCriteria | NullableJsonNullValueInput
43465
43503
  company_types_description?: IdealCustomerProfileUpdatecompany_types_descriptionInput | Enumerable<string>
43466
43504
  company_search_typed_keywords?: PrismaJson.CompanySearchTypedKeywords | NullableJsonNullValueInput
43505
+ extracted_company_profiles?: PrismaJson.ExtractedCompanyProfiles | NullableJsonNullValueInput
43467
43506
  campaign_active_icp?: CampaignUncheckedUpdateOneWithoutActive_icpNestedInput
43468
43507
  recommendations?: RecommendationUncheckedUpdateManyWithoutIcpNestedInput
43469
43508
  }
@@ -43694,6 +43733,7 @@ export namespace Prisma {
43694
43733
  special_criteria?: PrismaJson.SpecialCriteria | NullableJsonNullValueInput
43695
43734
  company_types_description?: IdealCustomerProfileCreatecompany_types_descriptionInput | Enumerable<string>
43696
43735
  company_search_typed_keywords?: PrismaJson.CompanySearchTypedKeywords | NullableJsonNullValueInput
43736
+ extracted_company_profiles?: PrismaJson.ExtractedCompanyProfiles | NullableJsonNullValueInput
43697
43737
  }
43698
43738
 
43699
43739
  export type MergeConnectionCreateManyUserInput = {
@@ -44035,6 +44075,7 @@ export namespace Prisma {
44035
44075
  special_criteria?: PrismaJson.SpecialCriteria | NullableJsonNullValueInput
44036
44076
  company_types_description?: IdealCustomerProfileUpdatecompany_types_descriptionInput | Enumerable<string>
44037
44077
  company_search_typed_keywords?: PrismaJson.CompanySearchTypedKeywords | NullableJsonNullValueInput
44078
+ extracted_company_profiles?: PrismaJson.ExtractedCompanyProfiles | NullableJsonNullValueInput
44038
44079
  campaign_active_icp?: CampaignUpdateOneWithoutActive_icpNestedInput
44039
44080
  campaign?: CampaignUpdateOneRequiredWithoutIcpsNestedInput
44040
44081
  recommendations?: RecommendationUpdateManyWithoutIcpNestedInput
@@ -44076,6 +44117,7 @@ export namespace Prisma {
44076
44117
  special_criteria?: PrismaJson.SpecialCriteria | NullableJsonNullValueInput
44077
44118
  company_types_description?: IdealCustomerProfileUpdatecompany_types_descriptionInput | Enumerable<string>
44078
44119
  company_search_typed_keywords?: PrismaJson.CompanySearchTypedKeywords | NullableJsonNullValueInput
44120
+ extracted_company_profiles?: PrismaJson.ExtractedCompanyProfiles | NullableJsonNullValueInput
44079
44121
  campaign_active_icp?: CampaignUncheckedUpdateOneWithoutActive_icpNestedInput
44080
44122
  recommendations?: RecommendationUncheckedUpdateManyWithoutIcpNestedInput
44081
44123
  evaluated_candidates?: EvaluatedCandidateUncheckedUpdateManyWithoutIcpNestedInput
@@ -44116,6 +44158,7 @@ export namespace Prisma {
44116
44158
  special_criteria?: NullableJsonNullValueInput | InputJsonValue
44117
44159
  company_types_description?: IdealCustomerProfileUpdatecompany_types_descriptionInput | Enumerable<string>
44118
44160
  company_search_typed_keywords?: NullableJsonNullValueInput | InputJsonValue
44161
+ extracted_company_profiles?: NullableJsonNullValueInput | InputJsonValue
44119
44162
  }
44120
44163
 
44121
44164
  export type MergeConnectionUpdateWithoutUserInput = {
@@ -45377,6 +45420,7 @@ export namespace Prisma {
45377
45420
  special_criteria?: PrismaJson.SpecialCriteria | NullableJsonNullValueInput
45378
45421
  company_types_description?: IdealCustomerProfileCreatecompany_types_descriptionInput | Enumerable<string>
45379
45422
  company_search_typed_keywords?: PrismaJson.CompanySearchTypedKeywords | NullableJsonNullValueInput
45423
+ extracted_company_profiles?: PrismaJson.ExtractedCompanyProfiles | NullableJsonNullValueInput
45380
45424
  }
45381
45425
 
45382
45426
  export type ProspectCreateManyCampaignInput = {
@@ -45541,6 +45585,7 @@ export namespace Prisma {
45541
45585
  special_criteria?: PrismaJson.SpecialCriteria | NullableJsonNullValueInput
45542
45586
  company_types_description?: IdealCustomerProfileUpdatecompany_types_descriptionInput | Enumerable<string>
45543
45587
  company_search_typed_keywords?: PrismaJson.CompanySearchTypedKeywords | NullableJsonNullValueInput
45588
+ extracted_company_profiles?: PrismaJson.ExtractedCompanyProfiles | NullableJsonNullValueInput
45544
45589
  campaign_active_icp?: CampaignUpdateOneWithoutActive_icpNestedInput
45545
45590
  owner?: UserUpdateOneRequiredWithoutIdeal_customer_profilesNestedInput
45546
45591
  recommendations?: RecommendationUpdateManyWithoutIcpNestedInput
@@ -45582,6 +45627,7 @@ export namespace Prisma {
45582
45627
  special_criteria?: PrismaJson.SpecialCriteria | NullableJsonNullValueInput
45583
45628
  company_types_description?: IdealCustomerProfileUpdatecompany_types_descriptionInput | Enumerable<string>
45584
45629
  company_search_typed_keywords?: PrismaJson.CompanySearchTypedKeywords | NullableJsonNullValueInput
45630
+ extracted_company_profiles?: PrismaJson.ExtractedCompanyProfiles | NullableJsonNullValueInput
45585
45631
  campaign_active_icp?: CampaignUncheckedUpdateOneWithoutActive_icpNestedInput
45586
45632
  recommendations?: RecommendationUncheckedUpdateManyWithoutIcpNestedInput
45587
45633
  evaluated_candidates?: EvaluatedCandidateUncheckedUpdateManyWithoutIcpNestedInput
@@ -45622,6 +45668,7 @@ export namespace Prisma {
45622
45668
  special_criteria?: NullableJsonNullValueInput | InputJsonValue
45623
45669
  company_types_description?: IdealCustomerProfileUpdatecompany_types_descriptionInput | Enumerable<string>
45624
45670
  company_search_typed_keywords?: NullableJsonNullValueInput | InputJsonValue
45671
+ extracted_company_profiles?: NullableJsonNullValueInput | InputJsonValue
45625
45672
  }
45626
45673
 
45627
45674
  export type ProspectUpdateWithoutCampaignInput = {