@a_team/prisma 3.2.6-win → 3.2.7-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 +8 -6
- package/dist/client/index-browser.js +4 -2
- package/dist/client/index.d.ts +94 -2
- package/dist/client/index.js +10 -8
- 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 +2 -0
- package/dist/client/wasm.js +4 -2
- package/package.json +2 -2
package/dist/client/{query_engine-windows.dll.node → libquery_engine-debian-openssl-3.0.x.so.node}
RENAMED
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -135,6 +135,7 @@ enum ContractType {
|
|
|
135
135
|
ClientContract
|
|
136
136
|
ServiceOrder
|
|
137
137
|
ScopeOfWork
|
|
138
|
+
MasterServicesAgreement
|
|
138
139
|
}
|
|
139
140
|
|
|
140
141
|
type ContractParty {
|
|
@@ -596,6 +597,7 @@ model User {
|
|
|
596
597
|
createdAt DateTime @default(now()) @db.Date
|
|
597
598
|
titles String[]
|
|
598
599
|
scrubbed String?
|
|
600
|
+
tokenVersion Int
|
|
599
601
|
clientRegistration ClientRegistration?
|
|
600
602
|
authoredMissionSpecs MissionSpec[] @relation("author")
|
|
601
603
|
modifiedMissionSpecs MissionSpec[] @relation("lastModifier")
|
package/dist/client/wasm.js
CHANGED
|
@@ -288,7 +288,8 @@ exports.Prisma.UserScalarFieldEnum = {
|
|
|
288
288
|
status: 'status',
|
|
289
289
|
createdAt: 'createdAt',
|
|
290
290
|
titles: 'titles',
|
|
291
|
-
scrubbed: 'scrubbed'
|
|
291
|
+
scrubbed: 'scrubbed',
|
|
292
|
+
tokenVersion: 'tokenVersion'
|
|
292
293
|
};
|
|
293
294
|
|
|
294
295
|
exports.Prisma.SortOrder = {
|
|
@@ -310,7 +311,8 @@ exports.ContractType = exports.$Enums.ContractType = {
|
|
|
310
311
|
MissionAgreement: 'MissionAgreement',
|
|
311
312
|
ClientContract: 'ClientContract',
|
|
312
313
|
ServiceOrder: 'ServiceOrder',
|
|
313
|
-
ScopeOfWork: 'ScopeOfWork'
|
|
314
|
+
ScopeOfWork: 'ScopeOfWork',
|
|
315
|
+
MasterServicesAgreement: 'MasterServicesAgreement'
|
|
314
316
|
};
|
|
315
317
|
|
|
316
318
|
exports.ContractSource = exports.$Enums.ContractSource = {
|