@a_team/prisma 3.20.2-macos-docker-linux → 3.20.3-linux
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/dist/client/edge.js +4 -4
- package/dist/client/index.d.ts +436 -82
- package/dist/client/index.js +6 -6
- package/dist/client/{libquery_engine-linux-arm64-openssl-3.0.x.so.node → libquery_engine-linux-musl-openssl-3.0.x.so.node} +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +29 -6
- package/package.json +4 -2
package/dist/client/index.d.ts
CHANGED
|
@@ -128,6 +128,16 @@ export type StructuredEnrichment = $Result.DefaultSelection<Prisma.$StructuredEn
|
|
|
128
128
|
*
|
|
129
129
|
*/
|
|
130
130
|
export type ClearbitEnrichment = $Result.DefaultSelection<Prisma.$ClearbitEnrichmentPayload>
|
|
131
|
+
/**
|
|
132
|
+
* Model ApolloEnrichmentCompanyData
|
|
133
|
+
*
|
|
134
|
+
*/
|
|
135
|
+
export type ApolloEnrichmentCompanyData = $Result.DefaultSelection<Prisma.$ApolloEnrichmentCompanyDataPayload>
|
|
136
|
+
/**
|
|
137
|
+
* Model ApolloEnrichmentData
|
|
138
|
+
*
|
|
139
|
+
*/
|
|
140
|
+
export type ApolloEnrichmentData = $Result.DefaultSelection<Prisma.$ApolloEnrichmentDataPayload>
|
|
131
141
|
/**
|
|
132
142
|
* Model ApolloEnrichment
|
|
133
143
|
*
|
|
@@ -6752,6 +6762,175 @@ export namespace Prisma {
|
|
|
6752
6762
|
}
|
|
6753
6763
|
|
|
6754
6764
|
|
|
6765
|
+
/**
|
|
6766
|
+
* Model ApolloEnrichmentCompanyData
|
|
6767
|
+
*/
|
|
6768
|
+
|
|
6769
|
+
|
|
6770
|
+
|
|
6771
|
+
|
|
6772
|
+
|
|
6773
|
+
export type ApolloEnrichmentCompanyDataSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
6774
|
+
referenceId?: boolean
|
|
6775
|
+
companyName?: boolean
|
|
6776
|
+
totalMoneyRaisedAmount?: boolean
|
|
6777
|
+
totalMoneyRaisedCurrency?: boolean
|
|
6778
|
+
numberOfEmployees?: boolean
|
|
6779
|
+
yearFounded?: boolean
|
|
6780
|
+
hqLocationCountry?: boolean
|
|
6781
|
+
enriched?: boolean
|
|
6782
|
+
website?: boolean
|
|
6783
|
+
source?: boolean
|
|
6784
|
+
industry?: boolean
|
|
6785
|
+
description?: boolean
|
|
6786
|
+
seoDescription?: boolean
|
|
6787
|
+
logoUrl?: boolean
|
|
6788
|
+
linkedinUrl?: boolean
|
|
6789
|
+
linkedinId?: boolean
|
|
6790
|
+
}, ExtArgs["result"]["apolloEnrichmentCompanyData"]>
|
|
6791
|
+
|
|
6792
|
+
|
|
6793
|
+
export type ApolloEnrichmentCompanyDataSelectScalar = {
|
|
6794
|
+
referenceId?: boolean
|
|
6795
|
+
companyName?: boolean
|
|
6796
|
+
totalMoneyRaisedAmount?: boolean
|
|
6797
|
+
totalMoneyRaisedCurrency?: boolean
|
|
6798
|
+
numberOfEmployees?: boolean
|
|
6799
|
+
yearFounded?: boolean
|
|
6800
|
+
hqLocationCountry?: boolean
|
|
6801
|
+
enriched?: boolean
|
|
6802
|
+
website?: boolean
|
|
6803
|
+
source?: boolean
|
|
6804
|
+
industry?: boolean
|
|
6805
|
+
description?: boolean
|
|
6806
|
+
seoDescription?: boolean
|
|
6807
|
+
logoUrl?: boolean
|
|
6808
|
+
linkedinUrl?: boolean
|
|
6809
|
+
linkedinId?: boolean
|
|
6810
|
+
}
|
|
6811
|
+
|
|
6812
|
+
|
|
6813
|
+
export type $ApolloEnrichmentCompanyDataPayload = {
|
|
6814
|
+
name: "ApolloEnrichmentCompanyData"
|
|
6815
|
+
objects: {}
|
|
6816
|
+
scalars: {
|
|
6817
|
+
referenceId: string | null
|
|
6818
|
+
companyName: string | null
|
|
6819
|
+
totalMoneyRaisedAmount: number | null
|
|
6820
|
+
totalMoneyRaisedCurrency: string | null
|
|
6821
|
+
numberOfEmployees: number | null
|
|
6822
|
+
yearFounded: number | null
|
|
6823
|
+
hqLocationCountry: string | null
|
|
6824
|
+
enriched: boolean | null
|
|
6825
|
+
website: string | null
|
|
6826
|
+
source: string | null
|
|
6827
|
+
industry: string | null
|
|
6828
|
+
description: string | null
|
|
6829
|
+
seoDescription: string | null
|
|
6830
|
+
logoUrl: string | null
|
|
6831
|
+
linkedinUrl: string | null
|
|
6832
|
+
linkedinId: string | null
|
|
6833
|
+
}
|
|
6834
|
+
composites: {}
|
|
6835
|
+
}
|
|
6836
|
+
|
|
6837
|
+
type ApolloEnrichmentCompanyDataGetPayload<S extends boolean | null | undefined | ApolloEnrichmentCompanyDataDefaultArgs> = $Result.GetResult<Prisma.$ApolloEnrichmentCompanyDataPayload, S>
|
|
6838
|
+
|
|
6839
|
+
|
|
6840
|
+
|
|
6841
|
+
|
|
6842
|
+
|
|
6843
|
+
/**
|
|
6844
|
+
* Fields of the ApolloEnrichmentCompanyData model
|
|
6845
|
+
*/
|
|
6846
|
+
interface ApolloEnrichmentCompanyDataFieldRefs {
|
|
6847
|
+
readonly referenceId: FieldRef<"ApolloEnrichmentCompanyData", 'String'>
|
|
6848
|
+
readonly companyName: FieldRef<"ApolloEnrichmentCompanyData", 'String'>
|
|
6849
|
+
readonly totalMoneyRaisedAmount: FieldRef<"ApolloEnrichmentCompanyData", 'Int'>
|
|
6850
|
+
readonly totalMoneyRaisedCurrency: FieldRef<"ApolloEnrichmentCompanyData", 'String'>
|
|
6851
|
+
readonly numberOfEmployees: FieldRef<"ApolloEnrichmentCompanyData", 'Int'>
|
|
6852
|
+
readonly yearFounded: FieldRef<"ApolloEnrichmentCompanyData", 'Int'>
|
|
6853
|
+
readonly hqLocationCountry: FieldRef<"ApolloEnrichmentCompanyData", 'String'>
|
|
6854
|
+
readonly enriched: FieldRef<"ApolloEnrichmentCompanyData", 'Boolean'>
|
|
6855
|
+
readonly website: FieldRef<"ApolloEnrichmentCompanyData", 'String'>
|
|
6856
|
+
readonly source: FieldRef<"ApolloEnrichmentCompanyData", 'String'>
|
|
6857
|
+
readonly industry: FieldRef<"ApolloEnrichmentCompanyData", 'String'>
|
|
6858
|
+
readonly description: FieldRef<"ApolloEnrichmentCompanyData", 'String'>
|
|
6859
|
+
readonly seoDescription: FieldRef<"ApolloEnrichmentCompanyData", 'String'>
|
|
6860
|
+
readonly logoUrl: FieldRef<"ApolloEnrichmentCompanyData", 'String'>
|
|
6861
|
+
readonly linkedinUrl: FieldRef<"ApolloEnrichmentCompanyData", 'String'>
|
|
6862
|
+
readonly linkedinId: FieldRef<"ApolloEnrichmentCompanyData", 'String'>
|
|
6863
|
+
}
|
|
6864
|
+
|
|
6865
|
+
|
|
6866
|
+
// Custom InputTypes
|
|
6867
|
+
/**
|
|
6868
|
+
* ApolloEnrichmentCompanyData without action
|
|
6869
|
+
*/
|
|
6870
|
+
export type ApolloEnrichmentCompanyDataDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6871
|
+
/**
|
|
6872
|
+
* Select specific fields to fetch from the ApolloEnrichmentCompanyData
|
|
6873
|
+
*/
|
|
6874
|
+
select?: ApolloEnrichmentCompanyDataSelect<ExtArgs> | null
|
|
6875
|
+
}
|
|
6876
|
+
|
|
6877
|
+
|
|
6878
|
+
/**
|
|
6879
|
+
* Model ApolloEnrichmentData
|
|
6880
|
+
*/
|
|
6881
|
+
|
|
6882
|
+
|
|
6883
|
+
|
|
6884
|
+
|
|
6885
|
+
|
|
6886
|
+
export type ApolloEnrichmentDataSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
6887
|
+
company?: boolean | ApolloEnrichmentCompanyDataDefaultArgs<ExtArgs>
|
|
6888
|
+
}, ExtArgs["result"]["apolloEnrichmentData"]>
|
|
6889
|
+
|
|
6890
|
+
|
|
6891
|
+
export type ApolloEnrichmentDataSelectScalar = {}
|
|
6892
|
+
|
|
6893
|
+
export type ApolloEnrichmentDataInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {}
|
|
6894
|
+
|
|
6895
|
+
export type $ApolloEnrichmentDataPayload = {
|
|
6896
|
+
name: "ApolloEnrichmentData"
|
|
6897
|
+
objects: {}
|
|
6898
|
+
scalars: {}
|
|
6899
|
+
composites: {
|
|
6900
|
+
company: Prisma.$ApolloEnrichmentCompanyDataPayload | null
|
|
6901
|
+
}
|
|
6902
|
+
}
|
|
6903
|
+
|
|
6904
|
+
type ApolloEnrichmentDataGetPayload<S extends boolean | null | undefined | ApolloEnrichmentDataDefaultArgs> = $Result.GetResult<Prisma.$ApolloEnrichmentDataPayload, S>
|
|
6905
|
+
|
|
6906
|
+
|
|
6907
|
+
|
|
6908
|
+
|
|
6909
|
+
|
|
6910
|
+
/**
|
|
6911
|
+
* Fields of the ApolloEnrichmentData model
|
|
6912
|
+
*/
|
|
6913
|
+
interface ApolloEnrichmentDataFieldRefs {
|
|
6914
|
+
|
|
6915
|
+
}
|
|
6916
|
+
|
|
6917
|
+
|
|
6918
|
+
// Custom InputTypes
|
|
6919
|
+
/**
|
|
6920
|
+
* ApolloEnrichmentData without action
|
|
6921
|
+
*/
|
|
6922
|
+
export type ApolloEnrichmentDataDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6923
|
+
/**
|
|
6924
|
+
* Select specific fields to fetch from the ApolloEnrichmentData
|
|
6925
|
+
*/
|
|
6926
|
+
select?: ApolloEnrichmentDataSelect<ExtArgs> | null
|
|
6927
|
+
/**
|
|
6928
|
+
* Choose, which related nodes to fetch as well
|
|
6929
|
+
*/
|
|
6930
|
+
include?: ApolloEnrichmentDataInclude<ExtArgs> | null
|
|
6931
|
+
}
|
|
6932
|
+
|
|
6933
|
+
|
|
6755
6934
|
/**
|
|
6756
6935
|
* Model ApolloEnrichment
|
|
6757
6936
|
*/
|
|
@@ -6761,22 +6940,21 @@ export namespace Prisma {
|
|
|
6761
6940
|
|
|
6762
6941
|
|
|
6763
6942
|
export type ApolloEnrichmentSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
6764
|
-
data?: boolean
|
|
6943
|
+
data?: boolean | ApolloEnrichmentDataDefaultArgs<ExtArgs>
|
|
6765
6944
|
}, ExtArgs["result"]["apolloEnrichment"]>
|
|
6766
6945
|
|
|
6767
6946
|
|
|
6768
|
-
export type ApolloEnrichmentSelectScalar = {
|
|
6769
|
-
data?: boolean
|
|
6770
|
-
}
|
|
6947
|
+
export type ApolloEnrichmentSelectScalar = {}
|
|
6771
6948
|
|
|
6949
|
+
export type ApolloEnrichmentInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {}
|
|
6772
6950
|
|
|
6773
6951
|
export type $ApolloEnrichmentPayload = {
|
|
6774
6952
|
name: "ApolloEnrichment"
|
|
6775
6953
|
objects: {}
|
|
6776
|
-
scalars: {
|
|
6777
|
-
|
|
6954
|
+
scalars: {}
|
|
6955
|
+
composites: {
|
|
6956
|
+
data: Prisma.$ApolloEnrichmentDataPayload | null
|
|
6778
6957
|
}
|
|
6779
|
-
composites: {}
|
|
6780
6958
|
}
|
|
6781
6959
|
|
|
6782
6960
|
type ApolloEnrichmentGetPayload<S extends boolean | null | undefined | ApolloEnrichmentDefaultArgs> = $Result.GetResult<Prisma.$ApolloEnrichmentPayload, S>
|
|
@@ -6789,7 +6967,7 @@ export namespace Prisma {
|
|
|
6789
6967
|
* Fields of the ApolloEnrichment model
|
|
6790
6968
|
*/
|
|
6791
6969
|
interface ApolloEnrichmentFieldRefs {
|
|
6792
|
-
|
|
6970
|
+
|
|
6793
6971
|
}
|
|
6794
6972
|
|
|
6795
6973
|
|
|
@@ -6802,6 +6980,10 @@ export namespace Prisma {
|
|
|
6802
6980
|
* Select specific fields to fetch from the ApolloEnrichment
|
|
6803
6981
|
*/
|
|
6804
6982
|
select?: ApolloEnrichmentSelect<ExtArgs> | null
|
|
6983
|
+
/**
|
|
6984
|
+
* Choose, which related nodes to fetch as well
|
|
6985
|
+
*/
|
|
6986
|
+
include?: ApolloEnrichmentInclude<ExtArgs> | null
|
|
6805
6987
|
}
|
|
6806
6988
|
|
|
6807
6989
|
|
|
@@ -22229,7 +22411,7 @@ export namespace Prisma {
|
|
|
22229
22411
|
requiresDeepEnrichment: boolean | null
|
|
22230
22412
|
}, ExtArgs["result"]["company"]>
|
|
22231
22413
|
composites: {
|
|
22232
|
-
enrichment: Prisma.$CompanyEnrichmentPayload
|
|
22414
|
+
enrichment: Prisma.$CompanyEnrichmentPayload | null
|
|
22233
22415
|
}
|
|
22234
22416
|
}
|
|
22235
22417
|
|
|
@@ -46845,7 +47027,7 @@ export namespace Prisma {
|
|
|
46845
47027
|
id?: StringFilter<"Company"> | string
|
|
46846
47028
|
name?: StringFilter<"Company"> | string
|
|
46847
47029
|
url?: StringFilter<"Company"> | string
|
|
46848
|
-
enrichment?: XOR<
|
|
47030
|
+
enrichment?: XOR<CompanyEnrichmentNullableCompositeFilter, CompanyEnrichmentObjectEqualityInput> | null
|
|
46849
47031
|
createdBy?: StringNullableFilter<"Company"> | string | null
|
|
46850
47032
|
createdAt?: DateTimeNullableFilter<"Company"> | Date | string | null
|
|
46851
47033
|
updatedAt?: DateTimeNullableFilter<"Company"> | Date | string | null
|
|
@@ -46872,7 +47054,7 @@ export namespace Prisma {
|
|
|
46872
47054
|
NOT?: CompanyWhereInput | CompanyWhereInput[]
|
|
46873
47055
|
name?: StringFilter<"Company"> | string
|
|
46874
47056
|
url?: StringFilter<"Company"> | string
|
|
46875
|
-
enrichment?: XOR<
|
|
47057
|
+
enrichment?: XOR<CompanyEnrichmentNullableCompositeFilter, CompanyEnrichmentObjectEqualityInput> | null
|
|
46876
47058
|
createdBy?: StringNullableFilter<"Company"> | string | null
|
|
46877
47059
|
createdAt?: DateTimeNullableFilter<"Company"> | Date | string | null
|
|
46878
47060
|
updatedAt?: DateTimeNullableFilter<"Company"> | Date | string | null
|
|
@@ -50185,7 +50367,7 @@ export namespace Prisma {
|
|
|
50185
50367
|
id?: string
|
|
50186
50368
|
name: string
|
|
50187
50369
|
url: string
|
|
50188
|
-
enrichment
|
|
50370
|
+
enrichment?: XOR<CompanyEnrichmentNullableCreateEnvelopeInput, CompanyEnrichmentCreateInput> | null
|
|
50189
50371
|
createdBy?: string | null
|
|
50190
50372
|
createdAt?: Date | string | null
|
|
50191
50373
|
updatedAt?: Date | string | null
|
|
@@ -50197,7 +50379,7 @@ export namespace Prisma {
|
|
|
50197
50379
|
id?: string
|
|
50198
50380
|
name: string
|
|
50199
50381
|
url: string
|
|
50200
|
-
enrichment
|
|
50382
|
+
enrichment?: XOR<CompanyEnrichmentNullableCreateEnvelopeInput, CompanyEnrichmentCreateInput> | null
|
|
50201
50383
|
createdBy?: string | null
|
|
50202
50384
|
createdAt?: Date | string | null
|
|
50203
50385
|
updatedAt?: Date | string | null
|
|
@@ -50208,7 +50390,7 @@ export namespace Prisma {
|
|
|
50208
50390
|
export type CompanyUpdateInput = {
|
|
50209
50391
|
name?: StringFieldUpdateOperationsInput | string
|
|
50210
50392
|
url?: StringFieldUpdateOperationsInput | string
|
|
50211
|
-
enrichment?: XOR<
|
|
50393
|
+
enrichment?: XOR<CompanyEnrichmentNullableUpdateEnvelopeInput, CompanyEnrichmentCreateInput> | null
|
|
50212
50394
|
createdBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
50213
50395
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
50214
50396
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -50219,7 +50401,7 @@ export namespace Prisma {
|
|
|
50219
50401
|
export type CompanyUncheckedUpdateInput = {
|
|
50220
50402
|
name?: StringFieldUpdateOperationsInput | string
|
|
50221
50403
|
url?: StringFieldUpdateOperationsInput | string
|
|
50222
|
-
enrichment?: XOR<
|
|
50404
|
+
enrichment?: XOR<CompanyEnrichmentNullableUpdateEnvelopeInput, CompanyEnrichmentCreateInput> | null
|
|
50223
50405
|
createdBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
50224
50406
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
50225
50407
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -50231,7 +50413,7 @@ export namespace Prisma {
|
|
|
50231
50413
|
id?: string
|
|
50232
50414
|
name: string
|
|
50233
50415
|
url: string
|
|
50234
|
-
enrichment
|
|
50416
|
+
enrichment?: XOR<CompanyEnrichmentNullableCreateEnvelopeInput, CompanyEnrichmentCreateInput> | null
|
|
50235
50417
|
createdBy?: string | null
|
|
50236
50418
|
createdAt?: Date | string | null
|
|
50237
50419
|
updatedAt?: Date | string | null
|
|
@@ -50241,7 +50423,7 @@ export namespace Prisma {
|
|
|
50241
50423
|
export type CompanyUpdateManyMutationInput = {
|
|
50242
50424
|
name?: StringFieldUpdateOperationsInput | string
|
|
50243
50425
|
url?: StringFieldUpdateOperationsInput | string
|
|
50244
|
-
enrichment?: XOR<
|
|
50426
|
+
enrichment?: XOR<CompanyEnrichmentNullableUpdateEnvelopeInput, CompanyEnrichmentCreateInput> | null
|
|
50245
50427
|
createdBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
50246
50428
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
50247
50429
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -50251,7 +50433,7 @@ export namespace Prisma {
|
|
|
50251
50433
|
export type CompanyUncheckedUpdateManyInput = {
|
|
50252
50434
|
name?: StringFieldUpdateOperationsInput | string
|
|
50253
50435
|
url?: StringFieldUpdateOperationsInput | string
|
|
50254
|
-
enrichment?: XOR<
|
|
50436
|
+
enrichment?: XOR<CompanyEnrichmentNullableUpdateEnvelopeInput, CompanyEnrichmentCreateInput> | null
|
|
50255
50437
|
createdBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
50256
50438
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
50257
50439
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -54296,10 +54478,11 @@ export namespace Prisma {
|
|
|
54296
54478
|
isSet?: boolean
|
|
54297
54479
|
}
|
|
54298
54480
|
|
|
54299
|
-
export type
|
|
54300
|
-
equals?: CompanyEnrichmentObjectEqualityInput
|
|
54301
|
-
is?: CompanyEnrichmentWhereInput
|
|
54302
|
-
isNot?: CompanyEnrichmentWhereInput
|
|
54481
|
+
export type CompanyEnrichmentNullableCompositeFilter = {
|
|
54482
|
+
equals?: CompanyEnrichmentObjectEqualityInput | null
|
|
54483
|
+
is?: CompanyEnrichmentWhereInput | null
|
|
54484
|
+
isNot?: CompanyEnrichmentWhereInput | null
|
|
54485
|
+
isSet?: boolean
|
|
54303
54486
|
}
|
|
54304
54487
|
|
|
54305
54488
|
export type CompanyEnrichmentObjectEqualityInput = {
|
|
@@ -58217,8 +58400,8 @@ export namespace Prisma {
|
|
|
58217
58400
|
update?: XOR<XOR<CalendarEventUpdateToOneWithWhereWithoutClientInterviewInput, CalendarEventUpdateWithoutClientInterviewInput>, CalendarEventUncheckedUpdateWithoutClientInterviewInput>
|
|
58218
58401
|
}
|
|
58219
58402
|
|
|
58220
|
-
export type
|
|
58221
|
-
set?: CompanyEnrichmentCreateInput
|
|
58403
|
+
export type CompanyEnrichmentNullableCreateEnvelopeInput = {
|
|
58404
|
+
set?: CompanyEnrichmentCreateInput | null
|
|
58222
58405
|
}
|
|
58223
58406
|
|
|
58224
58407
|
export type CompanyEnrichmentCreateInput = {
|
|
@@ -58241,9 +58424,10 @@ export namespace Prisma {
|
|
|
58241
58424
|
connect?: AccountWhereUniqueInput | AccountWhereUniqueInput[]
|
|
58242
58425
|
}
|
|
58243
58426
|
|
|
58244
|
-
export type
|
|
58245
|
-
set?: CompanyEnrichmentCreateInput
|
|
58246
|
-
|
|
58427
|
+
export type CompanyEnrichmentNullableUpdateEnvelopeInput = {
|
|
58428
|
+
set?: CompanyEnrichmentCreateInput | null
|
|
58429
|
+
upsert?: CompanyEnrichmentUpsertInput
|
|
58430
|
+
unset?: boolean
|
|
58247
58431
|
}
|
|
58248
58432
|
|
|
58249
58433
|
export type AccountUpdateManyWithoutCompanyNestedInput = {
|
|
@@ -61677,7 +61861,7 @@ export namespace Prisma {
|
|
|
61677
61861
|
}
|
|
61678
61862
|
|
|
61679
61863
|
export type ApolloEnrichmentObjectEqualityInput = {
|
|
61680
|
-
data?:
|
|
61864
|
+
data?: ApolloEnrichmentDataObjectEqualityInput | null
|
|
61681
61865
|
}
|
|
61682
61866
|
|
|
61683
61867
|
export type StructuredEnrichmentOrderByInput = {
|
|
@@ -61698,7 +61882,7 @@ export namespace Prisma {
|
|
|
61698
61882
|
}
|
|
61699
61883
|
|
|
61700
61884
|
export type ApolloEnrichmentOrderByInput = {
|
|
61701
|
-
data?:
|
|
61885
|
+
data?: ApolloEnrichmentDataOrderByInput
|
|
61702
61886
|
}
|
|
61703
61887
|
|
|
61704
61888
|
export type NestedEnumContractStatusFilter<$PrismaModel = never> = {
|
|
@@ -62939,7 +63123,7 @@ export namespace Prisma {
|
|
|
62939
63123
|
id?: string
|
|
62940
63124
|
name: string
|
|
62941
63125
|
url: string
|
|
62942
|
-
enrichment
|
|
63126
|
+
enrichment?: XOR<CompanyEnrichmentNullableCreateEnvelopeInput, CompanyEnrichmentCreateInput> | null
|
|
62943
63127
|
createdBy?: string | null
|
|
62944
63128
|
createdAt?: Date | string | null
|
|
62945
63129
|
updatedAt?: Date | string | null
|
|
@@ -62950,7 +63134,7 @@ export namespace Prisma {
|
|
|
62950
63134
|
id?: string
|
|
62951
63135
|
name: string
|
|
62952
63136
|
url: string
|
|
62953
|
-
enrichment
|
|
63137
|
+
enrichment?: XOR<CompanyEnrichmentNullableCreateEnvelopeInput, CompanyEnrichmentCreateInput> | null
|
|
62954
63138
|
createdBy?: string | null
|
|
62955
63139
|
createdAt?: Date | string | null
|
|
62956
63140
|
updatedAt?: Date | string | null
|
|
@@ -63401,7 +63585,7 @@ export namespace Prisma {
|
|
|
63401
63585
|
export type CompanyUpdateWithoutAccountsInput = {
|
|
63402
63586
|
name?: StringFieldUpdateOperationsInput | string
|
|
63403
63587
|
url?: StringFieldUpdateOperationsInput | string
|
|
63404
|
-
enrichment?: XOR<
|
|
63588
|
+
enrichment?: XOR<CompanyEnrichmentNullableUpdateEnvelopeInput, CompanyEnrichmentCreateInput> | null
|
|
63405
63589
|
createdBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63406
63590
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
63407
63591
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -63411,7 +63595,7 @@ export namespace Prisma {
|
|
|
63411
63595
|
export type CompanyUncheckedUpdateWithoutAccountsInput = {
|
|
63412
63596
|
name?: StringFieldUpdateOperationsInput | string
|
|
63413
63597
|
url?: StringFieldUpdateOperationsInput | string
|
|
63414
|
-
enrichment?: XOR<
|
|
63598
|
+
enrichment?: XOR<CompanyEnrichmentNullableUpdateEnvelopeInput, CompanyEnrichmentCreateInput> | null
|
|
63415
63599
|
createdBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63416
63600
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
63417
63601
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -66862,7 +67046,7 @@ export namespace Prisma {
|
|
|
66862
67046
|
}
|
|
66863
67047
|
|
|
66864
67048
|
export type ApolloEnrichmentCreateInput = {
|
|
66865
|
-
data?:
|
|
67049
|
+
data?: ApolloEnrichmentDataCreateInput | null
|
|
66866
67050
|
}
|
|
66867
67051
|
|
|
66868
67052
|
export type AccountCreateWithoutCompanyInput = {
|
|
@@ -66908,10 +67092,9 @@ export namespace Prisma {
|
|
|
66908
67092
|
data: AccountCreateManyCompanyInput | AccountCreateManyCompanyInput[]
|
|
66909
67093
|
}
|
|
66910
67094
|
|
|
66911
|
-
export type
|
|
66912
|
-
|
|
66913
|
-
|
|
66914
|
-
apollo?: XOR<ApolloEnrichmentNullableUpdateEnvelopeInput, ApolloEnrichmentCreateInput> | null
|
|
67095
|
+
export type CompanyEnrichmentUpsertInput = {
|
|
67096
|
+
set: CompanyEnrichmentCreateInput | null
|
|
67097
|
+
update: CompanyEnrichmentUpdateInput
|
|
66915
67098
|
}
|
|
66916
67099
|
|
|
66917
67100
|
export type AccountUpsertWithWhereUniqueWithoutCompanyInput = {
|
|
@@ -74795,6 +74978,14 @@ export namespace Prisma {
|
|
|
74795
74978
|
isSet?: boolean
|
|
74796
74979
|
}
|
|
74797
74980
|
|
|
74981
|
+
export type ApolloEnrichmentDataObjectEqualityInput = {
|
|
74982
|
+
company?: ApolloEnrichmentCompanyDataObjectEqualityInput | null
|
|
74983
|
+
}
|
|
74984
|
+
|
|
74985
|
+
export type ApolloEnrichmentDataOrderByInput = {
|
|
74986
|
+
company?: ApolloEnrichmentCompanyDataOrderByInput
|
|
74987
|
+
}
|
|
74988
|
+
|
|
74798
74989
|
export type EnumContractPartyTypeFilter<$PrismaModel = never> = {
|
|
74799
74990
|
equals?: $Enums.ContractPartyType | EnumContractPartyTypeFieldRefInput<$PrismaModel>
|
|
74800
74991
|
in?: $Enums.ContractPartyType[] | ListEnumContractPartyTypeFieldRefInput<$PrismaModel>
|
|
@@ -76323,6 +76514,10 @@ export namespace Prisma {
|
|
|
76323
76514
|
set: string[]
|
|
76324
76515
|
}
|
|
76325
76516
|
|
|
76517
|
+
export type ApolloEnrichmentDataCreateInput = {
|
|
76518
|
+
company?: ApolloEnrichmentCompanyDataCreateInput | null
|
|
76519
|
+
}
|
|
76520
|
+
|
|
76326
76521
|
export type AccountCreateManyCompanyInput = {
|
|
76327
76522
|
id?: string
|
|
76328
76523
|
clientCompany?: string | null
|
|
@@ -76335,22 +76530,10 @@ export namespace Prisma {
|
|
|
76335
76530
|
migrations?: AccountCreatemigrationsInput | string[]
|
|
76336
76531
|
}
|
|
76337
76532
|
|
|
76338
|
-
export type
|
|
76339
|
-
|
|
76340
|
-
|
|
76341
|
-
|
|
76342
|
-
}
|
|
76343
|
-
|
|
76344
|
-
export type ClearbitEnrichmentNullableUpdateEnvelopeInput = {
|
|
76345
|
-
set?: ClearbitEnrichmentCreateInput | null
|
|
76346
|
-
upsert?: ClearbitEnrichmentUpsertInput
|
|
76347
|
-
unset?: boolean
|
|
76348
|
-
}
|
|
76349
|
-
|
|
76350
|
-
export type ApolloEnrichmentNullableUpdateEnvelopeInput = {
|
|
76351
|
-
set?: ApolloEnrichmentCreateInput | null
|
|
76352
|
-
upsert?: ApolloEnrichmentUpsertInput
|
|
76353
|
-
unset?: boolean
|
|
76533
|
+
export type CompanyEnrichmentUpdateInput = {
|
|
76534
|
+
structured?: XOR<StructuredEnrichmentNullableUpdateEnvelopeInput, StructuredEnrichmentCreateInput> | null
|
|
76535
|
+
clearbit?: XOR<ClearbitEnrichmentNullableUpdateEnvelopeInput, ClearbitEnrichmentCreateInput> | null
|
|
76536
|
+
apollo?: XOR<ApolloEnrichmentNullableUpdateEnvelopeInput, ApolloEnrichmentCreateInput> | null
|
|
76354
76537
|
}
|
|
76355
76538
|
|
|
76356
76539
|
export type AccountUpdateWithoutCompanyInput = {
|
|
@@ -79448,7 +79631,45 @@ export namespace Prisma {
|
|
|
79448
79631
|
AND?: ApolloEnrichmentWhereInput | ApolloEnrichmentWhereInput[]
|
|
79449
79632
|
OR?: ApolloEnrichmentWhereInput[]
|
|
79450
79633
|
NOT?: ApolloEnrichmentWhereInput | ApolloEnrichmentWhereInput[]
|
|
79451
|
-
data?:
|
|
79634
|
+
data?: XOR<ApolloEnrichmentDataNullableCompositeFilter, ApolloEnrichmentDataObjectEqualityInput> | null
|
|
79635
|
+
}
|
|
79636
|
+
|
|
79637
|
+
export type ApolloEnrichmentCompanyDataObjectEqualityInput = {
|
|
79638
|
+
referenceId?: string | null
|
|
79639
|
+
companyName?: string | null
|
|
79640
|
+
totalMoneyRaisedAmount?: number | null
|
|
79641
|
+
totalMoneyRaisedCurrency?: string | null
|
|
79642
|
+
numberOfEmployees?: number | null
|
|
79643
|
+
yearFounded?: number | null
|
|
79644
|
+
hqLocationCountry?: string | null
|
|
79645
|
+
enriched?: boolean | null
|
|
79646
|
+
website?: string | null
|
|
79647
|
+
source?: string | null
|
|
79648
|
+
industry?: string | null
|
|
79649
|
+
description?: string | null
|
|
79650
|
+
seoDescription?: string | null
|
|
79651
|
+
logoUrl?: string | null
|
|
79652
|
+
linkedinUrl?: string | null
|
|
79653
|
+
linkedinId?: string | null
|
|
79654
|
+
}
|
|
79655
|
+
|
|
79656
|
+
export type ApolloEnrichmentCompanyDataOrderByInput = {
|
|
79657
|
+
referenceId?: SortOrder
|
|
79658
|
+
companyName?: SortOrder
|
|
79659
|
+
totalMoneyRaisedAmount?: SortOrder
|
|
79660
|
+
totalMoneyRaisedCurrency?: SortOrder
|
|
79661
|
+
numberOfEmployees?: SortOrder
|
|
79662
|
+
yearFounded?: SortOrder
|
|
79663
|
+
hqLocationCountry?: SortOrder
|
|
79664
|
+
enriched?: SortOrder
|
|
79665
|
+
website?: SortOrder
|
|
79666
|
+
source?: SortOrder
|
|
79667
|
+
industry?: SortOrder
|
|
79668
|
+
description?: SortOrder
|
|
79669
|
+
seoDescription?: SortOrder
|
|
79670
|
+
logoUrl?: SortOrder
|
|
79671
|
+
linkedinUrl?: SortOrder
|
|
79672
|
+
linkedinId?: SortOrder
|
|
79452
79673
|
}
|
|
79453
79674
|
|
|
79454
79675
|
export type NestedEnumContractPartyTypeFilter<$PrismaModel = never> = {
|
|
@@ -79800,19 +80021,41 @@ export namespace Prisma {
|
|
|
79800
80021
|
unset?: boolean
|
|
79801
80022
|
}
|
|
79802
80023
|
|
|
79803
|
-
export type
|
|
79804
|
-
|
|
79805
|
-
|
|
80024
|
+
export type ApolloEnrichmentCompanyDataCreateInput = {
|
|
80025
|
+
referenceId?: string | null
|
|
80026
|
+
companyName?: string | null
|
|
80027
|
+
totalMoneyRaisedAmount?: number | null
|
|
80028
|
+
totalMoneyRaisedCurrency?: string | null
|
|
80029
|
+
numberOfEmployees?: number | null
|
|
80030
|
+
yearFounded?: number | null
|
|
80031
|
+
hqLocationCountry?: string | null
|
|
80032
|
+
enriched?: boolean | null
|
|
80033
|
+
website?: string | null
|
|
80034
|
+
source?: string | null
|
|
80035
|
+
industry?: string | null
|
|
80036
|
+
description?: string | null
|
|
80037
|
+
seoDescription?: string | null
|
|
80038
|
+
logoUrl?: string | null
|
|
80039
|
+
linkedinUrl?: string | null
|
|
80040
|
+
linkedinId?: string | null
|
|
79806
80041
|
}
|
|
79807
80042
|
|
|
79808
|
-
export type
|
|
79809
|
-
set
|
|
79810
|
-
|
|
80043
|
+
export type StructuredEnrichmentNullableUpdateEnvelopeInput = {
|
|
80044
|
+
set?: StructuredEnrichmentCreateInput | null
|
|
80045
|
+
upsert?: StructuredEnrichmentUpsertInput
|
|
80046
|
+
unset?: boolean
|
|
79811
80047
|
}
|
|
79812
80048
|
|
|
79813
|
-
export type
|
|
79814
|
-
set
|
|
79815
|
-
|
|
80049
|
+
export type ClearbitEnrichmentNullableUpdateEnvelopeInput = {
|
|
80050
|
+
set?: ClearbitEnrichmentCreateInput | null
|
|
80051
|
+
upsert?: ClearbitEnrichmentUpsertInput
|
|
80052
|
+
unset?: boolean
|
|
80053
|
+
}
|
|
80054
|
+
|
|
80055
|
+
export type ApolloEnrichmentNullableUpdateEnvelopeInput = {
|
|
80056
|
+
set?: ApolloEnrichmentCreateInput | null
|
|
80057
|
+
upsert?: ApolloEnrichmentUpsertInput
|
|
80058
|
+
unset?: boolean
|
|
79816
80059
|
}
|
|
79817
80060
|
|
|
79818
80061
|
export type EnumContractPartyTypeFieldUpdateOperationsInput = {
|
|
@@ -80106,6 +80349,13 @@ export namespace Prisma {
|
|
|
80106
80349
|
update: BookingFrequencyUpdateInput
|
|
80107
80350
|
}
|
|
80108
80351
|
|
|
80352
|
+
export type ApolloEnrichmentDataNullableCompositeFilter = {
|
|
80353
|
+
equals?: ApolloEnrichmentDataObjectEqualityInput | null
|
|
80354
|
+
is?: ApolloEnrichmentDataWhereInput | null
|
|
80355
|
+
isNot?: ApolloEnrichmentDataWhereInput | null
|
|
80356
|
+
isSet?: boolean
|
|
80357
|
+
}
|
|
80358
|
+
|
|
80109
80359
|
export type EnumMissionRoleVisibilityStatusFilter<$PrismaModel = never> = {
|
|
80110
80360
|
equals?: $Enums.MissionRoleVisibilityStatus | EnumMissionRoleVisibilityStatusFieldRefInput<$PrismaModel>
|
|
80111
80361
|
in?: $Enums.MissionRoleVisibilityStatus[] | ListEnumMissionRoleVisibilityStatusFieldRefInput<$PrismaModel>
|
|
@@ -80166,25 +80416,19 @@ export namespace Prisma {
|
|
|
80166
80416
|
update: ClientInterviewFeedbackFollowUpUpdateInput
|
|
80167
80417
|
}
|
|
80168
80418
|
|
|
80169
|
-
export type
|
|
80170
|
-
|
|
80171
|
-
|
|
80172
|
-
city?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80173
|
-
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80174
|
-
industries?: StructuredEnrichmentUpdateindustriesInput | string[]
|
|
80175
|
-
companyStage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80176
|
-
logoUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80177
|
-
employeeRange?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80178
|
-
fundingRange?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80179
|
-
revenueRange?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80419
|
+
export type StructuredEnrichmentUpsertInput = {
|
|
80420
|
+
set: StructuredEnrichmentCreateInput | null
|
|
80421
|
+
update: StructuredEnrichmentUpdateInput
|
|
80180
80422
|
}
|
|
80181
80423
|
|
|
80182
|
-
export type
|
|
80183
|
-
|
|
80424
|
+
export type ClearbitEnrichmentUpsertInput = {
|
|
80425
|
+
set: ClearbitEnrichmentCreateInput | null
|
|
80426
|
+
update: ClearbitEnrichmentUpdateInput
|
|
80184
80427
|
}
|
|
80185
80428
|
|
|
80186
|
-
export type
|
|
80187
|
-
|
|
80429
|
+
export type ApolloEnrichmentUpsertInput = {
|
|
80430
|
+
set: ApolloEnrichmentCreateInput | null
|
|
80431
|
+
update: ApolloEnrichmentUpdateInput
|
|
80188
80432
|
}
|
|
80189
80433
|
|
|
80190
80434
|
export type PandadocRecipientUpdateManyInput = {
|
|
@@ -80349,6 +80593,13 @@ export namespace Prisma {
|
|
|
80349
80593
|
perWeek?: IntFieldUpdateOperationsInput | number
|
|
80350
80594
|
}
|
|
80351
80595
|
|
|
80596
|
+
export type ApolloEnrichmentDataWhereInput = {
|
|
80597
|
+
AND?: ApolloEnrichmentDataWhereInput | ApolloEnrichmentDataWhereInput[]
|
|
80598
|
+
OR?: ApolloEnrichmentDataWhereInput[]
|
|
80599
|
+
NOT?: ApolloEnrichmentDataWhereInput | ApolloEnrichmentDataWhereInput[]
|
|
80600
|
+
company?: XOR<ApolloEnrichmentCompanyDataNullableCompositeFilter, ApolloEnrichmentCompanyDataObjectEqualityInput> | null
|
|
80601
|
+
}
|
|
80602
|
+
|
|
80352
80603
|
export type NestedEnumMissionRoleVisibilityStatusFilter<$PrismaModel = never> = {
|
|
80353
80604
|
equals?: $Enums.MissionRoleVisibilityStatus | EnumMissionRoleVisibilityStatusFieldRefInput<$PrismaModel>
|
|
80354
80605
|
in?: $Enums.MissionRoleVisibilityStatus[] | ListEnumMissionRoleVisibilityStatusFieldRefInput<$PrismaModel>
|
|
@@ -80425,9 +80676,25 @@ export namespace Prisma {
|
|
|
80425
80676
|
roleTitle?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80426
80677
|
}
|
|
80427
80678
|
|
|
80428
|
-
export type
|
|
80429
|
-
|
|
80430
|
-
|
|
80679
|
+
export type StructuredEnrichmentUpdateInput = {
|
|
80680
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80681
|
+
countryCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80682
|
+
city?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80683
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80684
|
+
industries?: StructuredEnrichmentUpdateindustriesInput | string[]
|
|
80685
|
+
companyStage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80686
|
+
logoUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80687
|
+
employeeRange?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80688
|
+
fundingRange?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80689
|
+
revenueRange?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80690
|
+
}
|
|
80691
|
+
|
|
80692
|
+
export type ClearbitEnrichmentUpdateInput = {
|
|
80693
|
+
data?: InputJsonValue | InputJsonValue | null
|
|
80694
|
+
}
|
|
80695
|
+
|
|
80696
|
+
export type ApolloEnrichmentUpdateInput = {
|
|
80697
|
+
data?: XOR<ApolloEnrichmentDataNullableUpdateEnvelopeInput, ApolloEnrichmentDataCreateInput> | null
|
|
80431
80698
|
}
|
|
80432
80699
|
|
|
80433
80700
|
export type PandadocRecipientUpdateInput = {
|
|
@@ -80557,6 +80824,24 @@ export namespace Prisma {
|
|
|
80557
80824
|
weeklyHoursAvailable?: NullableIntFieldUpdateOperationsInput | number | null
|
|
80558
80825
|
}
|
|
80559
80826
|
|
|
80827
|
+
export type ApolloEnrichmentCompanyDataNullableCompositeFilter = {
|
|
80828
|
+
equals?: ApolloEnrichmentCompanyDataObjectEqualityInput | null
|
|
80829
|
+
is?: ApolloEnrichmentCompanyDataWhereInput | null
|
|
80830
|
+
isNot?: ApolloEnrichmentCompanyDataWhereInput | null
|
|
80831
|
+
isSet?: boolean
|
|
80832
|
+
}
|
|
80833
|
+
|
|
80834
|
+
export type StructuredEnrichmentUpdateindustriesInput = {
|
|
80835
|
+
set?: string[]
|
|
80836
|
+
push?: string | string[]
|
|
80837
|
+
}
|
|
80838
|
+
|
|
80839
|
+
export type ApolloEnrichmentDataNullableUpdateEnvelopeInput = {
|
|
80840
|
+
set?: ApolloEnrichmentDataCreateInput | null
|
|
80841
|
+
upsert?: ApolloEnrichmentDataUpsertInput
|
|
80842
|
+
unset?: boolean
|
|
80843
|
+
}
|
|
80844
|
+
|
|
80560
80845
|
export type MemberCustomDataUpdateskillsInput = {
|
|
80561
80846
|
set?: string[]
|
|
80562
80847
|
push?: string | string[]
|
|
@@ -80594,6 +80879,33 @@ export namespace Prisma {
|
|
|
80594
80879
|
deleteMany?: UserTalentIndustryExperienceViewDeleteManyInput
|
|
80595
80880
|
}
|
|
80596
80881
|
|
|
80882
|
+
export type ApolloEnrichmentCompanyDataWhereInput = {
|
|
80883
|
+
AND?: ApolloEnrichmentCompanyDataWhereInput | ApolloEnrichmentCompanyDataWhereInput[]
|
|
80884
|
+
OR?: ApolloEnrichmentCompanyDataWhereInput[]
|
|
80885
|
+
NOT?: ApolloEnrichmentCompanyDataWhereInput | ApolloEnrichmentCompanyDataWhereInput[]
|
|
80886
|
+
referenceId?: StringNullableFilter<"ApolloEnrichmentCompanyData"> | string | null
|
|
80887
|
+
companyName?: StringNullableFilter<"ApolloEnrichmentCompanyData"> | string | null
|
|
80888
|
+
totalMoneyRaisedAmount?: IntNullableFilter<"ApolloEnrichmentCompanyData"> | number | null
|
|
80889
|
+
totalMoneyRaisedCurrency?: StringNullableFilter<"ApolloEnrichmentCompanyData"> | string | null
|
|
80890
|
+
numberOfEmployees?: IntNullableFilter<"ApolloEnrichmentCompanyData"> | number | null
|
|
80891
|
+
yearFounded?: IntNullableFilter<"ApolloEnrichmentCompanyData"> | number | null
|
|
80892
|
+
hqLocationCountry?: StringNullableFilter<"ApolloEnrichmentCompanyData"> | string | null
|
|
80893
|
+
enriched?: BoolNullableFilter<"ApolloEnrichmentCompanyData"> | boolean | null
|
|
80894
|
+
website?: StringNullableFilter<"ApolloEnrichmentCompanyData"> | string | null
|
|
80895
|
+
source?: StringNullableFilter<"ApolloEnrichmentCompanyData"> | string | null
|
|
80896
|
+
industry?: StringNullableFilter<"ApolloEnrichmentCompanyData"> | string | null
|
|
80897
|
+
description?: StringNullableFilter<"ApolloEnrichmentCompanyData"> | string | null
|
|
80898
|
+
seoDescription?: StringNullableFilter<"ApolloEnrichmentCompanyData"> | string | null
|
|
80899
|
+
logoUrl?: StringNullableFilter<"ApolloEnrichmentCompanyData"> | string | null
|
|
80900
|
+
linkedinUrl?: StringNullableFilter<"ApolloEnrichmentCompanyData"> | string | null
|
|
80901
|
+
linkedinId?: StringNullableFilter<"ApolloEnrichmentCompanyData"> | string | null
|
|
80902
|
+
}
|
|
80903
|
+
|
|
80904
|
+
export type ApolloEnrichmentDataUpsertInput = {
|
|
80905
|
+
set: ApolloEnrichmentDataCreateInput | null
|
|
80906
|
+
update: ApolloEnrichmentDataUpdateInput
|
|
80907
|
+
}
|
|
80908
|
+
|
|
80597
80909
|
export type ProposalCandidateSectionDataUpdateInput = {
|
|
80598
80910
|
text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80599
80911
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -80623,6 +80935,10 @@ export namespace Prisma {
|
|
|
80623
80935
|
where: UserTalentIndustryExperienceViewWhereInput
|
|
80624
80936
|
}
|
|
80625
80937
|
|
|
80938
|
+
export type ApolloEnrichmentDataUpdateInput = {
|
|
80939
|
+
company?: XOR<ApolloEnrichmentCompanyDataNullableUpdateEnvelopeInput, ApolloEnrichmentCompanyDataCreateInput> | null
|
|
80940
|
+
}
|
|
80941
|
+
|
|
80626
80942
|
export type UserTalentSkillAssignmentUpdateInput = {
|
|
80627
80943
|
talentSkillId?: StringFieldUpdateOperationsInput | string
|
|
80628
80944
|
rating?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -80635,11 +80951,41 @@ export namespace Prisma {
|
|
|
80635
80951
|
talentIndustryName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80636
80952
|
}
|
|
80637
80953
|
|
|
80954
|
+
export type ApolloEnrichmentCompanyDataNullableUpdateEnvelopeInput = {
|
|
80955
|
+
set?: ApolloEnrichmentCompanyDataCreateInput | null
|
|
80956
|
+
upsert?: ApolloEnrichmentCompanyDataUpsertInput
|
|
80957
|
+
unset?: boolean
|
|
80958
|
+
}
|
|
80959
|
+
|
|
80638
80960
|
export type UserTalentIndustryExperienceViewUpdatejobTitlesInput = {
|
|
80639
80961
|
set?: string[]
|
|
80640
80962
|
push?: string | string[]
|
|
80641
80963
|
}
|
|
80642
80964
|
|
|
80965
|
+
export type ApolloEnrichmentCompanyDataUpsertInput = {
|
|
80966
|
+
set: ApolloEnrichmentCompanyDataCreateInput | null
|
|
80967
|
+
update: ApolloEnrichmentCompanyDataUpdateInput
|
|
80968
|
+
}
|
|
80969
|
+
|
|
80970
|
+
export type ApolloEnrichmentCompanyDataUpdateInput = {
|
|
80971
|
+
referenceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80972
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80973
|
+
totalMoneyRaisedAmount?: NullableIntFieldUpdateOperationsInput | number | null
|
|
80974
|
+
totalMoneyRaisedCurrency?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80975
|
+
numberOfEmployees?: NullableIntFieldUpdateOperationsInput | number | null
|
|
80976
|
+
yearFounded?: NullableIntFieldUpdateOperationsInput | number | null
|
|
80977
|
+
hqLocationCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80978
|
+
enriched?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
80979
|
+
website?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80980
|
+
source?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80981
|
+
industry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80982
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80983
|
+
seoDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80984
|
+
logoUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80985
|
+
linkedinUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80986
|
+
linkedinId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80987
|
+
}
|
|
80988
|
+
|
|
80643
80989
|
|
|
80644
80990
|
|
|
80645
80991
|
/**
|
|
@@ -80777,6 +81123,14 @@ export namespace Prisma {
|
|
|
80777
81123
|
* @deprecated Use ClearbitEnrichmentDefaultArgs instead
|
|
80778
81124
|
*/
|
|
80779
81125
|
export type ClearbitEnrichmentArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = ClearbitEnrichmentDefaultArgs<ExtArgs>
|
|
81126
|
+
/**
|
|
81127
|
+
* @deprecated Use ApolloEnrichmentCompanyDataDefaultArgs instead
|
|
81128
|
+
*/
|
|
81129
|
+
export type ApolloEnrichmentCompanyDataArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = ApolloEnrichmentCompanyDataDefaultArgs<ExtArgs>
|
|
81130
|
+
/**
|
|
81131
|
+
* @deprecated Use ApolloEnrichmentDataDefaultArgs instead
|
|
81132
|
+
*/
|
|
81133
|
+
export type ApolloEnrichmentDataArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = ApolloEnrichmentDataDefaultArgs<ExtArgs>
|
|
80780
81134
|
/**
|
|
80781
81135
|
* @deprecated Use ApolloEnrichmentDefaultArgs instead
|
|
80782
81136
|
*/
|