@a_team/prisma 3.2.5-macos → 3.2.6-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 +7 -5
- package/dist/client/index-browser.js +3 -1
- package/dist/client/index.d.ts +47 -45
- package/dist/client/index.js +9 -7
- package/dist/client/{libquery_engine-darwin-arm64.dylib.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 +4 -2
- package/dist/client/wasm.js +3 -1
- package/package.json +3 -5
|
@@ -308,7 +308,9 @@ exports.ContractStatus = exports.$Enums.ContractStatus = {
|
|
|
308
308
|
exports.ContractType = exports.$Enums.ContractType = {
|
|
309
309
|
TermsOfService: 'TermsOfService',
|
|
310
310
|
MissionAgreement: 'MissionAgreement',
|
|
311
|
-
ClientContract: 'ClientContract'
|
|
311
|
+
ClientContract: 'ClientContract',
|
|
312
|
+
ServiceOrder: 'ServiceOrder',
|
|
313
|
+
ScopeOfWork: 'ScopeOfWork'
|
|
312
314
|
};
|
|
313
315
|
|
|
314
316
|
exports.ContractSource = exports.$Enums.ContractSource = {
|
package/dist/client/index.d.ts
CHANGED
|
@@ -44,10 +44,10 @@ export type StructuredEnrichment = $Result.DefaultSelection<Prisma.$StructuredEn
|
|
|
44
44
|
*/
|
|
45
45
|
export type ClearbitEnrichment = $Result.DefaultSelection<Prisma.$ClearbitEnrichmentPayload>
|
|
46
46
|
/**
|
|
47
|
-
* Model
|
|
47
|
+
* Model ApolloEnrichment
|
|
48
48
|
*
|
|
49
49
|
*/
|
|
50
|
-
export type
|
|
50
|
+
export type ApolloEnrichment = $Result.DefaultSelection<Prisma.$ApolloEnrichmentPayload>
|
|
51
51
|
/**
|
|
52
52
|
* Model CompanyEnrichment
|
|
53
53
|
*
|
|
@@ -244,7 +244,9 @@ export type ContractStatus = (typeof ContractStatus)[keyof typeof ContractStatus
|
|
|
244
244
|
export const ContractType: {
|
|
245
245
|
TermsOfService: 'TermsOfService',
|
|
246
246
|
MissionAgreement: 'MissionAgreement',
|
|
247
|
-
ClientContract: 'ClientContract'
|
|
247
|
+
ClientContract: 'ClientContract',
|
|
248
|
+
ServiceOrder: 'ServiceOrder',
|
|
249
|
+
ScopeOfWork: 'ScopeOfWork'
|
|
248
250
|
};
|
|
249
251
|
|
|
250
252
|
export type ContractType = (typeof ContractType)[keyof typeof ContractType]
|
|
@@ -2732,25 +2734,25 @@ export namespace Prisma {
|
|
|
2732
2734
|
|
|
2733
2735
|
|
|
2734
2736
|
/**
|
|
2735
|
-
* Model
|
|
2737
|
+
* Model ApolloEnrichment
|
|
2736
2738
|
*/
|
|
2737
2739
|
|
|
2738
2740
|
|
|
2739
2741
|
|
|
2740
2742
|
|
|
2741
2743
|
|
|
2742
|
-
export type
|
|
2744
|
+
export type ApolloEnrichmentSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
2743
2745
|
data?: boolean
|
|
2744
|
-
}, ExtArgs["result"]["
|
|
2746
|
+
}, ExtArgs["result"]["apolloEnrichment"]>
|
|
2745
2747
|
|
|
2746
2748
|
|
|
2747
|
-
export type
|
|
2749
|
+
export type ApolloEnrichmentSelectScalar = {
|
|
2748
2750
|
data?: boolean
|
|
2749
2751
|
}
|
|
2750
2752
|
|
|
2751
2753
|
|
|
2752
|
-
export type $
|
|
2753
|
-
name: "
|
|
2754
|
+
export type $ApolloEnrichmentPayload = {
|
|
2755
|
+
name: "ApolloEnrichment"
|
|
2754
2756
|
objects: {}
|
|
2755
2757
|
scalars: {
|
|
2756
2758
|
data: Prisma.JsonValue | null
|
|
@@ -2758,29 +2760,29 @@ export namespace Prisma {
|
|
|
2758
2760
|
composites: {}
|
|
2759
2761
|
}
|
|
2760
2762
|
|
|
2761
|
-
type
|
|
2763
|
+
type ApolloEnrichmentGetPayload<S extends boolean | null | undefined | ApolloEnrichmentDefaultArgs> = $Result.GetResult<Prisma.$ApolloEnrichmentPayload, S>
|
|
2762
2764
|
|
|
2763
2765
|
|
|
2764
2766
|
|
|
2765
2767
|
|
|
2766
2768
|
|
|
2767
2769
|
/**
|
|
2768
|
-
* Fields of the
|
|
2770
|
+
* Fields of the ApolloEnrichment model
|
|
2769
2771
|
*/
|
|
2770
|
-
interface
|
|
2771
|
-
readonly data: FieldRef<"
|
|
2772
|
+
interface ApolloEnrichmentFieldRefs {
|
|
2773
|
+
readonly data: FieldRef<"ApolloEnrichment", 'Json'>
|
|
2772
2774
|
}
|
|
2773
2775
|
|
|
2774
2776
|
|
|
2775
2777
|
// Custom InputTypes
|
|
2776
2778
|
/**
|
|
2777
|
-
*
|
|
2779
|
+
* ApolloEnrichment without action
|
|
2778
2780
|
*/
|
|
2779
|
-
export type
|
|
2781
|
+
export type ApolloEnrichmentDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
2780
2782
|
/**
|
|
2781
|
-
* Select specific fields to fetch from the
|
|
2783
|
+
* Select specific fields to fetch from the ApolloEnrichment
|
|
2782
2784
|
*/
|
|
2783
|
-
select?:
|
|
2785
|
+
select?: ApolloEnrichmentSelect<ExtArgs> | null
|
|
2784
2786
|
}
|
|
2785
2787
|
|
|
2786
2788
|
|
|
@@ -2795,7 +2797,7 @@ export namespace Prisma {
|
|
|
2795
2797
|
export type CompanyEnrichmentSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
2796
2798
|
structured?: boolean | StructuredEnrichmentDefaultArgs<ExtArgs>
|
|
2797
2799
|
clearbit?: boolean | ClearbitEnrichmentDefaultArgs<ExtArgs>
|
|
2798
|
-
apollo?: boolean |
|
|
2800
|
+
apollo?: boolean | ApolloEnrichmentDefaultArgs<ExtArgs>
|
|
2799
2801
|
}, ExtArgs["result"]["companyEnrichment"]>
|
|
2800
2802
|
|
|
2801
2803
|
|
|
@@ -2810,7 +2812,7 @@ export namespace Prisma {
|
|
|
2810
2812
|
composites: {
|
|
2811
2813
|
structured: Prisma.$StructuredEnrichmentPayload | null
|
|
2812
2814
|
clearbit: Prisma.$ClearbitEnrichmentPayload | null
|
|
2813
|
-
apollo: Prisma.$
|
|
2815
|
+
apollo: Prisma.$ApolloEnrichmentPayload | null
|
|
2814
2816
|
}
|
|
2815
2817
|
}
|
|
2816
2818
|
|
|
@@ -20269,7 +20271,7 @@ export namespace Prisma {
|
|
|
20269
20271
|
export type CompanyEnrichmentObjectEqualityInput = {
|
|
20270
20272
|
structured?: StructuredEnrichmentObjectEqualityInput | null
|
|
20271
20273
|
clearbit?: ClearbitEnrichmentObjectEqualityInput | null
|
|
20272
|
-
apollo?:
|
|
20274
|
+
apollo?: ApolloEnrichmentObjectEqualityInput | null
|
|
20273
20275
|
}
|
|
20274
20276
|
|
|
20275
20277
|
export type BoolNullableFilter<$PrismaModel = never> = {
|
|
@@ -20281,7 +20283,7 @@ export namespace Prisma {
|
|
|
20281
20283
|
export type CompanyEnrichmentOrderByInput = {
|
|
20282
20284
|
structured?: StructuredEnrichmentOrderByInput
|
|
20283
20285
|
clearbit?: ClearbitEnrichmentOrderByInput
|
|
20284
|
-
apollo?:
|
|
20286
|
+
apollo?: ApolloEnrichmentOrderByInput
|
|
20285
20287
|
}
|
|
20286
20288
|
|
|
20287
20289
|
export type CompanyCountOrderByAggregateInput = {
|
|
@@ -21714,7 +21716,7 @@ export namespace Prisma {
|
|
|
21714
21716
|
export type CompanyEnrichmentCreateInput = {
|
|
21715
21717
|
structured?: StructuredEnrichmentCreateInput | null
|
|
21716
21718
|
clearbit?: ClearbitEnrichmentCreateInput | null
|
|
21717
|
-
apollo?:
|
|
21719
|
+
apollo?: ApolloEnrichmentCreateInput | null
|
|
21718
21720
|
}
|
|
21719
21721
|
|
|
21720
21722
|
export type AccountCreateNestedManyWithoutCompanyInput = {
|
|
@@ -22822,7 +22824,7 @@ export namespace Prisma {
|
|
|
22822
22824
|
NOT?: CompanyEnrichmentWhereInput | CompanyEnrichmentWhereInput[]
|
|
22823
22825
|
structured?: XOR<StructuredEnrichmentNullableCompositeFilter, StructuredEnrichmentObjectEqualityInput> | null
|
|
22824
22826
|
clearbit?: XOR<ClearbitEnrichmentNullableCompositeFilter, ClearbitEnrichmentObjectEqualityInput> | null
|
|
22825
|
-
apollo?: XOR<
|
|
22827
|
+
apollo?: XOR<ApolloEnrichmentNullableCompositeFilter, ApolloEnrichmentObjectEqualityInput> | null
|
|
22826
22828
|
}
|
|
22827
22829
|
|
|
22828
22830
|
export type StructuredEnrichmentObjectEqualityInput = {
|
|
@@ -22842,7 +22844,7 @@ export namespace Prisma {
|
|
|
22842
22844
|
data?: InputJsonValue | null
|
|
22843
22845
|
}
|
|
22844
22846
|
|
|
22845
|
-
export type
|
|
22847
|
+
export type ApolloEnrichmentObjectEqualityInput = {
|
|
22846
22848
|
data?: InputJsonValue | null
|
|
22847
22849
|
}
|
|
22848
22850
|
|
|
@@ -22869,7 +22871,7 @@ export namespace Prisma {
|
|
|
22869
22871
|
data?: SortOrder
|
|
22870
22872
|
}
|
|
22871
22873
|
|
|
22872
|
-
export type
|
|
22874
|
+
export type ApolloEnrichmentOrderByInput = {
|
|
22873
22875
|
data?: SortOrder
|
|
22874
22876
|
}
|
|
22875
22877
|
|
|
@@ -24031,7 +24033,7 @@ export namespace Prisma {
|
|
|
24031
24033
|
data?: InputJsonValue | null
|
|
24032
24034
|
}
|
|
24033
24035
|
|
|
24034
|
-
export type
|
|
24036
|
+
export type ApolloEnrichmentCreateInput = {
|
|
24035
24037
|
data?: InputJsonValue | null
|
|
24036
24038
|
}
|
|
24037
24039
|
|
|
@@ -24077,7 +24079,7 @@ export namespace Prisma {
|
|
|
24077
24079
|
export type CompanyEnrichmentUpdateInput = {
|
|
24078
24080
|
structured?: XOR<StructuredEnrichmentNullableUpdateEnvelopeInput, StructuredEnrichmentCreateInput> | null
|
|
24079
24081
|
clearbit?: XOR<ClearbitEnrichmentNullableUpdateEnvelopeInput, ClearbitEnrichmentCreateInput> | null
|
|
24080
|
-
apollo?: XOR<
|
|
24082
|
+
apollo?: XOR<ApolloEnrichmentNullableUpdateEnvelopeInput, ApolloEnrichmentCreateInput> | null
|
|
24081
24083
|
}
|
|
24082
24084
|
|
|
24083
24085
|
export type AccountUpsertWithWhereUniqueWithoutCompanyInput = {
|
|
@@ -26144,10 +26146,10 @@ export namespace Prisma {
|
|
|
26144
26146
|
isSet?: boolean
|
|
26145
26147
|
}
|
|
26146
26148
|
|
|
26147
|
-
export type
|
|
26148
|
-
equals?:
|
|
26149
|
-
is?:
|
|
26150
|
-
isNot?:
|
|
26149
|
+
export type ApolloEnrichmentNullableCompositeFilter = {
|
|
26150
|
+
equals?: ApolloEnrichmentObjectEqualityInput | null
|
|
26151
|
+
is?: ApolloEnrichmentWhereInput | null
|
|
26152
|
+
isNot?: ApolloEnrichmentWhereInput | null
|
|
26151
26153
|
isSet?: boolean
|
|
26152
26154
|
}
|
|
26153
26155
|
|
|
@@ -26825,9 +26827,9 @@ export namespace Prisma {
|
|
|
26825
26827
|
unset?: boolean
|
|
26826
26828
|
}
|
|
26827
26829
|
|
|
26828
|
-
export type
|
|
26829
|
-
set?:
|
|
26830
|
-
upsert?:
|
|
26830
|
+
export type ApolloEnrichmentNullableUpdateEnvelopeInput = {
|
|
26831
|
+
set?: ApolloEnrichmentCreateInput | null
|
|
26832
|
+
upsert?: ApolloEnrichmentUpsertInput
|
|
26831
26833
|
unset?: boolean
|
|
26832
26834
|
}
|
|
26833
26835
|
|
|
@@ -27762,11 +27764,11 @@ export namespace Prisma {
|
|
|
27762
27764
|
data?: JsonNullableFilter<"ClearbitEnrichment">
|
|
27763
27765
|
}
|
|
27764
27766
|
|
|
27765
|
-
export type
|
|
27766
|
-
AND?:
|
|
27767
|
-
OR?:
|
|
27768
|
-
NOT?:
|
|
27769
|
-
data?: JsonNullableFilter<"
|
|
27767
|
+
export type ApolloEnrichmentWhereInput = {
|
|
27768
|
+
AND?: ApolloEnrichmentWhereInput | ApolloEnrichmentWhereInput[]
|
|
27769
|
+
OR?: ApolloEnrichmentWhereInput[]
|
|
27770
|
+
NOT?: ApolloEnrichmentWhereInput | ApolloEnrichmentWhereInput[]
|
|
27771
|
+
data?: JsonNullableFilter<"ApolloEnrichment">
|
|
27770
27772
|
}
|
|
27771
27773
|
|
|
27772
27774
|
export type NestedEnumContractPartyTypeFilter<$PrismaModel = never> = {
|
|
@@ -27894,9 +27896,9 @@ export namespace Prisma {
|
|
|
27894
27896
|
update: ClearbitEnrichmentUpdateInput
|
|
27895
27897
|
}
|
|
27896
27898
|
|
|
27897
|
-
export type
|
|
27898
|
-
set:
|
|
27899
|
-
update:
|
|
27899
|
+
export type ApolloEnrichmentUpsertInput = {
|
|
27900
|
+
set: ApolloEnrichmentCreateInput | null
|
|
27901
|
+
update: ApolloEnrichmentUpdateInput
|
|
27900
27902
|
}
|
|
27901
27903
|
|
|
27902
27904
|
export type EnumContractPartyTypeFieldUpdateOperationsInput = {
|
|
@@ -28041,7 +28043,7 @@ export namespace Prisma {
|
|
|
28041
28043
|
data?: InputJsonValue | InputJsonValue | null
|
|
28042
28044
|
}
|
|
28043
28045
|
|
|
28044
|
-
export type
|
|
28046
|
+
export type ApolloEnrichmentUpdateInput = {
|
|
28045
28047
|
data?: InputJsonValue | InputJsonValue | null
|
|
28046
28048
|
}
|
|
28047
28049
|
|
|
@@ -28255,9 +28257,9 @@ export namespace Prisma {
|
|
|
28255
28257
|
*/
|
|
28256
28258
|
export type ClearbitEnrichmentArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = ClearbitEnrichmentDefaultArgs<ExtArgs>
|
|
28257
28259
|
/**
|
|
28258
|
-
* @deprecated Use
|
|
28260
|
+
* @deprecated Use ApolloEnrichmentDefaultArgs instead
|
|
28259
28261
|
*/
|
|
28260
|
-
export type
|
|
28262
|
+
export type ApolloEnrichmentArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = ApolloEnrichmentDefaultArgs<ExtArgs>
|
|
28261
28263
|
/**
|
|
28262
28264
|
* @deprecated Use CompanyEnrichmentDefaultArgs instead
|
|
28263
28265
|
*/
|