@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
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -75,14 +75,14 @@ type ClearbitEnrichment {
|
|
|
75
75
|
data Json?
|
|
76
76
|
}
|
|
77
77
|
|
|
78
|
-
type
|
|
78
|
+
type ApolloEnrichment {
|
|
79
79
|
data Json?
|
|
80
80
|
}
|
|
81
81
|
|
|
82
82
|
type CompanyEnrichment {
|
|
83
83
|
structured StructuredEnrichment?
|
|
84
84
|
clearbit ClearbitEnrichment?
|
|
85
|
-
apollo
|
|
85
|
+
apollo ApolloEnrichment?
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
model Company {
|
|
@@ -133,6 +133,8 @@ enum ContractType {
|
|
|
133
133
|
TermsOfService
|
|
134
134
|
MissionAgreement
|
|
135
135
|
ClientContract
|
|
136
|
+
ServiceOrder
|
|
137
|
+
ScopeOfWork
|
|
136
138
|
}
|
|
137
139
|
|
|
138
140
|
type ContractParty {
|
package/dist/client/wasm.js
CHANGED
|
@@ -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/package.json
CHANGED