@a_team/prisma 3.2.2-win → 3.2.3-linux-debian
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 +220 -0
- package/dist/client/index.js +6 -6
- package/dist/client/{query_engine-windows.dll.node → libquery_engine-debian-openssl-3.0.x.so.node} +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +10 -0
- package/package.json +2 -2
package/dist/client/index.d.ts
CHANGED
|
@@ -38,6 +38,16 @@ export type TimezoneObject = $Result.DefaultSelection<Prisma.$TimezoneObjectPayl
|
|
|
38
38
|
*
|
|
39
39
|
*/
|
|
40
40
|
export type StructuredEnrichment = $Result.DefaultSelection<Prisma.$StructuredEnrichmentPayload>
|
|
41
|
+
/**
|
|
42
|
+
* Model ClearbitEnrichment
|
|
43
|
+
*
|
|
44
|
+
*/
|
|
45
|
+
export type ClearbitEnrichment = $Result.DefaultSelection<Prisma.$ClearbitEnrichmentPayload>
|
|
46
|
+
/**
|
|
47
|
+
* Model AppoloEnrichment
|
|
48
|
+
*
|
|
49
|
+
*/
|
|
50
|
+
export type AppoloEnrichment = $Result.DefaultSelection<Prisma.$AppoloEnrichmentPayload>
|
|
41
51
|
/**
|
|
42
52
|
* Model CompanyEnrichment
|
|
43
53
|
*
|
|
@@ -2554,6 +2564,112 @@ export namespace Prisma {
|
|
|
2554
2564
|
}
|
|
2555
2565
|
|
|
2556
2566
|
|
|
2567
|
+
/**
|
|
2568
|
+
* Model ClearbitEnrichment
|
|
2569
|
+
*/
|
|
2570
|
+
|
|
2571
|
+
|
|
2572
|
+
|
|
2573
|
+
|
|
2574
|
+
|
|
2575
|
+
export type ClearbitEnrichmentSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
2576
|
+
data?: boolean
|
|
2577
|
+
}, ExtArgs["result"]["clearbitEnrichment"]>
|
|
2578
|
+
|
|
2579
|
+
|
|
2580
|
+
export type ClearbitEnrichmentSelectScalar = {
|
|
2581
|
+
data?: boolean
|
|
2582
|
+
}
|
|
2583
|
+
|
|
2584
|
+
|
|
2585
|
+
export type $ClearbitEnrichmentPayload = {
|
|
2586
|
+
name: "ClearbitEnrichment"
|
|
2587
|
+
objects: {}
|
|
2588
|
+
scalars: {
|
|
2589
|
+
data: Prisma.JsonValue | null
|
|
2590
|
+
}
|
|
2591
|
+
composites: {}
|
|
2592
|
+
}
|
|
2593
|
+
|
|
2594
|
+
type ClearbitEnrichmentGetPayload<S extends boolean | null | undefined | ClearbitEnrichmentDefaultArgs> = $Result.GetResult<Prisma.$ClearbitEnrichmentPayload, S>
|
|
2595
|
+
|
|
2596
|
+
|
|
2597
|
+
|
|
2598
|
+
|
|
2599
|
+
|
|
2600
|
+
/**
|
|
2601
|
+
* Fields of the ClearbitEnrichment model
|
|
2602
|
+
*/
|
|
2603
|
+
interface ClearbitEnrichmentFieldRefs {
|
|
2604
|
+
readonly data: FieldRef<"ClearbitEnrichment", 'Json'>
|
|
2605
|
+
}
|
|
2606
|
+
|
|
2607
|
+
|
|
2608
|
+
// Custom InputTypes
|
|
2609
|
+
/**
|
|
2610
|
+
* ClearbitEnrichment without action
|
|
2611
|
+
*/
|
|
2612
|
+
export type ClearbitEnrichmentDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
2613
|
+
/**
|
|
2614
|
+
* Select specific fields to fetch from the ClearbitEnrichment
|
|
2615
|
+
*/
|
|
2616
|
+
select?: ClearbitEnrichmentSelect<ExtArgs> | null
|
|
2617
|
+
}
|
|
2618
|
+
|
|
2619
|
+
|
|
2620
|
+
/**
|
|
2621
|
+
* Model AppoloEnrichment
|
|
2622
|
+
*/
|
|
2623
|
+
|
|
2624
|
+
|
|
2625
|
+
|
|
2626
|
+
|
|
2627
|
+
|
|
2628
|
+
export type AppoloEnrichmentSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
2629
|
+
data?: boolean
|
|
2630
|
+
}, ExtArgs["result"]["appoloEnrichment"]>
|
|
2631
|
+
|
|
2632
|
+
|
|
2633
|
+
export type AppoloEnrichmentSelectScalar = {
|
|
2634
|
+
data?: boolean
|
|
2635
|
+
}
|
|
2636
|
+
|
|
2637
|
+
|
|
2638
|
+
export type $AppoloEnrichmentPayload = {
|
|
2639
|
+
name: "AppoloEnrichment"
|
|
2640
|
+
objects: {}
|
|
2641
|
+
scalars: {
|
|
2642
|
+
data: Prisma.JsonValue | null
|
|
2643
|
+
}
|
|
2644
|
+
composites: {}
|
|
2645
|
+
}
|
|
2646
|
+
|
|
2647
|
+
type AppoloEnrichmentGetPayload<S extends boolean | null | undefined | AppoloEnrichmentDefaultArgs> = $Result.GetResult<Prisma.$AppoloEnrichmentPayload, S>
|
|
2648
|
+
|
|
2649
|
+
|
|
2650
|
+
|
|
2651
|
+
|
|
2652
|
+
|
|
2653
|
+
/**
|
|
2654
|
+
* Fields of the AppoloEnrichment model
|
|
2655
|
+
*/
|
|
2656
|
+
interface AppoloEnrichmentFieldRefs {
|
|
2657
|
+
readonly data: FieldRef<"AppoloEnrichment", 'Json'>
|
|
2658
|
+
}
|
|
2659
|
+
|
|
2660
|
+
|
|
2661
|
+
// Custom InputTypes
|
|
2662
|
+
/**
|
|
2663
|
+
* AppoloEnrichment without action
|
|
2664
|
+
*/
|
|
2665
|
+
export type AppoloEnrichmentDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
2666
|
+
/**
|
|
2667
|
+
* Select specific fields to fetch from the AppoloEnrichment
|
|
2668
|
+
*/
|
|
2669
|
+
select?: AppoloEnrichmentSelect<ExtArgs> | null
|
|
2670
|
+
}
|
|
2671
|
+
|
|
2672
|
+
|
|
2557
2673
|
/**
|
|
2558
2674
|
* Model CompanyEnrichment
|
|
2559
2675
|
*/
|
|
@@ -2564,6 +2680,8 @@ export namespace Prisma {
|
|
|
2564
2680
|
|
|
2565
2681
|
export type CompanyEnrichmentSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
2566
2682
|
structured?: boolean | StructuredEnrichmentDefaultArgs<ExtArgs>
|
|
2683
|
+
clearbit?: boolean | ClearbitEnrichmentDefaultArgs<ExtArgs>
|
|
2684
|
+
apollo?: boolean | AppoloEnrichmentDefaultArgs<ExtArgs>
|
|
2567
2685
|
}, ExtArgs["result"]["companyEnrichment"]>
|
|
2568
2686
|
|
|
2569
2687
|
|
|
@@ -2577,6 +2695,8 @@ export namespace Prisma {
|
|
|
2577
2695
|
scalars: {}
|
|
2578
2696
|
composites: {
|
|
2579
2697
|
structured: Prisma.$StructuredEnrichmentPayload | null
|
|
2698
|
+
clearbit: Prisma.$ClearbitEnrichmentPayload | null
|
|
2699
|
+
apollo: Prisma.$AppoloEnrichmentPayload | null
|
|
2580
2700
|
}
|
|
2581
2701
|
}
|
|
2582
2702
|
|
|
@@ -18964,6 +19084,8 @@ export namespace Prisma {
|
|
|
18964
19084
|
|
|
18965
19085
|
export type CompanyEnrichmentObjectEqualityInput = {
|
|
18966
19086
|
structured?: StructuredEnrichmentObjectEqualityInput | null
|
|
19087
|
+
clearbit?: ClearbitEnrichmentObjectEqualityInput | null
|
|
19088
|
+
apollo?: AppoloEnrichmentObjectEqualityInput | null
|
|
18967
19089
|
}
|
|
18968
19090
|
|
|
18969
19091
|
export type BoolNullableFilter<$PrismaModel = never> = {
|
|
@@ -18974,6 +19096,8 @@ export namespace Prisma {
|
|
|
18974
19096
|
|
|
18975
19097
|
export type CompanyEnrichmentOrderByInput = {
|
|
18976
19098
|
structured?: StructuredEnrichmentOrderByInput
|
|
19099
|
+
clearbit?: ClearbitEnrichmentOrderByInput
|
|
19100
|
+
apollo?: AppoloEnrichmentOrderByInput
|
|
18977
19101
|
}
|
|
18978
19102
|
|
|
18979
19103
|
export type CompanyCountOrderByAggregateInput = {
|
|
@@ -20353,6 +20477,8 @@ export namespace Prisma {
|
|
|
20353
20477
|
|
|
20354
20478
|
export type CompanyEnrichmentCreateInput = {
|
|
20355
20479
|
structured?: StructuredEnrichmentCreateInput | null
|
|
20480
|
+
clearbit?: ClearbitEnrichmentCreateInput | null
|
|
20481
|
+
apollo?: AppoloEnrichmentCreateInput | null
|
|
20356
20482
|
}
|
|
20357
20483
|
|
|
20358
20484
|
export type AccountCreateNestedManyWithoutCompanyInput = {
|
|
@@ -21440,6 +21566,8 @@ export namespace Prisma {
|
|
|
21440
21566
|
OR?: CompanyEnrichmentWhereInput[]
|
|
21441
21567
|
NOT?: CompanyEnrichmentWhereInput | CompanyEnrichmentWhereInput[]
|
|
21442
21568
|
structured?: XOR<StructuredEnrichmentNullableCompositeFilter, StructuredEnrichmentObjectEqualityInput> | null
|
|
21569
|
+
clearbit?: XOR<ClearbitEnrichmentNullableCompositeFilter, ClearbitEnrichmentObjectEqualityInput> | null
|
|
21570
|
+
apollo?: XOR<AppoloEnrichmentNullableCompositeFilter, AppoloEnrichmentObjectEqualityInput> | null
|
|
21443
21571
|
}
|
|
21444
21572
|
|
|
21445
21573
|
export type StructuredEnrichmentObjectEqualityInput = {
|
|
@@ -21455,6 +21583,14 @@ export namespace Prisma {
|
|
|
21455
21583
|
revenueRange?: string | null
|
|
21456
21584
|
}
|
|
21457
21585
|
|
|
21586
|
+
export type ClearbitEnrichmentObjectEqualityInput = {
|
|
21587
|
+
data?: InputJsonValue | null
|
|
21588
|
+
}
|
|
21589
|
+
|
|
21590
|
+
export type AppoloEnrichmentObjectEqualityInput = {
|
|
21591
|
+
data?: InputJsonValue | null
|
|
21592
|
+
}
|
|
21593
|
+
|
|
21458
21594
|
export type NestedBoolNullableFilter<$PrismaModel = never> = {
|
|
21459
21595
|
equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
|
|
21460
21596
|
not?: NestedBoolNullableFilter<$PrismaModel> | boolean | null
|
|
@@ -21474,6 +21610,14 @@ export namespace Prisma {
|
|
|
21474
21610
|
revenueRange?: SortOrder
|
|
21475
21611
|
}
|
|
21476
21612
|
|
|
21613
|
+
export type ClearbitEnrichmentOrderByInput = {
|
|
21614
|
+
data?: SortOrder
|
|
21615
|
+
}
|
|
21616
|
+
|
|
21617
|
+
export type AppoloEnrichmentOrderByInput = {
|
|
21618
|
+
data?: SortOrder
|
|
21619
|
+
}
|
|
21620
|
+
|
|
21477
21621
|
export type NestedBoolNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
21478
21622
|
equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
|
|
21479
21623
|
not?: NestedBoolNullableWithAggregatesFilter<$PrismaModel> | boolean | null
|
|
@@ -22604,6 +22748,14 @@ export namespace Prisma {
|
|
|
22604
22748
|
revenueRange?: string | null
|
|
22605
22749
|
}
|
|
22606
22750
|
|
|
22751
|
+
export type ClearbitEnrichmentCreateInput = {
|
|
22752
|
+
data?: InputJsonValue | null
|
|
22753
|
+
}
|
|
22754
|
+
|
|
22755
|
+
export type AppoloEnrichmentCreateInput = {
|
|
22756
|
+
data?: InputJsonValue | null
|
|
22757
|
+
}
|
|
22758
|
+
|
|
22607
22759
|
export type AccountCreateWithoutCompanyInput = {
|
|
22608
22760
|
id?: string
|
|
22609
22761
|
members?: XOR<AccountsMemberListCreateEnvelopeInput, AccountsMemberCreateInput> | AccountsMemberCreateInput[]
|
|
@@ -22645,6 +22797,8 @@ export namespace Prisma {
|
|
|
22645
22797
|
|
|
22646
22798
|
export type CompanyEnrichmentUpdateInput = {
|
|
22647
22799
|
structured?: XOR<StructuredEnrichmentNullableUpdateEnvelopeInput, StructuredEnrichmentCreateInput> | null
|
|
22800
|
+
clearbit?: XOR<ClearbitEnrichmentNullableUpdateEnvelopeInput, ClearbitEnrichmentCreateInput> | null
|
|
22801
|
+
apollo?: XOR<AppoloEnrichmentNullableUpdateEnvelopeInput, AppoloEnrichmentCreateInput> | null
|
|
22648
22802
|
}
|
|
22649
22803
|
|
|
22650
22804
|
export type AccountUpsertWithWhereUniqueWithoutCompanyInput = {
|
|
@@ -24695,6 +24849,20 @@ export namespace Prisma {
|
|
|
24695
24849
|
isSet?: boolean
|
|
24696
24850
|
}
|
|
24697
24851
|
|
|
24852
|
+
export type ClearbitEnrichmentNullableCompositeFilter = {
|
|
24853
|
+
equals?: ClearbitEnrichmentObjectEqualityInput | null
|
|
24854
|
+
is?: ClearbitEnrichmentWhereInput | null
|
|
24855
|
+
isNot?: ClearbitEnrichmentWhereInput | null
|
|
24856
|
+
isSet?: boolean
|
|
24857
|
+
}
|
|
24858
|
+
|
|
24859
|
+
export type AppoloEnrichmentNullableCompositeFilter = {
|
|
24860
|
+
equals?: AppoloEnrichmentObjectEqualityInput | null
|
|
24861
|
+
is?: AppoloEnrichmentWhereInput | null
|
|
24862
|
+
isNot?: AppoloEnrichmentWhereInput | null
|
|
24863
|
+
isSet?: boolean
|
|
24864
|
+
}
|
|
24865
|
+
|
|
24698
24866
|
export type EnumContractPartyTypeFilter<$PrismaModel = never> = {
|
|
24699
24867
|
equals?: $Enums.ContractPartyType | EnumContractPartyTypeFieldRefInput<$PrismaModel>
|
|
24700
24868
|
in?: $Enums.ContractPartyType[] | ListEnumContractPartyTypeFieldRefInput<$PrismaModel>
|
|
@@ -25363,6 +25531,18 @@ export namespace Prisma {
|
|
|
25363
25531
|
unset?: boolean
|
|
25364
25532
|
}
|
|
25365
25533
|
|
|
25534
|
+
export type ClearbitEnrichmentNullableUpdateEnvelopeInput = {
|
|
25535
|
+
set?: ClearbitEnrichmentCreateInput | null
|
|
25536
|
+
upsert?: ClearbitEnrichmentUpsertInput
|
|
25537
|
+
unset?: boolean
|
|
25538
|
+
}
|
|
25539
|
+
|
|
25540
|
+
export type AppoloEnrichmentNullableUpdateEnvelopeInput = {
|
|
25541
|
+
set?: AppoloEnrichmentCreateInput | null
|
|
25542
|
+
upsert?: AppoloEnrichmentUpsertInput
|
|
25543
|
+
unset?: boolean
|
|
25544
|
+
}
|
|
25545
|
+
|
|
25366
25546
|
export type AccountUpdateWithoutCompanyInput = {
|
|
25367
25547
|
members?: XOR<AccountsMemberListUpdateEnvelopeInput, AccountsMemberCreateInput> | AccountsMemberCreateInput[]
|
|
25368
25548
|
workspace?: XOR<AccountsWorkspaceNullableUpdateEnvelopeInput, AccountsWorkspaceCreateInput> | null
|
|
@@ -26283,6 +26463,20 @@ export namespace Prisma {
|
|
|
26283
26463
|
revenueRange?: StringNullableFilter<"StructuredEnrichment"> | string | null
|
|
26284
26464
|
}
|
|
26285
26465
|
|
|
26466
|
+
export type ClearbitEnrichmentWhereInput = {
|
|
26467
|
+
AND?: ClearbitEnrichmentWhereInput | ClearbitEnrichmentWhereInput[]
|
|
26468
|
+
OR?: ClearbitEnrichmentWhereInput[]
|
|
26469
|
+
NOT?: ClearbitEnrichmentWhereInput | ClearbitEnrichmentWhereInput[]
|
|
26470
|
+
data?: JsonNullableFilter<"ClearbitEnrichment">
|
|
26471
|
+
}
|
|
26472
|
+
|
|
26473
|
+
export type AppoloEnrichmentWhereInput = {
|
|
26474
|
+
AND?: AppoloEnrichmentWhereInput | AppoloEnrichmentWhereInput[]
|
|
26475
|
+
OR?: AppoloEnrichmentWhereInput[]
|
|
26476
|
+
NOT?: AppoloEnrichmentWhereInput | AppoloEnrichmentWhereInput[]
|
|
26477
|
+
data?: JsonNullableFilter<"AppoloEnrichment">
|
|
26478
|
+
}
|
|
26479
|
+
|
|
26286
26480
|
export type NestedEnumContractPartyTypeFilter<$PrismaModel = never> = {
|
|
26287
26481
|
equals?: $Enums.ContractPartyType | EnumContractPartyTypeFieldRefInput<$PrismaModel>
|
|
26288
26482
|
in?: $Enums.ContractPartyType[] | ListEnumContractPartyTypeFieldRefInput<$PrismaModel>
|
|
@@ -26403,6 +26597,16 @@ export namespace Prisma {
|
|
|
26403
26597
|
update: StructuredEnrichmentUpdateInput
|
|
26404
26598
|
}
|
|
26405
26599
|
|
|
26600
|
+
export type ClearbitEnrichmentUpsertInput = {
|
|
26601
|
+
set: ClearbitEnrichmentCreateInput | null
|
|
26602
|
+
update: ClearbitEnrichmentUpdateInput
|
|
26603
|
+
}
|
|
26604
|
+
|
|
26605
|
+
export type AppoloEnrichmentUpsertInput = {
|
|
26606
|
+
set: AppoloEnrichmentCreateInput | null
|
|
26607
|
+
update: AppoloEnrichmentUpdateInput
|
|
26608
|
+
}
|
|
26609
|
+
|
|
26406
26610
|
export type EnumContractPartyTypeFieldUpdateOperationsInput = {
|
|
26407
26611
|
set?: $Enums.ContractPartyType
|
|
26408
26612
|
}
|
|
@@ -26541,6 +26745,14 @@ export namespace Prisma {
|
|
|
26541
26745
|
revenueRange?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26542
26746
|
}
|
|
26543
26747
|
|
|
26748
|
+
export type ClearbitEnrichmentUpdateInput = {
|
|
26749
|
+
data?: InputJsonValue | InputJsonValue | null
|
|
26750
|
+
}
|
|
26751
|
+
|
|
26752
|
+
export type AppoloEnrichmentUpdateInput = {
|
|
26753
|
+
data?: InputJsonValue | InputJsonValue | null
|
|
26754
|
+
}
|
|
26755
|
+
|
|
26544
26756
|
export type MissionRoleAvailabilityUpsertInput = {
|
|
26545
26757
|
set: MissionRoleAvailabilityCreateInput | null
|
|
26546
26758
|
update: MissionRoleAvailabilityUpdateInput
|
|
@@ -26746,6 +26958,14 @@ export namespace Prisma {
|
|
|
26746
26958
|
* @deprecated Use StructuredEnrichmentDefaultArgs instead
|
|
26747
26959
|
*/
|
|
26748
26960
|
export type StructuredEnrichmentArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = StructuredEnrichmentDefaultArgs<ExtArgs>
|
|
26961
|
+
/**
|
|
26962
|
+
* @deprecated Use ClearbitEnrichmentDefaultArgs instead
|
|
26963
|
+
*/
|
|
26964
|
+
export type ClearbitEnrichmentArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = ClearbitEnrichmentDefaultArgs<ExtArgs>
|
|
26965
|
+
/**
|
|
26966
|
+
* @deprecated Use AppoloEnrichmentDefaultArgs instead
|
|
26967
|
+
*/
|
|
26968
|
+
export type AppoloEnrichmentArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = AppoloEnrichmentDefaultArgs<ExtArgs>
|
|
26749
26969
|
/**
|
|
26750
26970
|
* @deprecated Use CompanyEnrichmentDefaultArgs instead
|
|
26751
26971
|
*/
|